/* =========================================================
   YOPO — Static Marketing Site
   Single stylesheet. No frameworks.
   Palette: forest greens on warm white. Editorial + product craft.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --brand: #1c7a46;          /* primary green */
  --brand-dark: #0f3d24;     /* deep forest (banners / dark buttons) */
  --brand-darker: #0a2c19;
  --brand-mid: #2e9e5b;      /* accent green (icons, highlights) */
  --brand-soft: #e9f6ee;     /* light green wash */
  --brand-softer: #f2faf5;

  --ink: #16211b;            /* near-black, green-tinted */
  --ink-2: #2c3a32;
  --muted: #667a6f;          /* muted body text */
  --muted-2: #90a196;
  --line: #e6ece8;           /* hairline borders */
  --line-2: #d7e2db;

  --bg: #ffffff;
  --bg-soft: #f5f8f6;
  --bg-warm: #f7f9f6;

  --star: #f5b301;
  --danger: #e05b4b;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-sm: 0 4px 18px rgba(16, 46, 30, 0.06);
  --shadow: 0 18px 50px rgba(16, 46, 30, 0.10);
  --shadow-lg: 0 40px 90px rgba(11, 44, 25, 0.18);

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input { font-family: inherit; }

/* subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--brand-mid); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-warm { background: var(--bg-warm); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-soft); padding: 7px 14px; border-radius: 100px;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
.h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
.lead { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--muted); max-width: 46ch; }
.text-accent { color: var(--brand-mid); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); }
.title-rule { display: inline-flex; align-items: center; gap: 18px; justify-content: center; }
.title-rule::before, .title-rule::after { content: ""; width: 46px; height: 2px; background: var(--brand-mid); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .95rem; padding: 14px 26px; border-radius: 100px;
  transition: transform .35s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: .95em; }
.btn-primary { background: var(--brand-dark); color: #fff; box-shadow: 0 12px 30px rgba(15, 61, 36, .28); }
.btn-primary:hover { background: var(--brand-darker); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15, 61, 36, .38); }
.btn-green { background: var(--brand); color: #fff; }
.btn-green:hover { background: var(--brand-dark); transform: translateY(-3px); }
.btn-outline { border: 1.5px solid var(--line-2); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-3px); }
.btn-outline .ic { color: var(--brand); }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }

/* store buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0c1410; color: #fff; padding: 11px 20px; border-radius: 14px;
  transition: transform .35s var(--ease), box-shadow .3s var(--ease);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.store-btn i { font-size: 1.7rem; }
.store-btn .st { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn .st small { font-size: .62rem; letter-spacing: .04em; opacity: .85; text-transform: uppercase; }
.store-btn .st b { font-size: 1.02rem; font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(16,46,30,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .logo { font-size: 1.7rem; font-weight: 800; letter-spacing: .01em; color: var(--brand-dark); }
.brand .logo span { color: var(--brand-mid); }
.brand .tag { font-size: .5rem; font-weight: 700; letter-spacing: .32em; color: var(--muted-2); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .93rem; font-weight: 600; color: var(--ink-2); position: relative; padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brand-mid); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brand-dark); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; font-size: 1.4rem; color: var(--ink); padding: 6px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 999;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px; display: none; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow);
  transform: translateY(-12px); opacity: 0; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- Hero (Home) ---------- */
.hero { position: relative; padding: 70px 0 60px; overflow: hidden; }
.hero-bg-blob {
  position: absolute; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand-soft), transparent 70%);
  filter: blur(10px);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-copy .h1 { margin: 20px 0; font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.hero-copy .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.trust-row { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars .av {
  width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-dark)); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .8rem;
}
.avatars .av:first-child { margin-left: 0; }
.trust-row .stars { color: var(--star); font-size: .85rem; }
.trust-row small { display: block; color: var(--muted); font-size: .82rem; }

