/* =========================================================
   NATURAL HEALING — MINIMAL DESIGN SYSTEM
   ========================================================= */

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

:root {
  /* Surfaces */
  --bg:           #F6F1E8;   /* main cream */
  --bg-alt:       #FAF6EE;   /* lighter cream alternate */
  --bg-warm:      #F4E5D6;   /* warm peach panel */
  --bg-sage:      #E8EFE5;   /* light sage panel */
  --bg-card:      #FFFFFF;
  --bg-soft:      #FBF7F0;

  /* Sage palette (brand accent) */
  --sage-50:      #EDF3EC;
  --sage-100:     #DBE8D8;
  --sage-200:     #BAD3B6;
  --sage-300:     #94BB8E;
  --sage-500:     #6FA877;
  --sage-600:     #5A8E62;
  --sage-700:     #466F4D;
  --sage-900:     #1F3624;

  /* Warm accents */
  --peach:        #E9C8A8;
  --peach-soft:   #F4E5D6;
  --gold:         #C8973A;

  /* Text */
  --ink-900:      #14110F;   /* near-black for headings */
  --ink-800:      #2A2622;
  --ink-600:      #4A453F;
  --ink-500:      #6B6660;
  --ink-400:      #8E8A84;
  --ink-300:      #B8B3AE;

  /* Lines */
  --line:         rgba(20,17,15,0.08);
  --line-strong:  rgba(20,17,15,0.14);

  /* Shadows — subtle */
  --shadow-sm:    0 1px 2px rgba(20,17,15,0.04), 0 1px 3px rgba(20,17,15,0.04);
  --shadow-md:    0 4px 16px rgba(20,17,15,0.06), 0 2px 6px rgba(20,17,15,0.04);
  --shadow-lg:    0 24px 60px rgba(20,17,15,0.10);

  /* Radii */
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         20px;
  --r-xl:         28px;
  --r-pill:       999px;

  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink-800);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a       { text-decoration: none; color: inherit; }
img     { max-width: 100%; height: auto; display: block; }
ul, ol  { list-style: none; }
button  { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.005em; }
h4 { font-size: 1.05rem; font-weight: 600; }

p  { color: var(--ink-600); }

