/* ── DESIGN TOKENS ── */
:root {
  --teva-900: #1b4332;
  --teva-800: #2d6a4f;
  --teva-700: #40916c;
  --teva-600: #52b788;
  --teva-400: #95d5b2;
  --teva-100: #d8f3dc;
  --teva-50:  #f0faf4;
  --blue-900: #1a237e;
  --blue-700: #283593;
  --accent:   #e9c46a;
  --accent-dark: #c9a227;
  --text-dark: #1a1a2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-body); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
[hidden] { display: none !important; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teva-800); color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(45,106,79,.3);
}
.btn-primary:hover { background: var(--teva-900); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,106,79,.4); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teva-800); padding: 12px 24px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; transition: background .2s;
  border: 2px solid transparent;
}
.btn-ghost:hover { background: var(--teva-50); border-color: var(--teva-400); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--teva-700); color: var(--teva-800);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; transition: background .2s, transform .15s;
}
.btn-outline:hover { background: var(--teva-50); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-xl { padding: 18px 48px; font-size: 1.15rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav-launch {
  background: var(--teva-800); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  transition: background .2s;
}
.btn-nav-launch:hover { background: var(--teva-900); }

/* ── SECTION HELPERS ── */
.section-tag {
  display: inline-block; background: var(--teva-100); color: var(--teva-800);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.15rem; color: var(--teva-900); flex-shrink: 0; }
.nav-logo-icon { font-size: 1.4rem; }
.nav-links { display: flex; gap: 8px; flex: 1; }
.nav-links a { color: var(--text-body); font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: background .18s, color .18s; }
.nav-links a:hover { background: var(--teva-50); color: var(--teva-800); }
.nav-cta { flex-shrink: 0; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all .25s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 800;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 20px 24px 28px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mm-link { display: block; padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 500; color: var(--text-body); transition: background .18s; }
.mm-link:hover { background: var(--teva-50); color: var(--teva-800); }
.btn-mm-launch { margin-top: 12px; text-align: center; }

/* ── HERO ── */
.hero {
  padding: calc(var(--nav-h) + 80px) 0 100px;
  background: linear-gradient(160deg, var(--teva-50) 0%, #fff 50%, #f8fbff 100%);
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(149,213,178,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: var(--teva-100); color: var(--teva-800); font-size: 0.82rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.hero-headline { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; color: var(--text-dark); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.headline-accent { color: var(--teva-700); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-note { font-size: 0.82rem; color: var(--text-muted); }

/* ── PHONE MOCKUP ── */
.hero-visual { display: flex; justify-content: center; align-items: flex-start; position: relative; padding-top: 20px; }
.phone-wrap { position: relative; }
.phone-frame {
  width: 285px; border-radius: 40px;
  background: #101018; box-shadow: var(--shadow-xl), 0 0 0 2px #333;
  overflow: hidden; position: relative;
}
.phone-notch { width: 100px; height: 28px; background: #101018; margin: 0 auto; border-radius: 0 0 18px 18px; position: relative; z-index: 2; }
.phone-screen { background: var(--white); margin: -1px 4px 4px; border-radius: 34px 34px 30px 30px; overflow: hidden; }
.mini-app { padding: 14px 12px 0; }
.mini-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mini-brand { font-weight: 800; font-size: 0.9rem; color: var(--teva-900); }
.mini-wx { font-size: 0.78rem; color: var(--text-muted); background: #f5f5f5; padding: 2px 8px; border-radius: 50px; }
.mini-section-title { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.mini-badge { background: #fff3cd; color: #856404; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.mini-input { border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 6px 10px; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.mini-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.mini-chips-row { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.mc { display: inline-block; padding: 3px 8px; border-radius: 50px; font-size: 0.62rem; font-weight: 600; border: 1.5px solid #ddd; color: var(--text-muted); background: var(--white); }
.mc.sel { background: var(--teva-800); color: var(--white); border-color: var(--teva-800); }
.mini-divider { height: 1px; background: var(--border); margin: 6px 0; }
.mini-grid-label { font-size: 0.7rem; font-weight: 700; color: var(--text-dark); display: flex; justify-content: space-between; margin-bottom: 6px; }
.mini-count { font-weight: 400; color: var(--text-muted); }
.mini-card { display: flex; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 8px; margin-bottom: 6px; }
.mini-card-img { width: 44px; height: 44px; border-radius: 7px; flex-shrink: 0; }
.mc-img-1 { background: linear-gradient(135deg, #52b788, #2d6a4f); }
.mc-img-2 { background: linear-gradient(135deg, #74c69d, #40916c); }
.mini-card-body { flex: 1; min-width: 0; }
.mini-grade { display: inline-block; background: #d1fae5; color: #065f46; font-size: 0.6rem; font-weight: 800; padding: 1px 5px; border-radius: 4px; margin-bottom: 2px; }
.mini-card-name { font-size: 0.7rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-card-meta { font-size: 0.6rem; color: var(--text-muted); margin-bottom: 2px; }
.mini-card-tags { display: flex; gap: 4px; }
.mini-card-tags span { font-size: 0.55rem; background: var(--teva-50); color: var(--teva-800); padding: 1px 5px; border-radius: 50px; }
.mini-gen-bar {
  background: var(--teva-900); color: var(--white);
  padding: 10px 12px; display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem;
}
.mini-gen-emoji { font-size: 1rem; }
.mini-gen-name { flex: 1; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-gen-btn { background: var(--accent); color: var(--text-dark); padding: 4px 8px; border-radius: 50px; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; }

/* Floating cards */
.float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; white-space: nowrap; border: 1px solid var(--border);
}
.float-card span { font-size: 1.3rem; }
.fc-title { font-weight: 700; font-size: 0.78rem; color: var(--text-dark); }
.fc-sub { font-size: 0.7rem; color: var(--text-muted); }
.float-card-1 { left: -100px; top: 120px; }
.float-card-2 { right: -100px; top: 300px; }

/* ── STATS ── */
.stats { background: var(--teva-900); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 6px; }
.stat-label { font-size: 0.9rem; color: var(--teva-400); font-weight: 500; }

/* ── FEATURES ── */
.features { padding: 100px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--teva-50); border: 1px solid var(--teva-100);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how { padding: 100px 0; background: linear-gradient(180deg, var(--teva-50) 0%, var(--white) 100%); }
.how-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto 48px; }
.how-step { display: flex; gap: 28px; align-items: flex-start; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--teva-800); color: var(--white);
  font-size: 1.2rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(45,106,79,.3);
}
.step-content { flex: 1; padding-top: 12px; }
.step-content h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.step-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.step-tags span { background: var(--white); border: 1.5px solid var(--teva-400); color: var(--teva-800); font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; }
.how-connector { width: 2px; height: 48px; background: linear-gradient(180deg, var(--teva-400), var(--teva-100)); margin-left: 25px; }
.how-cta { text-align: center; }

/* ── SHOWCASE ── */
.showcase { padding: 100px 0; background: var(--white); }
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row-flip { direction: rtl; }
.showcase-row-flip > * { direction: ltr; }
.showcase-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.25; }
.showcase-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.showcase-text em { color: var(--teva-700); font-style: normal; font-weight: 600; }
.showcase-list { display: flex; flex-direction: column; gap: 10px; }
.showcase-list li { font-size: 0.92rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 8px; }

/* Plan mockup */
.plan-mockup, .along-mockup, .overnight-mockup {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-md);
}
.pm-header { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.pm-weather { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.pm-rec { display: flex; gap: 12px; padding: 12px; background: var(--teva-50); border-radius: var(--radius-md); margin-bottom: 14px; align-items: flex-start; }
.pm-rec-grade { width: 32px; height: 32px; border-radius: 8px; background: #d1fae5; color: #065f46; font-weight: 900; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pm-rec-name { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 4px; }
.pm-rec-reason { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.pm-itinerary { display: flex; flex-direction: column; gap: 8px; }
.pm-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.82rem; }
.pm-time { font-weight: 700; color: var(--teva-700); flex-shrink: 0; min-width: 72px; }
.pm-item-more { color: var(--text-muted); font-style: italic; padding-left: 84px; }

/* Along mockup */
.am-section { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); margin: 14px 0 8px; display: flex; align-items: center; gap: 8px; }
.am-section:first-child { margin-top: 0; }
.am-card { background: var(--teva-50); border: 1px solid var(--teva-100); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 6px; }
.am-name { font-weight: 700; font-size: 0.82rem; color: var(--text-dark); margin-bottom: 3px; }
.am-meta { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 4px; }
.am-tip { font-size: 0.75rem; color: var(--text-body); font-style: italic; }
.om-day { margin-bottom: 8px; }
.om-day-label { font-size: 0.72rem; font-weight: 700; color: var(--teva-700); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }

/* ── PRICING ── */
.pricing { padding: 100px 0; background: linear-gradient(180deg, #f8fffe 0%, var(--teva-50) 100%); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 48px; }
.pt-label { font-size: 0.95rem; font-weight: 600; color: var(--text-body); }
.pt-save { display: inline-block; background: var(--accent); color: var(--text-dark); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 6px; }
.pt-switch {
  width: 52px; height: 28px; border-radius: 50px; background: var(--teva-800);
  position: relative; transition: background .2s;
  flex-shrink: 0;
}
.pt-switch.annual { background: var(--teva-600); }
.pt-knob {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
  background: var(--white); border-radius: 50%; transition: left .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.pt-switch.annual .pt-knob { left: 27px; }
.pt-label.annual-active { color: var(--teva-800); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pc-featured {
  border-color: var(--teva-700); box-shadow: 0 0 0 3px rgba(64,145,108,.12), var(--shadow-md);
  transform: scale(1.03);
}
.pc-featured:hover { transform: scale(1.03) translateY(-4px); }
.pc-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teva-800); color: var(--white); font-size: 0.75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.pc-tier { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.pc-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.pc-amount { font-size: 2.4rem; font-weight: 900; color: var(--text-dark); }
.pc-period { font-size: 0.9rem; color: var(--text-muted); }
.pc-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
.pc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-features li { font-size: 0.88rem; color: var(--text-body); }
.pc-btn { display: block; text-align: center; width: 100%; }
.pricing-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 32px; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--teva-50); border: 1px solid var(--teva-100);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--accent-dark); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teva-700); color: var(--white);
  font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.testi-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ── WAITLIST ── */
.waitlist {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teva-900) 0%, var(--teva-800) 60%, var(--teva-700) 100%);
}
.waitlist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.waitlist-text .section-tag { background: rgba(255,255,255,.15); color: var(--white); }
.waitlist-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.waitlist-text p { color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 28px; }
.waitlist-perks { display: flex; flex-direction: column; gap: 10px; }
.waitlist-perks li { font-size: 0.95rem; color: var(--white); display: flex; align-items: center; gap: 10px; font-weight: 500; }

/* Form */
.waitlist-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-xl); }
.waitlist-form { display: flex; flex-direction: column; gap: 14px; }
.form-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-size: 0.95rem; color: var(--text-dark);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus { border-color: var(--teva-600); box-shadow: 0 0 0 3px rgba(82,183,136,.15); }
.form-privacy { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.waitlist-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.waitlist-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.waitlist-success p { color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center;
  transition: color .18s;
}
.faq-q:hover { color: var(--teva-700); }
.faq-arrow { font-size: 1.1rem; color: var(--teva-700); transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-arrow { transform: rotate(-180deg); }
.faq-a {
  font-size: 0.93rem; color: var(--text-muted); line-height: 1.75;
  padding: 0 24px 20px 0; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teva-50) 0%, #e8f8f0 100%);
}
.fct-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.fct-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--text-dark); margin-bottom: 16px; }
.fct-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; }

/* ── FOOTER ── */
.footer { background: var(--teva-900); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-tagline { font-size: 0.85rem; color: var(--teva-400); margin-bottom: 16px; line-height: 1.5; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background .2s, color .2s; }
.footer-social a:hover { background: rgba(255,255,255,.2); color: var(--white); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teva-400); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-col a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-float { opacity: 0; transform: translateY(16px) scale(.95); transition: opacity .65s ease, transform .65s ease; }
.reveal-float.visible { opacity: 1; transform: none; }

/* Stagger siblings */
.features-grid .feature-card:nth-child(2) { transition-delay: .1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: .2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: .05s; }
.features-grid .feature-card:nth-child(5) { transition-delay: .15s; }
.features-grid .feature-card:nth-child(6) { transition-delay: .25s; }
.stats-grid .stat-item:nth-child(2) { transition-delay: .1s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: .2s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: .3s; }
.testimonials-grid .testi-card:nth-child(2) { transition-delay: .1s; }
.testimonials-grid .testi-card:nth-child(3) { transition-delay: .2s; }
.float-card-1 { transition-delay: .4s; }
.float-card-2 { transition-delay: .6s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .float-card-1, .float-card-2 { display: none; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .showcase-row, .showcase-row-flip { grid-template-columns: 1fr; direction: ltr; }
  .showcase-row .showcase-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pc-featured { transform: none; }
  .pc-featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .how-step { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .waitlist-form-wrap { padding: 28px 20px; }
}
