:root {
  --bg: #FDF6F0;
  --bg-warm: #F9EDE3;
  --fg: #2D2420;
  --fg-muted: #7A6B62;
  --accent: #C4856C;
  --accent-soft: #E8B5A2;
  --accent-deep: #A66B55;
  --cream: #FFF8F3;
  --sage: #B8C5A8;
  --sage-soft: #D4DFC9;
  --blush: #F2D1C9;
  --card-bg: rgba(255, 255, 255, 0.6);
  --radius: 16px;
  --radius-sm: 8px;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent-deep);
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 50%, var(--blush) 100%);
}

.hero-content {
  max-width: 680px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.accent-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.3;
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  filter: blur(80px);
}

.accent-circle-2 {
  background: var(--sage-soft);
  width: 300px;
  height: 300px;
  top: auto;
  bottom: -50px;
  right: auto;
  left: -80px;
  opacity: 0.25;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 24px;
  background: var(--cream);
}

.problem-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 133, 108, 0.15);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

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

.features h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 56px;
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 133, 108, 0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(166, 107, 85, 0.08);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

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

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

.pricing h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.includes-item {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 133, 108, 0.12);
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 400;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  background: var(--cream);
  text-align: center;
}

.closing-content {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 24px;
  background: var(--fg);
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--accent-soft);
}

/* ---- CTA BUTTONS ---- */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(166, 107, 85, 0.22);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  background: transparent;
  color: var(--accent-deep);
  border: 1.5px solid rgba(196, 133, 108, 0.4);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(196, 133, 108, 0.06);
}

.pricing-fine {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ---- LEAD CAPTURE ---- */
.hero {
  align-items: flex-start;
  padding-top: 60px;
}

.hero-content {
  max-width: 520px;
}

.lead-capture {
  width: 100%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(196, 133, 108, 0.2);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(166, 107, 85, 0.08);
}

.lead-capture-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.lead-capture-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.25;
}

.lead-capture-sub {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lead-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(196, 133, 108, 0.25);
  border-radius: 10px;
  background: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

.lead-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 133, 108, 0.12);
}

.btn-lead {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.3px;
}

.btn-lead:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(166, 107, 85, 0.28);
}

.btn-lead:active {
  transform: translateY(0);
}

.lead-capture-fine {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.75;
  text-align: center;
  margin-top: 4px;
}

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

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

  .hero {
    min-height: auto;
    padding: 60px 20px;
    align-items: center;
  }

  .lead-form-row {
    grid-template-columns: 1fr;
  }

  .lead-capture {
    padding: 24px 22px;
  }

  .problem,
  .features,
  .pricing,
  .closing {
    padding: 72px 20px;
  }
}