/* =========================================================
   NATURAL HEALING — GLOBAL STYLES
   ========================================================= */

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

:root {
  /* Forest palette */
  --forest-deep:   #0D1F12;
  --forest-dark:   #1A3320;
  --forest-mid:    #2A5235;
  --forest-light:  #4C8F5A;
  --forest-bright: #5BAD6A;
  --leaf-light:    #A8E6A3;
  --leaf-pale:     #D4F1D4;

  /* Earth palette */
  --earth-warm:    #F5F0E8;
  --earth-mid:     #E8DFD0;
  --earth-dark:    #C8BAAA;

  /* Gold accent */
  --gold:          #F0D080;
  --gold-dark:     #C89830;
  --gold-deep:     #8B6914;

  /* Text */
  --text-dark:     #1A3320;
  --text-mid:      #3D6647;
  --text-light:    #5A7060;
  --text-muted:    #8A9A8E;

  /* Misc */
  --white:         #FFFFFF;
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  --shadow-sm:  0 2px 12px rgba(26,51,32,0.08);
  --shadow-md:  0 8px 32px rgba(26,51,32,0.12);
  --shadow-lg:  0 20px 60px rgba(26,51,32,0.18);
  --shadow-xl:  0 30px 80px rgba(0,0,0,0.35);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--earth-warm);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.15; }

/* ── Animations ────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(3deg); }
  66%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-24px) rotate(5deg); }
}
@keyframes sway {
  0%, 100% { transform: rotate(-5deg) translateX(0); }
  50%       { transform: rotate(5deg) translateX(8px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.08); }
}
@keyframes drift-right {
  0%   { transform: translateX(-60px) translateY(0) rotate(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 80px)) translateY(-120px) rotate(360deg); opacity: 0; }
}
@keyframes drift-up {
  0%   { transform: translateY(80px) rotate(0); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-120px) rotate(180deg); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Observe-triggered entrances ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Navigation ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(13, 31, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}
.nav-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4C8F5A, #A8E6A3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo-ph {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(110,200,110,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-ph i { font-size: 1rem; color: rgba(110,200,110,0.6); }

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--leaf-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--forest-light), var(--forest-bright));
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(76,143,90,0.4);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,143,90,0.55);
}
.nav-cta i { font-size: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Floating botanicals (hero bg) ────────────────────── */
.botanical-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: pulse-glow 12s infinite ease-in-out;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(76,143,90,0.28), transparent 70%);
  top: -250px; right: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,230,163,0.2), transparent 70%);
  bottom: -150px; left: -100px;
  animation-delay: 5s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(240,208,128,0.15), transparent 70%);
  top: 35%; left: 25%;
  animation-delay: 9s;
}

.leaf-particle {
  position: absolute;
  font-size: 1.5rem;
  animation: float var(--dur, 14s) infinite ease-in-out var(--delay, 0s);
  opacity: var(--opacity, 0.18);
  user-select: none;
  pointer-events: none;
}

