:root {
  --bg: #FDF6F0;
  --bg-warm: #F9EDE3;
  --bg-dark: #2C1810;
  --fg: #2C1810;
  --fg-muted: #6B5244;
  --accent: #C4956A;
  --accent-light: #E8C9AB;
  --accent-dark: #8B6842;
  --rose: #D4847C;
  --rose-light: #F2D1CD;
  --cream: #FFF8F3;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 40%, var(--rose-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 100px 24px;
  background: var(--bg-dark);
  color: var(--cream);
  position: relative;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
  color: var(--cream);
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid rgba(196, 149, 106, 0.2);
  border-radius: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 300;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 24px;
  background: var(--cream);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.features-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--accent-light);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-icon.rose { background: var(--rose-light); }
.feature-icon.gold { background: var(--accent-light); }
.feature-icon.warm { background: var(--bg-warm); }
.feature-icon.cream { background: #E8E0D8; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 48px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.tier {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid transparent;
  position: relative;
}

.tier.featured {
  border-color: var(--accent);
  background: white;
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.tier-list {
  list-style: none;
  padding: 0;
}

.tier-list li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}

.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 24px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 149, 106, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  color: var(--accent-light);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== TIER BUY BUTTONS (landing page pricing) ===== */
.tier-buy-btn {
  display: block;
  margin-top: 24px;
  padding: 13px 20px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.02em;
}
.tier-buy-btn:hover {
  background: var(--bg-dark);
  transform: translateY(-1px);
}
.tier-buy-featured {
  background: var(--accent);
  color: #fff;
}
.tier-buy-featured:hover {
  background: var(--accent-dark);
}

/* ===== CLOSING CTA ===== */
.closing-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.closing-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  padding: 32px 24px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(196, 149, 106, 0.15);
  text-align: center;
}

footer p {
  color: var(--fg-muted);
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .problem-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }
}