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

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --teal:       #2D7D7B;
  --teal-dark:  #1F5A58;
  --teal-light: #3D9E9B;
  --terra:      #C4653A;
  --terra-lt:   #D4845F;
  --cream:      #F7F2EA;
  --warm-white: #FDFAF5;
  --bark:       #2C2218;
  --bark-mid:   #5C4A38;
  --bark-lt:    #8C7A68;
  --linen:      #EDE6D8;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --mw: 1100px;
  --sp: 5rem 1.5rem;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--warm-white); color: var(--bark); line-height: 1.6; font-size: 16px; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,245,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196,101,58,0.12);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.site-logo { height: 38px; width: auto; display: block; }
.site-logo--footer { height: 32px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--bark-mid); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { background: var(--terra) !important; color: white !important; padding: 0.5rem 1.2rem; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--terra-lt) !important; }

/* ── Shared section helpers ─────────────────────────────────────────────── */
.s-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.7rem; }
.s-h2 { font-family: var(--font-d); font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; color: var(--bark); margin-bottom: 0.9rem; }
.s-lead { font-size: 1rem; color: var(--bark-mid); line-height: 1.75; margin-bottom: 2.5rem; max-width: 580px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--terra); color: white;
  padding: 0.85rem 1.8rem; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--terra-lt); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--teal-dark);
  padding: 0.85rem 1.8rem; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: 2px solid var(--teal); transition: all 0.2s;
}
.btn-secondary:hover { background: var(--teal); color: white; }

.btn-ghost {
  display: inline-block; margin-top: 1.2rem; padding: 0.7rem 1.5rem;
  border: 2px solid rgba(247,242,234,0.35); color: var(--cream); border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(247,242,234,0.1); }

/* ── Inner page hero (all pages except home) ────────────────────────────── */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(45deg,  rgba(45,125,123,0.07) 0, rgba(45,125,123,0.07) 2px, transparent 2px, transparent 14px),
    repeating-linear-gradient(-45deg, rgba(196,101,58,0.05) 0, rgba(196,101,58,0.05) 2px, transparent 2px, transparent 14px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,242,234,0.82) 0%, rgba(247,242,234,0.92) 100%);
}
.page-hero .inner { max-width: var(--mw); margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 0.9rem;
  padding: 0.28rem 0.75rem; background: rgba(196,101,58,0.1); border-radius: 2px;
}
.page-hero h1 {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--bark); letter-spacing: -0.02em; margin-bottom: 1rem; max-width: 680px;
}
.page-hero p { font-size: 1.08rem; color: var(--bark-mid); line-height: 1.75; max-width: 560px; }