/* ── Section shared ────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(76,143,90,0.12);
  border: 1px solid rgba(76,143,90,0.3);
  color: var(--forest-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(168,230,163,0.15);
  border-color: rgba(168,230,163,0.35);
  color: var(--leaf-light);
}
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.section-heading.light h2 { color: var(--white); }
.section-heading p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-heading.light p { color: rgba(255,255,255,0.55); }

/* ── Store Button ──────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  transition: all var(--transition);
  border: 1.5px solid rgba(26,51,32,0.12);
  box-shadow: var(--shadow-sm);
}
.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(76,143,90,0.25);
  border-color: rgba(76,143,90,0.3);
}
.store-btn i { font-size: 1.9rem; color: var(--forest-dark); }
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-small { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; line-height: 1; }
.store-btn-big { font-size: 1.1rem; font-weight: 800; line-height: 1.3; color: var(--text-dark); }

.store-btn-dark {
  background: var(--forest-dark);
  border-color: rgba(110,200,110,0.3);
  color: var(--white);
}
.store-btn-dark i { color: var(--white); }
.store-btn-dark .store-btn-small { color: rgba(255,255,255,0.55); }
.store-btn-dark .store-btn-big { color: var(--white); }
.store-btn-dark:hover {
  background: var(--forest-mid);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* ── Placeholder utilities ─────────────────────────────── */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px dashed rgba(76,143,90,0.3);
  border-radius: inherit;
  background: rgba(76,143,90,0.05);
  color: rgba(76,143,90,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.ph i { font-size: 1.75rem; color: rgba(76,143,90,0.35); }
.ph-dark {
  border-color: rgba(110,200,110,0.25);
  background: rgba(255,255,255,0.04);
  color: rgba(110,200,110,0.5);
}
.ph-dark i { color: rgba(110,200,110,0.3); }

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0A1A0D 0%, #1A3320 45%, #2A5235 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168,230,163,0.12);
  border: 1px solid rgba(168,230,163,0.3);
  color: var(--leaf-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-app-icon {
  width: 96px; height: 96px;
  margin-bottom: 1.5rem;
  background: transparent;
}
.hero-app-icon img { width: 100%; height: 100%; object-fit: contain; }
.hero-app-icon-ph {
  width: 96px; height: 96px;
  border-radius: 22px;
  border: 2px dashed rgba(110,200,110,0.5);
  background: rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(150,230,150,0.7);
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-app-icon-ph i { font-size: 1.8rem; color: rgba(110,200,110,0.45); }

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 0.5rem;
  background: linear-gradient(140deg, #C8F5C2 0%, #6EC86E 40%, #F0D080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-badge i { color: var(--leaf-light); font-size: 0.8rem; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.hero-stat i { color: var(--leaf-light); }
.hero-stat strong { color: rgba(255,255,255,0.85); font-weight: 700; }

.hero-disclaimer {
  margin-top: 2rem;
  background: rgba(240,208,128,0.1);
  border: 1px solid rgba(240,208,128,0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.hero-disclaimer i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.hero-disclaimer p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0;
}
.hero-disclaimer strong { color: var(--gold); }

/* Hero phone visuals */
.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.phone-frame {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.phone-frame:hover { transform: translateY(-10px); }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-lg { width: 220px; height: 450px; transform: translateY(-16px); z-index: 2; }
.phone-md { width: 180px; height: 368px; opacity: 0.8; }
.phone-sm { width: 135px; height: 276px; opacity: 0.55; }

.hero-visual-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(76,143,90,0.35), transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--forest-dark);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,230,163,0.4), transparent);
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,230,163,0.2), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--leaf-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── About strip ───────────────────────────────────────── */
.about-strip {
  background: var(--earth-warm);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76,143,90,0.08), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.about-point {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.about-point-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(76,143,90,0.15), rgba(168,230,163,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-point-icon i { color: var(--forest-light); font-size: 0.9rem; }
.about-point-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.about-point-text span {
  font-size: 0.84rem;
  color: var(--text-light);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-phone-wrap {
  position: relative;
}
.about-phone {
  width: 260px; height: 530px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.05);
}
.about-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.about-float-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-float-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.about-float-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.float-card-1 {
  top: 60px; left: -90px;
  animation: float 10s infinite ease-in-out;
}
.float-card-2 {
  bottom: 80px; right: -80px;
  animation: float 13s infinite ease-in-out 4s;
}
.about-bg-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(76,143,90,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-bg-ring-inner {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(76,143,90,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Features Section ──────────────────────────────────── */
.features {
  background: white;
  padding: 90px 0;
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,143,90,0.2), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--earth-warm);
  border: 1px solid rgba(76,143,90,0.1);
  border-radius: var(--radius-lg);
  padding: 1.875rem 1.625rem;
  transition: all var(--transition);
}
.feature-card:hover {
  background: #FAFFF8;
  border-color: rgba(76,143,90,0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ── How It Works ──────────────────────────────────────── */
.how-it-works {
  background: var(--earth-warm);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,143,90,0.07), transparent 70%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: calc(16.66% + 30px); right: calc(16.66% + 30px);
  height: 2px;
  background: linear-gradient(90deg, rgba(76,143,90,0.3), rgba(168,230,163,0.6), rgba(76,143,90,0.3));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-light), var(--forest-bright));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(76,143,90,0.35);
  position: relative;
  z-index: 1;
}
.step-phone-visual {
  width: 156px; height: 312px;
  border-radius: 22px;
  overflow: hidden;
  margin: 1.25rem auto;
  box-shadow: var(--shadow-md);
}
.step-phone-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.step-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Screenshots ───────────────────────────────────────── */
.screenshots {
  background: linear-gradient(170deg, #111E14 0%, #1A3320 50%, #2A5235 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.screenshots::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,200,110,0.4), transparent);
}
.screenshots-scroll {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 0 30px;
  overflow-x: auto;
  scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.ss-frame {
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
.ss-frame:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 80px rgba(76,143,90,0.3);
}
.ss-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-lg { width: 228px; height: 468px; transform: translateY(-18px); z-index: 2; }
.ss-md { width: 190px; height: 390px; opacity: 0.9; }
.ss-sm { width: 160px; height: 330px; opacity: 0.65; }

.ss-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: rgba(255,255,255,0.9);
  padding: 2.5rem 0.875rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Categories ────────────────────────────────────────── */
.categories {
  background: var(--earth-warm);
  padding: 90px 0;
  position: relative;
}
.categories::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,143,90,0.25), transparent);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
}
.category-chip {
  background: white;
  border: 1px solid rgba(76,143,90,0.12);
  border-radius: var(--radius-md);
  padding: 1.125rem 0.875rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.category-chip:hover {
  background: var(--forest-light);
  color: white;
  border-color: var(--forest-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(76,143,90,0.3);
}
.cat-emoji { display: block; font-size: 1.5rem; margin-bottom: 0.4rem; line-height: 1; }

/* ── Herbs Feature ─────────────────────────────────────── */
.herbs-section {
  background: white;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.herbs-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,143,90,0.2), transparent);
}
.herbs-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 4rem;
}
.herbs-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.herbs-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}
.evidence-strong { background: rgba(76,143,90,0.12); color: var(--forest-light); border: 1px solid rgba(76,143,90,0.25); }
.evidence-moderate { background: rgba(240,208,128,0.15); color: #917318; border: 1px solid rgba(240,208,128,0.4); }
.evidence-traditional { background: rgba(148,100,200,0.1); color: #7040B0; border: 1px solid rgba(148,100,200,0.25); }

.herbs-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.herb-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--earth-warm);
  border: 1px solid rgba(76,143,90,0.1);
  transition: all var(--transition);
}
.herb-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(76,143,90,0.25);
}
.herb-card-img {
  width: 100%; height: 160px;
  overflow: hidden;
  position: relative;
}
.herb-card-img img { width: 100%; height: 100%; object-fit: cover; }
.herb-card-body {
  padding: 1rem;
}
.herb-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.herb-card-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