/* ---------- Phone Mockup (CSS-built) ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; z-index: 3;
  width: 300px; aspect-ratio: 300 / 620;
  background: #0c1410; border-radius: 46px; padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #1c2a22;
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: #0c1410; border-radius: 0 0 16px 16px; z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%; background: #f4f8f5; border-radius: 36px; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
}
.ps-top { display:flex; justify-content: space-between; align-items:center; padding: 14px 18px 6px; font-size:.6rem; color:#6a7a70; font-weight:600;}
.ps-head { padding: 4px 18px 10px; }
.ps-head .plogo { font-weight: 800; color: var(--brand-dark); font-size: .95rem; }
.ps-head .pgreet { font-size: .68rem; color: var(--muted); margin-top: 2px; }
.ps-card { background:#fff; margin: 8px 14px; border-radius: 16px; padding: 12px 14px; box-shadow: 0 6px 16px rgba(16,46,30,.05); }
.ps-card .lbl { font-size:.58rem; color: var(--muted); font-weight:600; }
.ps-card .big { font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height:1.1; }
.ps-card .delta { font-size:.55rem; color: var(--brand); font-weight:700; }
.ps-spark { height: 34px; margin-top: 6px; }
.ps-spark path { stroke: var(--brand-mid); stroke-width: 2.5; fill: none; }
.ps-remind { display:flex; align-items:center; justify-content: space-between; }
.ps-remind .num { font-size: 1.5rem; font-weight: 800; }
.ps-bell { width: 30px; height:30px; border-radius:9px; background: #fff4d6; color:#e6a700; display:flex; align-items:center; justify-content:center; }
.ps-list { padding: 4px 14px; }
.ps-list .row { display:flex; align-items:center; gap:8px; padding:7px 0; }
.ps-list .av { width:26px;height:26px;border-radius:50%;background:linear-gradient(135deg,var(--brand-mid),var(--brand-dark)); flex:0 0 auto;}
.ps-list .nm { font-size:.62rem; font-weight:700; }
.ps-list .sub { font-size:.52rem; color:var(--muted); }
.ps-list .tm { margin-left:auto; font-size:.5rem; color:var(--brand); font-weight:700;}
.ps-nav { margin-top:auto; display:flex; justify-content: space-around; align-items:center; padding: 10px 8px 14px; background:#fff; border-top:1px solid #eef2ef;}
.ps-nav i { color:#a9b6ad; font-size:.85rem; }
.ps-nav .fab { width:38px;height:38px;border-radius:50%; background:var(--brand); color:#fff; display:flex;align-items:center;justify-content:center; box-shadow:0 8px 18px rgba(28,122,70,.4); margin-top:-24px; font-size:1rem;}

/* dotted decoration */
.dots-grid {
  display: grid; grid-template-columns: repeat(5, 6px); gap: 8px;
}
.dots-grid i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-mid); opacity:.5; display:block; }

/* floating cards around phone */
.float-card {
  position: absolute; z-index: 4; background:#fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow); display:flex; align-items:center; gap: 12px; min-width: 190px;
  border: 1px solid var(--line);
}
.float-card .fc-ic { width:38px;height:38px;border-radius:12px; background:var(--brand-soft); color:var(--brand); display:flex;align-items:center;justify-content:center; flex:0 0 auto;}
.float-card .fc-t { font-size:.8rem; font-weight:700; }
.float-card .fc-s { font-size:.68rem; color:var(--muted); }