/* ── Final CTA section — two variants ──────────────────────────────────── */
.final-cta { padding: var(--sp); text-align: center; position: relative; overflow: hidden; }
.final-cta .inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--font-d); font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.9rem; letter-spacing: -0.02em; }
.final-cta p { font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-sub { font-size: 0.83rem; margin-top: 0.9rem; }

/* Light variant (home page) */
.home-cta { background: var(--cream); }
.home-cta .s-h2 { color: var(--bark); }
.home-cta p { color: var(--bark-mid); }
.home-cta .cta-sub { color: var(--bark-lt); }

/* Dark variant (inner pages) */
.dark-cta { background: var(--teal-dark); }
.dark-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(247,242,234,0.03) 0, rgba(247,242,234,0.03) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(247,242,234,0.02) 0, rgba(247,242,234,0.02) 1px, transparent 1px, transparent 10px);
}
.dark-cta h2 { color: var(--cream); }
.dark-cta p { color: rgba(247,242,234,0.72); }
.dark-cta .cta-sub { color: rgba(247,242,234,0.45); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer { background: var(--bark); padding: 2.8rem 1.5rem; }
.foot-inner { max-width: var(--mw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.foot-sub { font-size: 0.8rem; color: rgba(247,242,234,0.42); margin-top: 0.3rem; }
.foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-links a { color: rgba(247,242,234,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.foot-links a:hover { color: var(--terra-lt); }
.foot-by { font-size: 0.8rem; color: rgba(247,242,234,0.38); text-align: right; }
.foot-by a { color: rgba(247,242,234,0.5); text-decoration: none; }
.foot-by a:hover { color: var(--terra-lt); }

/* ════════════════════════════════════════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(45deg,  rgba(45,125,123,0.09) 0, rgba(45,125,123,0.09) 2px, transparent 2px, transparent 14px),
    repeating-linear-gradient(-45deg, rgba(196,101,58,0.07) 0, rgba(196,101,58,0.07) 2px, transparent 2px, transparent 14px),
    repeating-linear-gradient(0deg,   rgba(44,34,24,0.03)   0, rgba(44,34,24,0.03)   1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(90deg,  rgba(44,34,24,0.03)   0, rgba(44,34,24,0.03)   1px, transparent 1px, transparent 14px);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(247,242,234,0.86) 0%, rgba(247,242,234,0.78) 55%, rgba(45,125,123,0.18) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--mw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 1.2rem;
  padding: 0.3rem 0.8rem; background: rgba(196,101,58,0.1); border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-d); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700;
  line-height: 1.15; color: var(--bark); margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--teal-dark); }
.hero-sub { font-size: 1.05rem; color: var(--bark-mid); margin-bottom: 2rem; line-height: 1.75; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero mock card */
.hero-card {
  background: white; border-radius: 8px; padding: 1.8rem;
  box-shadow: 0 8px 40px rgba(44,34,24,0.12), 0 2px 8px rgba(44,34,24,0.06);
  border: 1px solid var(--linen);
}
.card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark-lt); margin-bottom: 1rem; }
.store-chip { background: var(--cream); border-radius: 5px; padding: 0.9rem 1rem; margin-bottom: 0.8rem; }
.store-chip-name { font-family: var(--font-d); font-size: 1rem; color: var(--teal-dark); font-weight: 600; }
.store-chip-sub { font-size: 0.78rem; color: var(--bark-lt); margin-top: 0.15rem; }
.orow { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid var(--linen); }
.orow:last-child { border-bottom: none; }
.orow-title { font-weight: 600; font-size: 0.88rem; color: var(--bark); }
.orow-sub { font-size: 0.77rem; color: var(--bark-lt); margin-top: 0.1rem; }
.badge { display: inline-block; font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 20px; }
.badge-new { background: rgba(196,101,58,0.12); color: var(--terra); }
.badge-paid { background: rgba(45,125,123,0.12); color: var(--teal-dark); }
.orow-summary { font-size: 0.82rem; color: var(--bark-lt); padding-top: 0.5rem; }
.orow-link { font-size: 0.78rem; font-weight: 600; color: var(--teal); text-decoration: none; cursor: default; }

/* Pain section */
.pain { padding: var(--sp); background: var(--bark); position: relative; overflow: hidden; }
.pain::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 10px);
}
.pain .inner { position: relative; z-index: 1; max-width: var(--mw); margin: 0 auto; text-align: center; }
.pain .s-h2 { color: var(--cream); }
.pain .s-lead { color: rgba(247,242,234,0.68); margin: 0 auto 2.8rem; }
.pain .s-label { color: rgba(196,101,58,0.8); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; text-align: left; }
.pain-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 1.5rem; }
.pain-icon { font-size: 1.7rem; margin-bottom: 0.7rem; }
.pain-card h3 { font-size: 0.97rem; font-weight: 600; color: var(--terra-lt); margin-bottom: 0.45rem; }
.pain-card p { font-size: 0.87rem; color: rgba(247,242,234,0.62); line-height: 1.65; }