/* Herb mosaic collage */
.herbs-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 110px);
  gap: 8px;
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  overflow: hidden;
}
.herbs-mosaic-item {
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.herbs-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.herbs-mosaic-tall {
  grid-row: span 2;
}
.herbs-mosaic-wide {
  grid-column: span 2;
}

/* Herb pill scroll gallery */
.herb-gallery-scroll {
  margin-top: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 40px, black calc(100% - 40px), transparent);
}
.herb-gallery-scroll::-webkit-scrollbar { display: none; }
.herb-gallery-track {
  display: flex;
  gap: 0.625rem;
  padding: 0.75rem 40px;
  width: max-content;
}
.herb-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--earth-warm);
  border: 1px solid rgba(76,143,90,0.12);
  border-radius: 16px;
  padding: 0.625rem 0.75rem;
  min-width: 80px;
  cursor: default;
  transition: all var(--transition);
}
.herb-pill:hover {
  border-color: rgba(76,143,90,0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(76,143,90,0.12);
}
.herb-pill picture {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.herb-pill picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.herb-pill span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
}

/* ── Premium Section ───────────────────────────────────── */
/* ── Testimonials ──────────────────────────────────────── */
.testimonials {
  background: var(--earth-warm);
  padding: 90px 0;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,143,90,0.25), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: white;
  border: 1px solid rgba(76,143,90,0.1);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(76,143,90,0.22);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: 0.875rem;
}
.testimonial-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-quote-icon {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 2rem;
  color: rgba(76,143,90,0.08);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(76,143,90,0.2), rgba(168,230,163,0.3));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.testimonial-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, #0A1A0D 0%, #1A3320 50%, #2A5235 100%);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(76,143,90,0.2), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-app-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 40px rgba(76,143,90,0.45);
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.cta-rating .stars { color: var(--gold-dark); }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: #060F08;
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-brand-logo-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--forest-light), var(--leaf-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(76,143,90,0.2);
  border-color: rgba(76,143,90,0.4);
  color: var(--leaf-light);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--leaf-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Legal Pages ───────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(160deg, #0A1A0D 0%, #1A3320 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.legal-hero p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

.legal-body {
  background: var(--earth-warm);
  padding: 60px 0 80px;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(76,143,90,0.08);
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-light);
  margin: 2rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(76,143,90,0.1);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 1rem; }
.legal-content p {
  color: var(--text-mid);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  color: var(--text-mid);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-bottom: 0.35rem;
}
.legal-content a { color: var(--forest-light); text-decoration: underline; }
.legal-content a:hover { color: var(--forest-bright); }

.disclaimer-box {
  background: #FFFBEB;
  border: 1.5px solid rgba(240,208,128,0.6);
  border-radius: var(--radius-md);
  padding: 1.375rem 1.5rem;
  margin: 1.5rem 0;
}
.disclaimer-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #92680A;
  margin-bottom: 0.6rem;
}
.disclaimer-box h3 i { color: #B8840E; }
.disclaimer-box p, .disclaimer-box li {
  color: #7A5508 !important;
  font-size: 0.875rem !important;
}
.subscription-box {
  background: #F0F8F1;
  border: 1.5px solid rgba(76,143,90,0.3);
  border-radius: var(--radius-md);
  padding: 1.375rem 1.5rem;
  margin: 1.5rem 0;
}
.subscription-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest-mid);
  margin-bottom: 0.6rem;
}
.subscription-box p, .subscription-box li { color: var(--forest-mid) !important; font-size: 0.875rem !important; }

