/* ═══════════════════════════════════════════════════════════════════
   Wé — Premium Website  ·  Moniepoint-Inspired Design System
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────── Design Tokens ─────────────────────────── */
:root {
  --navy:       #001233;
  --navy-light: #001D4A;
  --navy-mid:   #002855;
  --ink:        #0A1628;
  --ink-2:      #111827;
  --text:       #4B5563;
  --text-light: #6B7280;
  --muted:      #9CA3AF;
  --faint:      #D1D5DB;
  --accent:     #E94560;
  --accent-2:   #D33350;
  --accent-soft:#FCE9ED;
  --blue:       #0F3460;
  --blue-bright:#3B82F6;
  --green:      #10B981;
  --green-soft: #D1FAE5;
  --amber:      #F59E0B;
  --purple:     #7C3AED;
  --bg:         #FFFFFF;
  --bg-soft:    #F8FAFC;
  --bg-warm:    #FFFBF5;
  --line:       #E5E7EB;
  --line-soft:  #F3F4F6;
  --card:       #FFFFFF;
  --shadow-xs:  0 1px 2px rgba(0,18,51,.04);
  --shadow-sm:  0 1px 3px rgba(0,18,51,.06), 0 1px 2px rgba(0,18,51,.04);
  --shadow:     0 10px 30px rgba(0,18,51,.08), 0 2px 8px rgba(0,18,51,.04);
  --shadow-lg:  0 24px 50px rgba(0,18,51,.14);
  --shadow-xl:  0 32px 64px rgba(0,18,51,.18);
  --radius-sm:  12px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --maxw:       1200px;
  --ff-display: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  --ff:         'Inter', 'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', ui-monospace, monospace;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

/* ─────────────────────────── Reset ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
em { font-style: normal; color: var(--accent); }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--ff-display); letter-spacing: -0.02em; line-height: 1.12; }
section { position: relative; }

/* ─────────────────────────── Utilities ─────────────────────────── */
.pad { padding: 100px 0; }
.pad-sm { padding: 72px 0; }
.soft { background: var(--bg-soft); }

/* ─────────────────────────── Buttons ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px; border-radius: 999px;
  font-family: var(--ff); font-size: 15px; font-weight: 600; cursor: pointer;
  border: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.15), transparent); opacity: 0; transition: opacity .2s; }
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(233,69,96,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(233,69,96,.5); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--faint); }
.btn-ink { background: var(--navy); color: #fff; }
.btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { height: 42px; padding: 0 20px; font-size: 14px; }

/* ─────────────────────────── Eyebrow ─────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff); font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233,69,96,.08); border: 1px solid rgba(233,69,96,.15);
  color: var(--accent); padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; margin: 16px 0 16px; }
.section-head p { font-size: 17px; color: var(--text-light); line-height: 1.7; }

/* ─────────────────────────── Nav ─────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(0,18,51,.95); backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px); box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.nav-bar { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 800; font-size: 26px; color: #fff; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(233,69,96,.25); }
.brand-logo { width: 26px; height: 26px; border-radius: 7px; display: block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a { padding: 8px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.75); transition: background .18s, color .18s; }
.nav-links > a:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-links > a.cta {
  background: var(--accent); color: #fff; padding: 10px 22px; font-weight: 600;
  margin-left: 8px; box-shadow: 0 4px 14px -4px rgba(233,69,96,.5);
}
.nav-links > a.cta:hover { background: var(--accent-2); }
.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; overflow: hidden; margin-left: 10px; background: rgba(255,255,255,.06); }
.lang-toggle button { width: 40px; height: 34px; border: none; background: transparent; color: rgba(255,255,255,.6); font-family: var(--ff); font-size: 12px; font-weight: 700; cursor: pointer; transition: background .15s, color .15s; }
.lang-toggle button.active { background: #fff; color: var(--navy); }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; color: #fff; cursor: pointer; }

/* ─────────────────────────── Mobile Drawer ─────────────────────────── */
.menu-backdrop { position: fixed; inset: 0; background: rgba(0,18,51,.6); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 110; backdrop-filter: blur(4px); }
.menu-backdrop.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; width: min(86vw, 360px); height: 100dvh; background: #fff; z-index: 120; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: var(--shadow-xl); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.drawer-head .brand { color: var(--navy); }
.drawer-close { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; color: var(--ink); cursor: pointer; }
.drawer-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drawer-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 14px; border-radius: 12px; font-size: 17px; font-weight: 600; color: var(--ink); transition: background .15s; }
.drawer-link:hover { background: var(--bg-soft); }
.drawer-link i { color: var(--muted); }
.drawer-lang { align-self: flex-start; margin: 12px 0 4px 4px; }
.drawer-lang .lang-toggle { background: var(--bg-soft); border-color: var(--line); }
.drawer-lang .lang-toggle button { color: var(--text-light); }
.drawer-lang .lang-toggle button.active { background: var(--navy); color: #fff; }
.drawer-cta { margin-top: 10px; display: flex; align-items: center; justify-content: center; height: 52px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 600; font-size: 16px; }
.drawer-foot { padding: 18px 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.drawer-foot .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
body.menu-open { overflow: hidden; }

/* ─────────────────────────── Hero ─────────────────────────── */
.hero { background: var(--navy); padding: 140px 0 0; overflow: hidden; position: relative; }
.hero::before, .hero::after { display: none; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-left { padding-bottom: 100px; }
.hero-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(38px, 5.6vw, 64px); line-height: 1.06; color: #fff; }
.hero-title .accent { color: #FF7088; }
.hero-sub { margin-top: 24px; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.65); max-width: 500px; }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }
.store-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 10px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); color: #fff; transition: transform .18s, background .18s, border-color .18s; }
.store-badge:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.store-badge i { color: #fff; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge-small { font-size: 10.5px; color: rgba(255,255,255,.55); }
.store-badge-large { font-size: 15px; font-weight: 700; }
.hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.t-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.7); }
.t-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* Hero right visual */
.hero-right { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-img { width: 100%; max-width: 520px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; object-fit: cover; }
.hero-glow { display: none; }

/* Hero phone mockup */
.phone { position: relative; width: 280px; border-radius: 38px; background: #fff; border: 1px solid rgba(255,255,255,.15); padding: 10px; box-shadow: 0 32px 64px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.05); }
.phone-screen { background: var(--bg-soft); border-radius: 30px; padding: 12px 12px 0; overflow: hidden; }
.ps-status { display: flex; align-items: center; justify-content: space-between; font-family: var(--ff-mono); font-size: 11px; color: var(--ink-2); padding: 2px 4px 10px; }
.ps-sig { display: inline-flex; align-items: center; gap: 5px; }
.ps-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ps-store { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink); }
.ps-shop { width: 22px; height: 22px; border-radius: 7px; background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.ps-chev { color: var(--muted); }
.ps-badge { font-size: 9px; font-weight: 800; letter-spacing: .08em; color: var(--accent); background: var(--accent-soft); padding: 3px 7px; border-radius: 6px; }
.ps-actions { margin-left: auto; display: inline-flex; gap: 8px; color: var(--text-light); }
.ps-revenue { background: var(--navy); border-radius: 16px; padding: 16px; color: #fff; }
.ps-rev-label { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: rgba(255,255,255,.65); }
.ps-tr { color: var(--green); display: inline-flex; }
.ps-rev-value { font-family: var(--ff-mono); font-size: 26px; font-weight: 500; margin: 6px 0 14px; letter-spacing: -.02em; }
.ps-cur { font-size: 13px; color: rgba(255,255,255,.5); margin-right: 4px; }
.ps-rev-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.ps-rev-stats .l { font-size: 10px; color: rgba(255,255,255,.5); }
.ps-rev-stats .v { font-family: var(--ff-mono); font-size: 13px; margin-top: 3px; }
.ps-rev-stats .v.green { color: #4ade80; }
.ps-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.ps-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.ps-ico { width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.ps-ico.coral { background: var(--accent-soft); color: var(--accent); }
.ps-ico.gold { background: #FEF3E2; color: var(--amber); }
.ps-ico.blue { background: #E7EEF7; color: var(--blue); }
.ps-ico.green { background: var(--green-soft); color: var(--green); }
.ps-ico.purple { background: #EEE9FB; color: var(--purple); }
.ps-card .l { font-size: 10px; color: var(--text-light); margin-top: 7px; }
.ps-card .v { font-family: var(--ff-mono); font-size: 13px; color: var(--ink); margin-top: 2px; }
.ps-nav { display: flex; align-items: flex-end; justify-content: space-between; margin: 14px -12px 0; padding: 8px 20px 12px; border-top: 1px solid var(--line); background: #fff; }
.ps-tab { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; color: var(--muted); }
.ps-tab.active { color: var(--accent); }
.ps-tab.center { position: relative; }
.ps-pos { width: 40px; height: 40px; border-radius: 14px; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-top: -20px; box-shadow: 0 6px 16px -4px rgba(233,69,96,.6); }
.phone-floating { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px 13px; box-shadow: var(--shadow); width: 165px; z-index: 2; }
.phone-fab-1 { top: 50px; left: -30px; animation: floaty 5s ease-in-out infinite; }
.phone-fab-2 { bottom: 70px; right: -24px; animation: floaty 5s ease-in-out infinite .8s; }
.phone-fab-label { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--text-light); }
.phone-fab-label .ldot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.phone-fab-title { font-size: 12px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.phone-fab-sub { font-family: var(--ff-mono); font-size: 12px; color: var(--green); margin-top: 2px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 72px; display: block; pointer-events: none; }

/* ─────────────────────────── Stats ─────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat { text-align: center; padding: 36px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat .num { font-family: var(--ff-mono); font-size: 44px; font-weight: 500; color: var(--navy); letter-spacing: -.03em; }
.stat .num .unit { color: var(--accent); }
.stat .label { margin-top: 8px; font-size: 14.5px; color: var(--text-light); font-weight: 500; }

/* ─────────────────────────── Bento Value Grid ─────────────────────────── */
.bento-section { background: var(--bg-soft); }
.bento-header { margin-bottom: 56px; }
.bento-header h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; }
.bento-header h2 em { color: var(--accent); }
.bento-header p { margin-top: 16px; font-size: 17px; color: var(--text-light); max-width: 480px; }
.bento-header .btn { margin-top: 28px; }
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bento-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s, box-shadow .25s; position: relative;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card-img { width: 100%; height: 220px; object-fit: cover; background: var(--bg-soft); }
.bento-card-body { padding: 28px; }
.bento-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.bento-card p { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* ─────────────────────────── Problem ─────────────────────────── */
.problem-section { background: var(--navy); color: #fff; }
.problem-section .section-head h2 { color: #fff; }
.problem-section .section-head p { color: rgba(255,255,255,.6); }
.problem-section .eyebrow { color: #FF8DA1; }
.problem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.problem-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px 22px; transition: transform .2s, background .2s;
}
.problem-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.p-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(233,69,96,.15); color: #FF8DA1; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.p-title { font-family: var(--ff); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.p-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ─────────────────────────── Features ─────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-img { width: 100%; height: 180px; object-fit: cover; background: var(--bg-soft); }
.feature-body { padding: 24px; }
.f-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.f-title { font-family: var(--ff-display); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.f-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.feature.wide { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.feature.wide .feature-img { height: 100%; min-height: 200px; }
.feature.wide .feature-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.feature.wide .f-title { font-size: 22px; }
.feature.wide .f-desc { font-size: 15px; }
.feature.wide .f-desc strong { color: var(--accent); }

/* ─────────────────────────── How It Works ─────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { position: relative; padding: 36px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .2s, box-shadow .2s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { font-family: var(--ff-mono); font-size: 14px; font-weight: 500; color: #fff; background: var(--accent); width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step-title { font-family: var(--ff-display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-desc { font-size: 14.5px; color: var(--text-light); line-height: 1.65; }

/* ─────────────────────────── Built For (Showcase) ─────────────────────────── */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.showcase-left h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; line-height: 1.1; margin: 16px 0 24px; }
.showcase .body p { font-size: 16px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.showcase .body p:last-child { color: var(--ink); font-weight: 600; }
.dash-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-lg); }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-head-label { font-size: 14px; font-weight: 700; color: var(--ink); }
.dash-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 5px 11px; border-radius: 999px; }
.dash-pill .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.dash-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dash-stat { background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 14px; padding: 14px 16px; }
.dash-stat .l { font-size: 12px; color: var(--text-light); }
.dash-stat .v { font-family: var(--ff-mono); font-size: 20px; font-weight: 500; color: var(--ink); margin-top: 4px; }
.dash-stat .v .unit { font-size: 12px; color: var(--text-light); margin-right: 3px; }
.chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; padding: 0 2px; }
.chart .bar { flex: 1; background: var(--line); border-radius: 6px 6px 0 0; transition: height .8s cubic-bezier(.4,0,.2,1); }
.chart .bar.today { background: var(--accent); }
.chart-labels { display: flex; gap: 8px; margin-top: 8px; }
.chart-labels span { flex: 1; text-align: center; font-size: 10px; color: var(--muted); font-family: var(--ff-mono); }
.dash-footer { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--text-light); background: var(--bg-soft); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }
.chip .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip.green { color: var(--green); } .chip.amber { color: var(--amber); }

/* ─────────────────────────── Testimonials ─────────────────────────── */
.quote { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.quote blockquote { font-family: var(--ff-display); font-size: clamp(22px, 3vw, 30px); font-weight: 600; line-height: 1.45; color: var(--ink); }
.quote blockquote em { color: var(--accent); }
.who { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--ff-display); font-size: 18px; }
.who-meta { text-align: left; display: flex; flex-direction: column; }
.who-meta strong { font-size: 14px; color: var(--ink); }
.who-meta span { font-size: 12.5px; color: var(--text-light); }
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { display: inline-flex; gap: 3px; color: var(--amber); margin-bottom: 14px; }
.tcard p { font-size: 15px; color: var(--text); margin-bottom: 18px; line-height: 1.7; }
.tcard .who { margin-top: 0; display: flex; }

/* ─────────────────────────── FAQ ─────────────────────────── */
.faq-wrap { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; font-family: var(--ff); font-size: 16px; font-weight: 600; color: var(--ink); text-align: left; transition: color .15s; }
.faq-q .faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px; background: var(--bg-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; transition: transform .25s, background .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ─────────────────────────── CTA Band ─────────────────────────── */
.cta-band { background: var(--navy); border-radius: var(--radius-xl); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { display: none; }
.cta-band .eyebrow { color: #FF8DA1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4.2vw, 48px); font-weight: 800; margin: 16px 0 14px; position: relative; }
.cta-band h2 em { color: var(--accent); }
.cta-band p { color: rgba(255,255,255,.6); font-size: 17px; max-width: 500px; margin: 0 auto; position: relative; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; position: relative; }
.cta-band .store-badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #fff; }
.cta-band .store-badge i { color: #fff; }
.cta-band .store-badge-small { color: rgba(255,255,255,.5); }
.cta-band .store-badge:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.cta-fineprint { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.45); position: relative; }

/* ─────────────────────────── Footer ─────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; color: #fff; }
.footer-brand .tagline { font-size: 14px; color: rgba(255,255,255,.5); max-width: 300px; margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; transition: transform .15s, color .15s, background .15s; }
.footer-social a:hover { transform: translateY(-2px); color: #fff; background: rgba(255,255,255,.12); }
.footer-col h4 { font-family: var(--ff); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.35); }

/* ─────────────────────────── Reveals ─────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.hero-enter { opacity: 0; transform: translateY(22px); animation: heroIn .85s cubic-bezier(.16,1,.3,1) forwards; animation-delay: var(--hd, 0s); }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ─────────────────────────── Responsive ─────────────────────────── */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 120px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { text-align: center; padding-bottom: 40px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .store-row, .hero-trust { justify-content: center; }
  .hero-right { justify-content: center; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .bento-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature.wide { grid-column: span 2; grid-template-columns: 1fr; }
  .feature.wide .feature-img { height: 200px; min-height: 0; }
  .tcards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .pad { padding: 72px 0; }
  .pad-sm { padding: 48px 0; }
  .stats-row { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .feature.wide { grid-column: span 1; grid-template-columns: 1fr; }
  .feature.wide .feature-img { height: 180px; min-height: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 56px 20px; border-radius: var(--radius-lg); }
  .phone { width: 250px; }
  .phone-fab-1 { left: -6px; } .phone-fab-2 { right: -4px; }
  .bento-card-img { height: 180px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-enter { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .phone-floating { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Quick actions in phone mockup */
.ps-worth { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; margin-top: 8px; }
.ps-worth .ps-ico { background: var(--bg-soft); color: var(--ink); }
.ps-wt { font-size: 12px; font-weight: 700; color: var(--ink); }
.ps-ws { font-size: 9px; color: var(--text-light); }
.ps-arrow { margin-left: auto; color: var(--muted); }
.ps-quick-label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin: 12px 2px 6px; }
.ps-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ps-qa { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 9px; font-size: 11px; font-weight: 600; color: var(--ink); }
.ps-qa .ps-ico { width: 22px; height: 22px; border-radius: 6px; }