/* Solution section */
.solution { padding: var(--sp); background: var(--warm-white); }
.solution .inner { max-width: var(--mw); margin: 0 auto; }
.niche-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 3rem; }
.niche-tag { display: inline-block; padding: 0.38rem 0.9rem; background: var(--linen); color: var(--bark-mid); border-radius: 20px; font-size: 0.83rem; font-weight: 500; border: 1px solid rgba(196,101,58,0.14); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.feat-card {
  padding: 1.8rem; background: var(--cream); border-radius: 8px;
  border: 1px solid var(--linen); border-top: 3px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(44,34,24,0.08); }
.feat-icon { width: 42px; height: 42px; background: rgba(45,125,123,0.11); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 0.9rem; }
.feat-card h3 { font-size: 1rem; font-weight: 600; color: var(--bark); margin-bottom: 0.5rem; }
.feat-card p { font-size: 0.87rem; color: var(--bark-mid); line-height: 1.65; }

/* How section (home steps overview) */
.how { padding: var(--sp); background: var(--cream); position: relative; overflow: hidden; }
.how::after { content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(45,125,123,0.07) 0%, transparent 70%); pointer-events: none; }
.how .inner { max-width: var(--mw); margin: 0 auto; position: relative; z-index: 1; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--teal-light), var(--terra)); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step-num { width: 54px; height: 54px; background: var(--teal-dark); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin: 0 auto 1rem; box-shadow: 0 4px 12px rgba(31,90,88,0.28); }
.step:last-child .step-num { background: var(--terra); box-shadow: 0 4px 12px rgba(196,101,58,0.28); }
.step h3 { font-size: 0.93rem; font-weight: 600; color: var(--bark); margin-bottom: 0.4rem; }
.step p { font-size: 0.84rem; color: var(--bark-mid); line-height: 1.6; }

/* Home pricing */
.pricing { padding: var(--sp); background: var(--warm-white); }
.pricing .inner { max-width: var(--mw); margin: 0 auto; }

/* Shared pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; align-items: start; }
.p-card { background: var(--cream); border: 1px solid var(--linen); border-radius: 8px; padding: 2rem; }
.p-card.feat { background: var(--teal-dark); border-color: var(--teal-dark); }
.p-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.7rem; }
.p-card.feat .p-label { color: rgba(255,255,255,0.55); }
.p-amount { font-family: var(--font-d); font-size: 2.8rem; font-weight: 700; color: var(--bark); line-height: 1; margin-bottom: 0.25rem; }
.p-card.feat .p-amount { color: white; }
.p-gst { font-size: 0.78rem; color: var(--bark-lt); margin-bottom: 1.1rem; }
.p-card.feat .p-gst { color: rgba(255,255,255,0.45); }
.p-desc { font-size: 0.9rem; color: var(--bark-mid); line-height: 1.65; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--linen); }
.p-card.feat .p-desc { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.15); }
.p-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.p-list li { font-size: 0.86rem; color: var(--bark-mid); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.p-card.feat .p-list li { color: rgba(255,255,255,0.72); }
.p-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.p-card.feat .p-list li::before { color: var(--terra-lt); }
.p-cta { display: block; text-align: center; margin-top: 1.8rem; padding: 0.75rem; background: rgba(196,101,58,0.12); color: var(--terra); border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: background 0.2s; }
.p-cta:hover { background: rgba(196,101,58,0.2); }
.p-card.feat .p-cta { background: rgba(247,242,234,0.14); color: var(--cream); }
.p-card.feat .p-cta:hover { background: rgba(247,242,234,0.22); }

/* Add-on row — full-width bar below the price grid */
.p-addon-row { display: flex; align-items: center; gap: 2rem; background: var(--cream); border: 1px solid var(--linen); border-radius: 8px; padding: 1rem 1.5rem; margin-bottom: 2.5rem; }
.p-addon-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); white-space: nowrap; }
.p-addon-price { font-family: var(--font-d); font-size: 2.2rem; font-weight: 700; color: var(--bark); line-height: 1; white-space: nowrap; }
.p-addon-price span { font-size: 0.75rem; font-weight: 400; color: var(--bark-lt); margin-left: 0.3rem; }
.p-addon-desc { font-size: 0.88rem; color: var(--bark-mid); flex: 1; line-height: 1.5; }
.p-addon-link { color: var(--terra); font-weight: 600; font-size: 0.88rem; text-decoration: none; white-space: nowrap; }
.p-addon-link:hover { text-decoration: underline; }
.p-note-box { background: var(--cream); border: 1px solid var(--linen); border-radius: 8px; padding: 1rem 1.5rem; margin-bottom: 2.5rem; }