/* ── Support Page ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1rem; }
.faq-item {
  background: var(--earth-warm);
  border: 1px solid rgba(76,143,90,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background var(--transition);
  user-select: none;
  gap: 1rem;
}
.faq-question:hover { background: rgba(76,143,90,0.05); }
.faq-question i { color: var(--forest-light); font-size: 0.8rem; transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.125rem;
}
.faq-answer p, .faq-answer li {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.75;
}
.faq-answer ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }

.contact-card {
  background: white;
  border: 1px solid rgba(76,143,90,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(76,143,90,0.12), rgba(168,230,163,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--forest-light);
  margin: 0 auto 1.25rem;
}
.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
}
.contact-email-link:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ── Global mobile safeguards ──────────────────────────── */
html { overflow-x: hidden; }
body { overflow-x: hidden; -webkit-tap-highlight-color: transparent; }

/* Ensure all interactive elements have minimum touch target */
a, button, [role="button"] { -webkit-tap-highlight-color: transparent; }
.nav-link, .nav-cta, .store-btn, .premium-cta-btn,
.contact-email-link, .faq-question, .category-chip {
  min-height: 44px;
}
.faq-question { display: flex; align-items: center; }

/* Horizontal scroll containers: enable momentum scrolling on iOS */
.screenshots-scroll {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-left: 24px;
  padding-right: 24px;
}
.ss-frame { scroll-snap-align: center; }

