:root {
  --bg: #f5f0e8;
  --bg-dark: #1a3d2e;
  --fg: #1c1c1a;
  --fg-light: #5a5a52;
  --accent: #d4a853;
  --accent-dark: #b8893a;
  --surface: #ffffff;
  --border: #e0d9cd;
  --green-mid: #2d5a42;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-dark);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--bg);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.6);
  font-weight: 500;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--bg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-cta-text {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
}
.hero-stat-card.accent {
  background: rgba(212,168,83,0.1);
  border-color: rgba(212,168,83,0.25);
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}

/* ─── SHARED SECTION ─── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-light);
}

/* ─── FEATURES ─── */
.whatyouget { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 2rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.feature-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-light);
  line-height: 1.6;
}

/* ─── PROOF ─── */
.proof { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}
.proof-stat { padding: 0 2rem; text-align: center; }
.proof-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.proof-text {
  font-size: 0.8rem;
  color: var(--fg-light);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.proof-quote {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  color: var(--bg);
}
.proof-quote blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: rgba(245,240,232,0.9);
}
.proof-quote cite {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── PRICING ─── */
.pricing { background: var(--surface); }
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
}
.pricing-badge {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.pricing-price {
  margin-bottom: 0.5rem;
}
.price-setup {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.price-setup-label {
  font-size: 1rem;
  color: var(--fg-light);
  margin-left: 0.25rem;
}
.pricing-recurring {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.price-month {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-dark);
}
.price-month-label {
  font-size: 0.9rem;
  color: var(--fg-light);
  margin-left: 0.25rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--bg-dark);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-note {
  font-size: 0.75rem;
  color: var(--fg-light);
  line-height: 1.5;
  padding: 1rem;
  background: rgba(26,61,46,0.05);
  border-radius: 8px;
}

/* ─── PROCESS ─── */
.process { background: var(--bg-dark); color: var(--bg); }
.process .section-title { color: var(--bg); }
.process .section-sub { color: rgba(245,240,232,0.6); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 1.5rem;
}
.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,168,83,0.4), rgba(212,168,83,0.1));
  margin-top: 1.5rem;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--fg);
  color: rgba(245,240,232,0.5);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 360px;
}
.footer-copy { font-size: 0.75rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { flex-direction: row; }
  .hero-stat-card { flex: 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .proof-divider { display: none; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .step-connector { display: none; }
  .pricing-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-right { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 3rem 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .proof-quote { padding: 2rem 1.5rem; }
}