/* Terms page */
.terms-section { padding: 3rem 1.5rem; }
.terms-section .inner { max-width: 800px; margin: 0 auto; }
.terms-effective { font-size: 0.82rem; color: var(--bark-lt); margin-bottom: 2.5rem; border-bottom: 1px solid var(--linen); padding-bottom: 1.5rem; }
.terms-body h2 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 700; color: var(--bark); margin: 2.2rem 0 0.6rem; }
.terms-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--bark); margin: 1.2rem 0 0.3rem; text-transform: uppercase; letter-spacing: 0.04em; }
.terms-body p { font-size: 0.92rem; color: var(--bark-mid); line-height: 1.8; margin-bottom: 0.9rem; }
.terms-body ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.terms-body li { font-size: 0.92rem; color: var(--bark-mid); line-height: 1.75; margin-bottom: 0.3rem; }
.terms-body a { color: var(--teal); }
.fair-use-box { background: var(--cream); border: 2px solid var(--teal-dark); border-radius: 8px; padding: 1.5rem 1.75rem; margin: 1.5rem 0; }
.fair-use-box h3 { margin-top: 0; color: var(--teal-dark); }
.fair-use-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.88rem; }
.fair-use-table th { text-align: left; padding: 0.5rem 0.75rem; background: var(--teal-dark); color: white; font-weight: 600; }
.fair-use-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--linen); color: var(--bark-mid); }
.fair-use-table tr:last-child td { border-bottom: none; }

/* Share strip */
.share-strip { padding: 1.5rem 0; }
.share-prompt { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--cream); border: 1px solid var(--linen); border-radius: 8px; padding: 1rem 1.5rem; }
.share-prompt-text { display: flex; align-items: center; gap: 0.55rem; font-size: 0.88rem; color: var(--bark-mid); }
.share-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.share-btn { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.38rem 0.9rem; border: 1px solid var(--linen); border-radius: 4px; background: transparent; color: var(--bark); font-size: 0.82rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; font-family: inherit; }
.share-btn:hover, .share-btn.share-copied { border-color: var(--teal); color: var(--teal); }

/* Comparison table */
.ctable { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-top: 2rem; }
.ctable th { text-align: left; padding: 0.8rem 1rem; background: var(--bark); color: var(--cream); font-weight: 600; font-size: 0.82rem; }
.ctable th.hl { background: var(--teal-dark); }
.ctable th:first-child { border-radius: 6px 0 0 0; }
.ctable th:last-child  { border-radius: 0 6px 0 0; }
.ctable td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--linen); color: var(--bark-mid); vertical-align: top; }
.ctable td.hl { background: rgba(45,125,123,0.055); font-weight: 500; color: var(--teal-dark); }
.ctable tr:last-child td { border-bottom: none; }
.tick { color: var(--teal); font-weight: 700; }
.cross { color: #bbb; }

/* Trust section */
.trust { padding: var(--sp); background: var(--teal-dark); position: relative; overflow: hidden; }
.trust::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,  rgba(247,242,234,0.035) 0, rgba(247,242,234,0.035) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(247,242,234,0.025) 0, rgba(247,242,234,0.025) 1px, transparent 1px, transparent 10px);
}
.trust .inner { max-width: var(--mw); margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.trust .s-h2 { color: var(--cream); }
.trust p { color: rgba(247,242,234,0.72); line-height: 1.75; margin-bottom: 0.9rem; font-size: 0.93rem; }
.t-points { display: flex; flex-direction: column; gap: 1rem; }
.t-point { display: flex; gap: 0.9rem; align-items: flex-start; }
.t-icon { width: 36px; height: 36px; background: rgba(247,242,234,0.11); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.t-point h4 { font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 0.15rem; }
.t-point p { font-size: 0.83rem; color: rgba(247,242,234,0.57); margin: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════════════════════ */

.story { padding: var(--sp); background: var(--warm-white); }
.story .inner { max-width: 800px; margin: 0 auto; }
.story h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--bark); margin-bottom: 1rem; letter-spacing: -0.02em; }
.story p { font-size: 0.97rem; color: var(--bark-mid); line-height: 1.8; margin-bottom: 1.1rem; }
.story p:last-child { margin-bottom: 0; }
.pullquote { border-left: 4px solid var(--terra); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--cream); border-radius: 0 6px 6px 0; }
.pullquote p { font-family: var(--font-d); font-size: 1.2rem; color: var(--bark); font-style: italic; margin: 0; line-height: 1.6; }