/* ---------- Process flow (arrows) ---------- */
.flow { display:flex; align-items:flex-start; justify-content:center; gap: 6px; flex-wrap: wrap; }
.flow-step { display:flex; flex-direction:column; align-items:center; gap:10px; width: 108px; text-align:center; }
.flow-ic { width:64px;height:64px;border-radius:20px; background:#fff; border:1px solid var(--line); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.3rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);}
.flow-step:hover .flow-ic { transform: translateY(-6px); background: var(--brand); color:#fff; }
.flow-step .lbl { font-size:.8rem; font-weight:700; color:var(--ink-2); }
.flow-arrow { color: var(--brand-mid); font-size:1rem; margin-top: 22px; opacity:.6; }

/* ---------- Feature cards ---------- */
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feat-ic { width:52px;height:52px;border-radius:14px; background:var(--brand-soft); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.25rem; margin-bottom:18px; transition: transform .4s var(--ease);}
.feature-card:hover .feat-ic { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { font-size:1.08rem; margin-bottom:8px; }
.feature-card p { color: var(--muted); font-size:.92rem; }

/* audience icons */
.audience { display:grid; grid-template-columns: repeat(8, 1fr); gap: 20px; }
.audience .a-item { display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.audience .a-ic { width:58px;height:58px;border-radius:50%; background:#fff; border:1px solid var(--line); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.15rem; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);}
.audience .a-item:hover .a-ic { background:var(--brand); color:#fff; transform: translateY(-5px); }
.audience .a-item span { font-size:.78rem; font-weight:700; color:var(--ink-2); }

/* numbered steps */
.steps { display:flex; align-items:flex-start; justify-content: space-between; gap:8px; position:relative; flex-wrap:wrap; }
.steps::before { content:""; position:absolute; top:16px; left:8%; right:8%; height:2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); z-index:0;}
.step { display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; width: 150px; position:relative; z-index:1; }
.step .num { width:32px;height:32px;border-radius:50%; background:var(--brand); color:#fff; font-weight:800; font-size:.85rem; display:flex;align-items:center;justify-content:center; box-shadow:0 6px 16px rgba(28,122,70,.35);}
.step .s-ic { width:60px;height:60px;border-radius:18px; background:#fff; border:1px solid var(--line); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.25rem; box-shadow:var(--shadow-sm); transition: transform .3s var(--ease);}
.step:hover .s-ic { transform: translateY(-5px); }
.step .lbl { font-size:.82rem; font-weight:700; }

/* comparison table */
.compare { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); }
.compare .c-head { display:grid; grid-template-columns: 1fr 1fr; }
.compare .c-head div { padding:18px 24px; font-weight:800; }
.compare .c-head .neg { color: var(--danger); background:#fdf3f1; }
.compare .c-head .pos { color: var(--brand); background: var(--brand-soft); }
.compare .c-row { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid var(--line); }
.compare .c-row div { padding:16px 24px; display:flex; align-items:center; gap:12px; font-size:.92rem; font-weight:600; }
.compare .c-row .neg i { color: var(--danger); }
.compare .c-row .pos i { color: var(--brand); }
.compare .c-row .pos { border-left:1px solid var(--line); }

/* dashboard list (left col home) */
.dash-list { display:grid; gap:12px; }
.dash-list li { display:flex; align-items:center; gap:12px; font-weight:600; color:var(--ink-2); }
.dash-list li i { width:26px;height:26px;border-radius:8px; background:var(--brand-soft); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:.75rem; flex:0 0 auto;}
.score-box { margin-top:22px; background:var(--brand-softer); border:1px solid var(--line); border-radius:16px; padding:18px 20px; display:flex; align-items:center; gap:18px;}
.score-ring { --p: 55; width:66px;height:66px;border-radius:50%; flex:0 0 auto; display:grid; place-items:center;
  background: conic-gradient(var(--brand-mid) calc(var(--p)*1%), var(--line-2) 0); }
.score-ring span { width:50px;height:50px;border-radius:50%; background:#fff; display:grid;place-items:center; font-weight:800; font-size:.8rem; }

/* ---------- Carousel (sneak peek) ---------- */
.carousel { position:relative; }
.carousel-track { display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding: 8px 4px 20px; scrollbar-width:none; scroll-behavior:smooth; }
.carousel-track::-webkit-scrollbar { display:none; }
.snap-card { scroll-snap-align:center; flex:0 0 auto; width: 190px; text-align:center; }
.snap-phone { width:190px; aspect-ratio: 190/380; background:#0c1410; border-radius:28px; padding:8px; box-shadow: var(--shadow); }
.snap-phone .scr { width:100%;height:100%; background:#f4f8f5; border-radius:22px; overflow:hidden; position:relative; }
.snap-phone .scr .bar { height:8px; background:var(--brand-soft); margin:14px 14px 0; border-radius:6px; }
.snap-phone .scr .bar.w60 { width:60%; } .snap-phone .scr .bar.w40 { width:40%; } .snap-phone .scr .bar.dark { background:var(--brand-mid); opacity:.6;}
.snap-phone.dark .scr { background:#111a15; }
.snap-card .cap { margin-top:14px; font-size:.85rem; font-weight:700; }
.snap-card .cap b { color:var(--brand); margin-right:6px; }
.carousel-btn { position:absolute; top:38%; width:44px;height:44px;border-radius:50%; background:#fff; box-shadow:var(--shadow); color:var(--ink); display:flex;align-items:center;justify-content:center; z-index:3; transition: transform .3s var(--ease);}
.carousel-btn:hover { transform: scale(1.08); color:var(--brand); }
.carousel-btn.prev { left:-10px; } .carousel-btn.next { right:-10px; }

/* coming soon */
.coming-grid { display:grid; grid-template-columns: repeat(5, 1fr); gap: 24px 18px; }
.coming-item { display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.coming-item .c-ic { width:56px;height:56px;border-radius:16px; background:#fff; border:1px dashed var(--line-2); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.15rem; transition: transform .3s var(--ease), border-color .3s var(--ease);}
.coming-item:hover .c-ic { transform:translateY(-5px); border-color:var(--brand-mid); border-style:solid; }
.coming-item span { font-size:.78rem; font-weight:600; color:var(--ink-2); }

/* ---------- Waitlist banner ---------- */
.waitlist {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
  border-radius: var(--radius-xl); padding: 44px; color:#fff; position:relative; overflow:hidden;
}
.waitlist::after { content:""; position:absolute; right:-60px; top:-40px; width:260px;height:260px; border:2px solid rgba(255,255,255,.08); border-radius:50%; }
.waitlist h2 { color:#fff; }
.waitlist p { color: rgba(255,255,255,.8); }
.wl-form { display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; align-items:center; }
.wl-form input { flex:1 1 160px; min-width:140px; padding:14px 16px; border-radius:12px; border:none; font-size:.9rem; }
.wl-form input::placeholder { color:var(--muted-2); }
.wl-badge { display:inline-flex; align-items:center; gap:10px; color:#fff; font-size:.82rem; font-weight:600; }
.wl-badge .chk { width:26px;height:26px;border-radius:50%; background:var(--brand-mid); display:flex;align-items:center;justify-content:center; font-size:.7rem;}

/* ---------- FAQ page ---------- */
.faq-hero { position:relative; padding: 60px 0 40px; overflow:hidden; }
.faq-hero-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:center; }
.trust-badges { display:flex; gap:36px; margin-top:34px; flex-wrap:wrap; }
.trust-badge { display:flex; flex-direction:column; gap:8px; max-width:150px; }
.trust-badge .tb-ic { width:48px;height:48px;border-radius:14px; background:var(--brand-dark); color:#fff; display:flex;align-items:center;justify-content:center; font-size:1.1rem;}
.trust-badge b { font-size:.92rem; }
.trust-badge span { font-size:.8rem; color:var(--muted); }

.search-wrap { max-width:640px; margin: 0 auto; }
.search-box { display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line); border-radius:100px; padding: 8px 8px 8px 22px; box-shadow: var(--shadow-sm); }
.search-box input { flex:1; border:none; outline:none; font-size:.98rem; padding: 10px 0; background:transparent; }
.search-box .sb-btn { width:44px;height:44px;border-radius:50%; background:var(--brand); color:#fff; display:flex;align-items:center;justify-content:center; }

.faq-tabs { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin: 30px 0 8px; }
.faq-tab { display:inline-flex; align-items:center; gap:8px; padding:11px 20px; border-radius:100px; border:1px solid var(--line); background:#fff; font-weight:600; font-size:.88rem; color:var(--ink-2); transition: all .3s var(--ease); }
.faq-tab:hover { border-color:var(--brand-mid); color:var(--brand); }
.faq-tab.active { background:var(--brand); color:#fff; border-color:var(--brand); box-shadow:0 10px 24px rgba(28,122,70,.28); }

.faq-cats { display:grid; grid-template-columns: repeat(2, 1fr); gap: 40px 50px; }
.faq-cat .cat-head { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.faq-cat .cat-ic { width:44px;height:44px;border-radius:12px; background:var(--brand-soft); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.05rem; }
.faq-cat .cat-head h3 { font-size:1.2rem; }

.accordion { display:flex; flex-direction:column; gap:12px; }
.acc-item { border:1px solid var(--line); border-radius:14px; background:#fff; overflow:hidden; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.acc-item.open { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.acc-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 18px; font-weight:600; font-size:.94rem; text-align:left; color:var(--ink); }
.acc-q .chev { color:var(--muted); transition: transform .35s var(--ease); flex:0 0 auto; }
.acc-item.open .acc-q .chev { transform: rotate(180deg); color:var(--brand); }
.acc-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.acc-a p { padding: 0 18px 18px; color:var(--muted); font-size:.9rem; }

/* support box */
.support-box { background: var(--brand-softer); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; display:grid; grid-template-columns: 1.2fr 1.8fr; gap:30px; align-items:center; }
.support-left { display:flex; align-items:center; gap:18px; }
.support-left .su-ic { width:64px;height:64px;border-radius:50%; background:var(--brand-soft); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.5rem; flex:0 0 auto;}
.support-left h3 { font-size:1.25rem; }
.support-left p { color:var(--muted); font-size:.9rem; margin:4px 0 14px; }
.support-stats { display:flex; gap:14px; justify-content:space-around; border-left:1px solid var(--line-2); padding-left:24px; }
.su-stat { display:flex; align-items:center; gap:12px; }
.su-stat .st-ic { width:44px;height:44px;border-radius:50%; background:#fff; border:1px solid var(--line); color:var(--brand); display:flex;align-items:center;justify-content:center; }
.su-stat b { font-size:.86rem; display:block; }
.su-stat span { font-size:.76rem; color:var(--muted); }

/* ---------- Benefits page ---------- */
.ben-hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:40px; align-items:center; }
.ben-features { display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; margin-top:36px; }
.ben-feat { display:flex; flex-direction:column; gap:8px; }
.ben-feat .bf-ic { width:52px;height:52px;border-radius:14px; background:var(--brand-soft); color:var(--brand); display:flex;align-items:center;justify-content:center; font-size:1.15rem;}
.ben-feat b { font-size:.92rem; }
.ben-feat span { font-size:.78rem; color:var(--muted); }

/* benefit big cards */
.benefit-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display:flex; flex-direction:column; }
.benefit-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.benefit-card .bc-top { display:flex; align-items:flex-start; gap:14px; margin-bottom:14px; }
.benefit-card .bc-ic { width:46px;height:46px;border-radius:50%; background:var(--brand); color:#fff; display:flex;align-items:center;justify-content:center; font-size:1.1rem; flex:0 0 auto;}
.benefit-card h3 { font-size:1.02rem; line-height:1.25; }
.benefit-card > p { color:var(--muted); font-size:.9rem; }
.bc-visual { margin-top:auto; padding-top:18px; }
.mini-chip { background:var(--bg-soft); border:1px solid var(--line); border-radius:12px; padding:12px 14px; display:flex; align-items:center; gap:10px; font-size:.8rem; }
.mini-chip .mc-ic { width:30px;height:30px;border-radius:8px; background:#fff4d6; color:#e6a700; display:flex;align-items:center;justify-content:center; flex:0 0 auto;}
.mini-chip.wa .mc-ic { background:#e5f8ee; color:#25d366; }
.mini-bubble { background:var(--bg-soft); border-radius:12px; padding:12px 14px; font-size:.8rem; color:var(--ink-2); position:relative; }
.mini-list { background:var(--bg-soft); border-radius:12px; padding:10px 14px; }
.mini-list .r { display:flex; align-items:center; justify-content:space-between; padding:6px 0; font-size:.8rem; font-weight:600; border-bottom:1px solid var(--line); }
.mini-list .r:last-child { border-bottom:none; }
.mini-list .r i { color:var(--brand); margin-right:8px; }
.mini-list .r b { color:var(--brand); }
.handshake-vis { display:flex; align-items:center; justify-content:center; gap:6px; padding:8px; }
.handshake-vis .fig { width:44px;height:44px;border-radius:50%; background:var(--brand); color:#fff; display:flex;align-items:center;justify-content:center;}

/* stats banner */
.stats-banner { background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker)); border-radius: var(--radius-xl); padding: 44px 30px; color:#fff; }
.stats-banner h2 { color:#fff; text-align:center; margin-bottom:34px; }
.stats-grid { display:grid; grid-template-columns: repeat(5, 1fr); gap:10px; }
.stat { text-align:center; padding: 0 12px; border-right:1px solid rgba(255,255,255,.14); }
.stat:last-child { border-right:none; }
.stat .st-ic { font-size:1.4rem; color:rgba(255,255,255,.6); margin-bottom:12px; }
.stat .st-num { font-size:clamp(1.5rem,2.5vw,2rem); font-weight:800; }
.stat .st-lbl { font-size:.78rem; color:rgba(255,255,255,.72); margin-top:4px; }

/* testimonials */
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.testi { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; position:relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.testi:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.testi .quote-mark { font-size:2.4rem; color:var(--brand-soft); line-height:1; position:absolute; top:18px; right:22px; }
.testi .stars { color:var(--star); font-size:.85rem; margin-bottom:14px; }
.testi p { font-size:.94rem; color:var(--ink-2); margin-bottom:22px; }
.testi .who { display:flex; align-items:center; gap:12px; }
.testi .who .av { width:44px;height:44px;border-radius:50%; background:linear-gradient(135deg,var(--brand-mid),var(--brand-dark)); display:flex;align-items:center;justify-content:center; color:#fff; font-weight:700;}
.testi .who b { font-size:.9rem; display:block; }
.testi .who span { font-size:.78rem; color:var(--muted); }
.dots { display:flex; gap:8px; justify-content:center; margin-top:30px; }
.dots .dot { width:9px;height:9px;border-radius:50%; background:var(--line-2); transition: all .3s var(--ease); }
.dots .dot.active { width:26px; border-radius:6px; background:var(--brand); }

/* ---------- CTA banners ---------- */
.cta-band { background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker)); border-radius: var(--radius-xl); padding: 40px; color:#fff; display:grid; grid-template-columns: auto 1fr auto; gap:30px; align-items:center; }
.cta-band h2 { color:#fff; font-size: clamp(1.4rem,2.4vw,2rem); }
.cta-band p { color: rgba(255,255,255,.8); }
.cta-phones { display:flex; align-items:center; }
.cta-stores { display:flex; flex-direction:column; gap:12px; }
.cta-light { background: var(--brand-soft); border-radius: var(--radius-xl); padding: 40px; display:grid; grid-template-columns: auto 1fr auto; gap:30px; align-items:center; }
.cta-light h2 { font-size: clamp(1.4rem,2.4vw,2rem); }
.cta-light p { color:var(--muted); }
.mini-phone { width:74px; aspect-ratio:74/150; background:#0c1410; border-radius:16px; padding:5px; box-shadow:var(--shadow);}
.mini-phone .scr { width:100%;height:100%; background:#f4f8f5; border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--brand); }

/* download section (home) */
.download-grid { display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-soft); border-top:1px solid var(--line); padding: 64px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap:36px; }
.footer-brand .logo { font-size:1.6rem; font-weight:800; color:var(--brand-dark); }
.footer-brand .logo span { color:var(--brand-mid); }
.footer-brand .tag { font-size:.5rem; font-weight:700; letter-spacing:.3em; color:var(--muted-2); margin:3px 0 16px; }
.footer-brand p { color:var(--muted); font-size:.88rem; max-width:34ch; margin-bottom:18px; }
.socials { display:flex; gap:10px; }
.socials a { width:38px;height:38px;border-radius:50%; background:var(--brand); color:#fff; display:flex;align-items:center;justify-content:center; transition: transform .3s var(--ease), background .3s var(--ease); }
.socials a:hover { transform:translateY(-4px); background:var(--brand-dark); }
.footer-col h4 { font-size:.95rem; margin-bottom:16px; }
.footer-col ul { display:flex; flex-direction:column; gap:11px; }
.footer-col a { color:var(--muted); font-size:.88rem; transition: color .25s var(--ease); }
.footer-col a:hover { color:var(--brand); }
.footer-sub p { color:var(--muted); font-size:.88rem; margin-bottom:14px; }
.sub-form { display:flex; gap:8px; }
.sub-form input { flex:1; padding:11px 14px; border:1px solid var(--line); border-radius:10px; font-size:.85rem; outline:none; }
.sub-form input:focus { border-color:var(--brand-mid); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; margin-top:44px; padding-top:24px; border-top:1px solid var(--line); flex-wrap:wrap; gap:12px; }
.footer-bottom p { color:var(--muted); font-size:.82rem; }
.footer-bottom .heart { color:var(--danger); }

/* ---------- Marquee ---------- */
.marquee { overflow:hidden; padding: 22px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.marquee-track { display:flex; gap:60px; width:max-content; animation: marq 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size:1.1rem; font-weight:800; color:var(--muted-2); letter-spacing:-.01em; display:inline-flex; align-items:center; gap:16px; }
.marquee-track span i { color:var(--brand-mid); font-size:.7rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity:0; transform: translateY(16px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
[data-reveal].in { opacity:1; transform:none; }
[data-reveal-stagger] > * { opacity:0; transform: translateY(16px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
[data-reveal-stagger].in > * { opacity:1; transform:none; }

/* hero line reveal (slide-up, no clipping) */
.reveal-lines .line { display:block; }
.reveal-lines .line > span { display:block; transform: translateY(24%); opacity:0; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.reveal-lines.in .line > span { transform: translateY(0); opacity:1; }
.reveal-lines .line:nth-child(2) > span { transition-delay:.05s; }
.reveal-lines .line:nth-child(3) > span { transition-delay:.1s; }
.reveal-lines .line:nth-child(4) > span { transition-delay:.15s; }

.float-anim { animation: floaty 6s ease-in-out infinite; }
.float-anim.d1 { animation-delay: -1.5s; }
.float-anim.d2 { animation-delay: -3s; }
.float-anim.d3 { animation-delay: -4.5s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px);} }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal],
  [data-reveal-stagger] > *,
  .reveal-lines .line > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track,
  .float-anim {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .audience { grid-template-columns: repeat(4, 1fr); }
  .coming-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(5,1fr); }
}
@media (max-width: 900px) {
  .nav-links { display:none; }
  .nav-toggle { display:block; }
  .hero-grid, .faq-hero-grid, .ben-hero-grid, .download-grid { grid-template-columns: 1fr; }
  .phone-stage { margin-top: 10px; }
  .grid-3, .testi-grid { grid-template-columns: 1fr; }
  .grid-4, .ben-features { grid-template-columns: repeat(2,1fr); }
  .faq-cats { grid-template-columns: 1fr; }
  .support-box { grid-template-columns: 1fr; }
  .support-stats { border-left:none; padding-left:0; border-top:1px solid var(--line-2); padding-top:20px; flex-wrap:wrap; }
  .compare .c-row div, .compare .c-head div { padding:14px 16px; }
  .cta-band, .cta-light { grid-template-columns: 1fr; text-align:center; }
  .cta-stores { align-items:center; }
  .cta-phones { justify-content:center; }
  .audience { grid-template-columns: repeat(4,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap:24px 10px; }
  .stat { border-right:none; }
  .flow-arrow { display:none; }
  .steps::before { display:none; }
  .float-card { display:none; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-4, .ben-features, .audience, .coming-grid { grid-template-columns: 1fr 1fr; }
  .waitlist, .cta-band, .cta-light, .stats-banner, .support-box { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { width:100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
}