/* ── 1100px — Tablet landscape ─────────────────────────── */
@media (max-width: 1100px) {
  .herbs-cards-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── 960px — Tablet portrait ───────────────────────────── */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .herbs-intro { grid-template-columns: 1fr; gap: 48px; text-align: center; }

  .hero-info { display: flex; flex-direction: column; align-items: center; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-disclaimer { text-align: left; max-width: 520px; }
  .hero-visual { justify-content: center; }

  .about-text { order: 1; }
  .about-visual { order: 0; justify-content: center; }
  .about-float-card { display: none; }
  /* Prevent rings overflowing container */
  .about-bg-ring { width: 300px; height: 300px; }
  .about-bg-ring-inner { width: 380px; height: 380px; }
  .about-points { align-items: center; }
  .about-point { text-align: left; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid::before { display: none; }

  .categories-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .herbs-text { text-align: center; }
  .herbs-text .evidence-badge { margin-bottom: 0.25rem; }
}

/* ── 768px — Mobile landscape / large phone ────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    padding-top: 80px;
    background: rgba(10,26,13,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-link { font-size: 1.3rem; padding: 0.5rem 1rem; }

  /* Sections: reduce vertical padding */
  .about-strip,
  .features,
  .how-it-works,
  .screenshots,
  .categories,
  .herbs-section,
  .premium,
  .testimonials { padding: 64px 0; }
  .cta-section { padding: 80px 0; }
  .stats-bar { padding: 24px 0; }

  /* Container */
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-app-icon { width: 80px; height: 80px; margin-bottom: 1.25rem; }
  .hero-disclaimer { font-size: 0.78rem; }

  /* Grids → single column */
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .herbs-cards-row { grid-template-columns: repeat(2, 1fr); }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-chip { padding: 0.875rem 0.5rem; font-size: 0.8rem; }

  /* Screenshots */
  .phone-sm { display: none; }
  .ss-sm { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-value { font-size: 2rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-brand p { max-width: 100%; }

  /* Legal */
  .legal-content { padding: 1.5rem 1.25rem; border-radius: var(--radius-lg); }
  .legal-hero { padding: 100px 0 48px; }
  .legal-hero h1 { font-size: 1.75rem; }

  /* Support */
  .contact-card { padding: 1.75rem 1.25rem; }
}

/* ── 540px — Small phone ───────────────────────────────── */
@media (max-width: 540px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 90px 0 52px; min-height: unset; }
  .hero-title { font-size: 2.75rem; line-height: 0.95; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
  .hero-stats-row { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat { font-size: 0.8rem; }

  /* Show only center phone in hero */
  .phone-md { display: none; }
  .phone-lg { width: 205px; height: 420px; transform: none; }

  /* About */
  .about-phone { width: 214px; height: 438px; }
  .about-bg-ring { width: 250px; height: 250px; }
  .about-bg-ring-inner { width: 310px; height: 310px; }

  /* Screenshots */
  .ss-md { width: 160px; height: 328px; }
  .ss-lg { width: 186px; height: 382px; transform: translateY(-12px); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 10px 12px; }
  .stat-value { font-size: 1.75rem; }
  .stat-label { font-size: 0.72rem; }

  /* Features / How it works */
  .feature-card { padding: 1.5rem 1.25rem; }
  .step-phone-visual { width: 128px; height: 256px; border-radius: 18px; }

  /* Categories */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .cat-emoji { font-size: 1.3rem; }
  .category-chip { font-size: 0.78rem; padding: 0.75rem 0.5rem; }

  /* Herbs */
  .herbs-cards-row { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem 1.25rem; }

  /* CTA */
  .cta-inner h2 { font-size: 1.75rem; }
  .cta-inner p { font-size: 0.95rem; }
  .cta-app-icon { width: 64px; height: 64px; border-radius: 16px; }
  .cta-rating { font-size: 0.78rem; }

  /* Store button */
  .store-btn { padding: 0.625rem 1.125rem; }
  .store-btn-big { font-size: 1rem; }

  /* Section headings */
  .section-heading { margin-bottom: 2.5rem; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-top { padding-bottom: 2rem; margin-bottom: 1.5rem; }
  .footer-col h4 { margin-bottom: 0.875rem; }

  /* Legal */
  .legal-content { padding: 1.25rem 1rem; }
  .legal-content h2 { font-size: 1.05rem; }
  .legal-content p, .legal-content li { font-size: 0.875rem; }
  .disclaimer-box, .subscription-box { padding: 1rem; }
}

/* ── 375px — iPhone SE / very small ───────────────────── */
@media (max-width: 390px) {
  .hero-title { font-size: 2.4rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { gap: 0.4rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.625rem; }
  .stat-value { font-size: 1.6rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 1.5rem; }
}