.commitments { padding: var(--sp); background: var(--cream); }
.commitments .inner { max-width: var(--mw); margin: 0 auto; }
.commit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.commit-card { background: white; border-radius: 8px; padding: 1.8rem; border: 1px solid var(--linen); }
.commit-icon { font-size: 1.6rem; margin-bottom: 0.7rem; }
.commit-card h3 { font-size: 1rem; font-weight: 600; color: var(--bark); margin-bottom: 0.4rem; }
.commit-card p { font-size: 0.88rem; color: var(--bark-mid); line-height: 1.65; }

.platforms { padding: var(--sp); background: var(--warm-white); }
.platforms .inner { max-width: var(--mw); margin: 0 auto; }
.plat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.plat-card { background: var(--cream); border: 1px solid var(--linen); border-radius: 8px; padding: 1.8rem; }
.plat-card h3 { font-size: 1rem; font-weight: 700; color: var(--bark); margin-bottom: 0.5rem; }
.plat-card p { font-size: 0.87rem; color: var(--bark-mid); line-height: 1.65; margin-bottom: 1rem; }
.plat-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.plat-link:hover { color: var(--teal-dark); }
.plat-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 3px; margin-bottom: 0.7rem; }
.plat-badge.live { background: rgba(45,125,123,0.12); color: var(--teal-dark); }
.plat-badge.you { background: rgba(196,101,58,0.12); color: var(--terra); }

/* ════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS PAGE
   ════════════════════════════════════════════════════════════════════════════ */

.steps-section { padding: var(--sp); background: var(--warm-white); }
.steps-section .inner { max-width: 800px; margin: 0 auto; }
.step-detail { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; margin-bottom: 3.5rem; align-items: start; }
.step-detail:last-child { margin-bottom: 0; }
.step-num-lg {
  width: 64px; height: 64px; background: var(--teal-dark); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(31,90,88,0.25); flex-shrink: 0;
}
.step-detail:last-child .step-num-lg { background: var(--terra); box-shadow: 0 4px 16px rgba(196,101,58,0.25); }
.step-body h2 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--bark); margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.step-body p { font-size: 0.97rem; color: var(--bark-mid); line-height: 1.75; margin-bottom: 0.7rem; }
.step-body p:last-child { margin-bottom: 0; }
.step-note { background: var(--cream); border-left: 3px solid var(--teal); padding: 0.9rem 1.1rem; border-radius: 0 4px 4px 0; margin-top: 1rem; font-size: 0.88rem; color: var(--bark-mid); line-height: 1.65; }
.step-connector { width: 2px; height: 2rem; background: linear-gradient(180deg, var(--teal-light), var(--terra)); margin: 0 auto 0 39px; }

.covers { padding: var(--sp); background: var(--cream); }
.covers .inner { max-width: var(--mw); margin: 0 auto; }
.cover-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cover-card { background: white; border-radius: 6px; padding: 1.5rem; border: 1px solid var(--linen); }
.cover-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--bark); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.cover-card p { font-size: 0.85rem; color: var(--bark-mid); line-height: 1.6; }

.faq { padding: var(--sp); background: var(--warm-white); }
.faq .inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--linen); padding: 1.4rem 0; }
.faq-item:first-of-type { border-top: 1px solid var(--linen); }
.faq-q { font-size: 1rem; font-weight: 600; color: var(--bark); margin-bottom: 0.5rem; }
.faq-a { font-size: 0.92rem; color: var(--bark-mid); line-height: 1.7; }