/* ── Reveal animations ─────────────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.97); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink-900);
  color: #fff;
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-secondary {
  background: #fff;
  color: var(--ink-900);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: var(--sage-50);
  border-color: var(--sage-300);
  color: var(--sage-700);
}

/* App store button (kept light/dark variants) */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.3rem;
  border-radius: var(--r-pill);
  background: var(--ink-900);
  color: #fff;
  transition: var(--transition);
}
.store-btn:hover { background: #000; transform: translateY(-1px); }
.store-btn i { font-size: 1.4rem; }
.store-btn-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn-small { font-size: 0.62rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.5px; }
.store-btn-big   { font-size: 1rem; font-weight: 600; }

/* ── Eyebrow / pill / tag ──────────────────────────────── */
.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink-700, var(--ink-800));
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.section-tag i  { color: var(--sage-600); font-size: 0.7rem; }
.section-tag.light {
  background: rgba(255,255,255,0.85);
  border-color: var(--line);
  color: var(--ink-800);
}

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-heading p {
  color: var(--ink-500);
  font-size: 1rem;
  margin-top: 0.6rem;
}
.section-heading.light p { color: var(--ink-500); }

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(246,241,232,0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--sage-700);
  font-weight: 500;
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: transparent !important;
  padding: 0 !important;
}

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-link {
  font-size: 0.9rem;
  color: var(--ink-600);
  transition: color var(--transition);
  font-weight: 400;
}
.nav-link:hover, .nav-link.active { color: var(--sage-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ink-900);
  color: #fff;
  padding: 0.55rem 1.05rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-cta:hover { background: #000; }
.nav-cta i { font-size: 0.95rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Background helpers (kept as no-op for legacy markup) ─ */
.botanical-bg, .orb { display: none !important; }
.leaf-particle { display: none !important; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-info { max-width: 540px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--r-pill);
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  font-size: 0.78rem;
  color: var(--sage-700);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.hero-eyebrow i { color: var(--sage-600); font-size: 0.7rem; }
.hero-app-icon { display: none; }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-title br { display: none; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-subtitle br { display: none; }

.hero-badges { display: none; }

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 1.5rem;
}
.hero-stat { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-stat i { color: var(--sage-600); font-size: 0.85rem; }
.hero-stat strong { color: var(--ink-900); font-weight: 600; }

.hero-disclaimer {
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  color: var(--ink-500);
  line-height: 1.5;
  max-width: 480px;
}
.hero-disclaimer i { color: var(--sage-600); margin-top: 2px; }
.hero-disclaimer strong { color: var(--ink-800); font-weight: 600; }

/* Hero visual — single phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.hero-visual-glow { display: none; }
.phone-frame {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
}
.phone-frame img {
  display: block;
  width: 280px;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(20,17,15,0.12));
}

/* ── Stats bar ─────────────────────────────────────────── */
.stats-bar {
  background: transparent;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-500);
  font-weight: 400;
}

/* ── Generic section padding ───────────────────────────── */
section { padding: 5rem 0; }

/* ── About strip ───────────────────────────────────────── */
.about-strip { background: var(--bg-alt); padding: 5rem 0; }
.about-strip + .about-strip { background: var(--bg); border-top: 1px solid var(--line); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-bg-ring, .about-bg-ring-inner { display: none; }
.about-phone-wrap { position: relative; }
.about-phone {
  background: transparent;
  padding: 0;
  display: inline-block;
}
.about-phone img {
  width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(20,17,15,0.12));
}

.about-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-size: 0.82rem;
}
.about-float-card strong { display: block; color: var(--ink-900); font-weight: 600; font-size: 0.85rem; }
.about-float-card span { color: var(--ink-500); font-size: 0.75rem; }
.about-float-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-card-1 { top: 12%; left: -28px; }
.float-card-2 { bottom: 14%; right: -28px; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p {
  color: var(--ink-600);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.about-text .section-tag { margin-bottom: 1rem; }

.about-points { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.about-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-point-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sage-50);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.about-point-text strong { display: block; color: var(--ink-900); font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.about-point-text span { color: var(--ink-500); font-size: 0.85rem; }

/* ── Features grid ─────────────────────────────────────── */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ── How it works ──────────────────────────────────────── */
.how-it-works { background: var(--bg-alt); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.step-card:nth-child(2) .step-number { background: var(--sage-50); color: var(--sage-700); }
.step-card:nth-child(3) .step-number { background: #ECE6F5; color: #6E5BA8; }

.step-phone-visual { display: none; }

.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ── AI Herbalist (light variant) ──────────────────────── */
#ai-herbalist {
  background: linear-gradient(180deg, var(--bg-sage) 0%, var(--bg-alt) 100%) !important;
}
#ai-herbalist .section-heading h2,
#ai-herbalist .step-card h3,
#ai-herbalist .feature-card h3 { color: var(--ink-900) !important; }
#ai-herbalist .feature-card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
}
#ai-herbalist .feature-card p { color: var(--ink-500) !important; }
#ai-herbalist .section-tag.light {
  background: #fff;
  color: var(--ink-700);
  border-color: var(--line-strong);
}
#ai-herbalist .section-heading.light p { color: var(--ink-500); }

/* The lock note at bottom */
#ai-herbalist > .container > .reveal:last-child {
  background: rgba(255,255,255,0.7) !important;
  border: 1px solid var(--line) !important;
}
#ai-herbalist > .container > .reveal:last-child p {
  color: var(--ink-500) !important;
}
#ai-herbalist > .container > .reveal:last-child strong {
  color: var(--ink-800) !important;
}

/* ── Screenshots scroller ──────────────────────────────── */
.screenshots { background: var(--bg); }
.screenshots .section-heading h2,
.screenshots .section-heading p { color: var(--ink-900); }
.screenshots .section-heading p { color: var(--ink-500); }
.screenshots .section-tag.light {
  background: #fff;
  color: var(--ink-700);
  border-color: var(--line-strong);
}

.screenshots-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.screenshots-scroll::-webkit-scrollbar { height: 6px; }
.screenshots-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

.ss-frame {
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 26px;
  background: transparent;
  padding: 0;
  position: relative;
  overflow: visible;
}
.ss-frame img {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(20,17,15,0.10));
}
.ss-frame.ss-md img { width: 220px; }
.ss-frame.ss-lg img { width: 240px; }
.ss-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--ink-500);
  white-space: nowrap;
}

/* ── Categories ────────────────────────────────────────── */
.categories { background: var(--bg-alt); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.7rem;
  max-width: 880px;
  margin: 0 auto;
}
.category-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--ink-800);
  font-weight: 500;
  transition: var(--transition);
}
.category-chip:hover {
  border-color: var(--sage-300);
  background: var(--sage-50);
}
.cat-emoji { font-size: 1rem; }

/* ── Herbs section ─────────────────────────────────────── */
.herbs-section { background: var(--bg); }

.herbs-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.herbs-text h2 { margin-bottom: 1rem; }
.herbs-text p { color: var(--ink-600); line-height: 1.65; margin-bottom: 1rem; }

.evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line);
}
.evidence-strong      { color: var(--sage-700); border-color: var(--sage-200); background: var(--sage-50); }
.evidence-moderate    { color: var(--gold); border-color: rgba(200,151,58,0.35); background: rgba(244,229,214,0.5); }
.evidence-traditional { color: #6E5BA8; border-color: rgba(110,91,168,0.25); background: #F1ECF8; }

.herbs-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 90px;
  gap: 0.6rem;
  width: 100%;
  max-width: 420px;
}
.herbs-mosaic-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sage-50);
  border: 1px solid var(--line);
}
.herbs-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.herbs-mosaic-tall { grid-row: span 2; }
.herbs-mosaic-wide { grid-column: span 2; }

.herbs-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.herb-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
}
.herb-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.herb-card-img {
  aspect-ratio: 1;
  background: var(--sage-50);
  overflow: hidden;
}
.herb-card-img img { width: 100%; height: 100%; object-fit: cover; }
.herb-card-body { padding: 1rem; }
.herb-card-body h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-900);
  margin-bottom: 0.35rem;
}
.herb-card-body p {
  font-size: 0.8rem;
  color: var(--ink-500);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.herb-gallery-scroll {
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.herb-gallery-scroll::-webkit-scrollbar { height: 6px; }
.herb-gallery-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
.herb-gallery-track {
  display: inline-flex;
  gap: 0.6rem;
  padding-right: 24px;
}
.herb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--ink-800);
  white-space: nowrap;
  transition: var(--transition);
}
.herb-pill:hover { border-color: var(--sage-300); background: var(--sage-50); }
.herb-pill img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonials { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.testimonial-quote-icon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  color: var(--sage-200);
  font-size: 1.25rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 2px;
}
.testimonial-card p {
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--ink-900); }
.testimonial-meta { font-size: 0.75rem; color: var(--ink-400); }

/* ── Listen to your body ───────────────────────────────── */
#your-body {
  background: var(--bg-warm) !important;
}
#your-body .section-heading h2,
#your-body .step-card h3 { color: var(--ink-900) !important; }
#your-body .step-card,
#your-body .step-card[style] {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-lg);
}
#your-body .step-card p,
#your-body .section-heading p { color: var(--ink-500) !important; }
#your-body .step-number,
#your-body .step-card[style] .step-number {
  background: var(--sage-50) !important;
  color: var(--sage-700) !important;
}
#your-body .step-card:nth-child(2) .step-number { background: var(--peach-soft) !important; color: var(--gold) !important; }
#your-body .step-card:nth-child(3) .step-number { background: #ECE6F5 !important; color: #6E5BA8 !important; }
#your-body .section-tag.light {
  background: #fff !important;
  color: var(--ink-700) !important;
  border-color: var(--line-strong) !important;
}

/* ── CTA ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--peach-soft) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-app-icon { display: none; }
.cta-section h2 { margin-bottom: 0.85rem; }
.cta-section > .container > .cta-inner > p {
  color: var(--ink-500);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-500);
}
.cta-rating .stars { color: var(--gold); letter-spacing: 1px; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  color: var(--ink-500);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--sage-700);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.footer-brand-logo img {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 8px !important;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-600);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--sage-50); color: var(--sage-700); border-color: var(--sage-200); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-900);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--ink-500);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--ink-900); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--ink-400); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--ink-500);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-bottom-links a:hover { color: var(--ink-900); }
.social-link i { font-size: 0.9rem; }

/* ── Legal pages ───────────────────────────────────────── */
.legal-hero {
  padding: 9rem 0 3rem;
  background: var(--bg);
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.6rem;
}
.legal-hero p { color: var(--ink-500); font-size: 1rem; }
.legal-hero p strong { color: var(--ink-700); font-weight: 500; }
.legal-hero .section-tag.light {
  background: #fff;
  color: var(--ink-700);
  border-color: var(--line-strong);
}

.legal-body {
  background: var(--bg-alt);
  padding: 4rem 0 5rem;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.7;
}
.legal-content h2,
.legal-content h3 {
  font-family: 'Fraunces', serif;
  color: var(--ink-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-content h2 { font-size: 1.4rem; }
.legal-content h3 { font-size: 1.1rem; }
.legal-content p,
.legal-content li { color: var(--ink-700); margin-bottom: 0.85rem; }
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-content a { color: var(--sage-700); text-decoration: underline; }

.disclaimer-box {
  background: var(--peach-soft);
  border: 1px solid rgba(200,151,58,0.25);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--ink-700);
}
.disclaimer-box strong { color: var(--ink-900); }

.subscription-box {
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--ink-700);
}

/* Contact card */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--sage-50);
  color: var(--sage-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
}
.contact-card p {
  color: var(--ink-500);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink-900);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.contact-email-link:hover { background: #000; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  border: none;
}
.faq-question i {
  color: var(--ink-400);
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  color: var(--ink-600);
  font-size: 0.9rem;
  line-height: 1.65;
}
.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 1.25rem 1rem;
}
.faq-answer p { margin-bottom: 0.6rem; color: var(--ink-600); }
.faq-answer ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 0.6rem; }
.faq-answer li { margin-bottom: 0.3rem; color: var(--ink-600); }
.faq-answer strong { color: var(--ink-900); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { padding: 7rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-info { max-width: 100%; }
  .hero-visual { min-height: 480px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .herbs-intro { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .herbs-cards-row { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  section { padding: 3.5rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .herbs-cards-row { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal-content { padding: 1.5rem; }
  .container { padding: 0 18px; }
  .phone-frame img { width: 240px !important; }
  .about-phone img { width: 220px; }
  .float-card-1 { left: -8px; }
  .float-card-2 { right: -8px; }
}