/* ════════════════════════════════════════════════════════════════════════════
   PRICING PAGE
   ════════════════════════════════════════════════════════════════════════════ */

.price-section { padding: var(--sp); background: var(--warm-white); }
.price-section .inner { max-width: var(--mw); margin: 0 auto; }

.context { padding: var(--sp); background: var(--cream); }
.context .inner { max-width: var(--mw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.context h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--bark); margin-bottom: 1rem; letter-spacing: -0.02em; }
.context p { font-size: 0.95rem; color: var(--bark-mid); line-height: 1.75; margin-bottom: 0.9rem; }
.context p:last-child { margin-bottom: 0; }
.context-highlight { background: white; border-radius: 8px; padding: 1.8rem; border: 1px solid var(--linen); border-left: 4px solid var(--teal); }
.context-highlight h3 { font-size: 1rem; font-weight: 600; color: var(--bark); margin-bottom: 0.7rem; }
.math-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--linen); font-size: 0.88rem; }
.math-row:last-child { border-bottom: none; font-weight: 600; }
.math-label { color: var(--bark-mid); }
.math-val { color: var(--bark); font-weight: 500; }
.math-val.good { color: var(--teal-dark); font-weight: 700; }

.compare { padding: var(--sp); background: var(--warm-white); }
.compare .inner { max-width: var(--mw); margin: 0 auto; }

/* ════════════════════════════════════════════════════════════════════════════
   SIGNUP / CONTACT PAGE
   ════════════════════════════════════════════════════════════════════════════ */

.contact-section { padding: var(--sp); background: var(--warm-white); }
.contact-section .inner { max-width: var(--mw); margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.form-wrap { background: white; border: 1px solid var(--linen); border-radius: 8px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(44,34,24,0.07); }
.form-wrap h2 { font-family: var(--font-d); font-size: 1.5rem; color: var(--bark); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.form-wrap > p { font-size: 0.9rem; color: var(--bark-mid); margin-bottom: 1.8rem; line-height: 1.65; }
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--bark); margin-bottom: 0.4rem; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--linen); border-radius: 4px;
  font-family: var(--font-b); font-size: 0.92rem; color: var(--bark);
  background: var(--warm-white); transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--teal); background: white; }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.optional { font-size: 0.75rem; font-weight: 400; color: var(--bark-lt); margin-left: 0.3rem; }
.btn-submit { width: 100%; padding: 0.9rem; background: var(--terra); color: white; border: none; border-radius: 4px; font-family: var(--font-b); font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--terra-lt); transform: translateY(-1px); }
.form-note { font-size: 0.8rem; color: var(--bark-lt); text-align: center; margin-top: 0.8rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--cream); border: 1px solid var(--linen); border-radius: 8px; padding: 1.5rem; }
.sidebar-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--bark); margin-bottom: 0.5rem; }
.sidebar-card p { font-size: 0.87rem; color: var(--bark-mid); line-height: 1.65; }
.sidebar-card a { color: var(--teal); text-decoration: none; font-weight: 500; }
.sidebar-hl { background: var(--teal-dark); border-color: var(--teal-dark); }
.sidebar-hl h3 { color: var(--cream); }
.sidebar-hl p { color: rgba(247,242,234,0.72); }
.sidebar-hl a { color: var(--terra-lt); }

/* ── Validation helpers ──────────────────────────────────────────────────── */
.text-danger { color: #dc3545; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-card { display: none; }
  .pain-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .p-addon-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .trust .inner { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr 1fr; }
  .plat-grid { grid-template-columns: 1fr 1fr; }
  .cover-grid { grid-template-columns: 1fr 1fr; }
  .context .inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-section .inner { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; }
}
@media (max-width: 600px) {
  .feat-grid, .steps { grid-template-columns: 1fr; }
  .commit-grid, .plat-grid, .cover-grid { grid-template-columns: 1fr; }
  .step-detail { grid-template-columns: 60px 1fr; gap: 1.2rem; }
  .form-two { grid-template-columns: 1fr; }
  :root { --sp: 3.5rem 1.2rem; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
