/* ==========================================================================
   Fevault — shared site styles
   Visual language: iOS-native, light, soft surfaces, blue-gradient accent
   ========================================================================== */

:root {
  /* Brand — derived from the logo gradient (Fehu rune) */
  --blue-100: #eaf3ff;
  --blue-300: #7cc1ff;
  --blue-400: #4da3ff;
  --blue-500: #1e84ff;
  --blue-600: #0a6cf0;
  --blue-700: #0a57c2;
  --grad-blue: linear-gradient(150deg, #5cc1ff 0%, #2b8bff 42%, #1f5fe6 100%);
  --grad-blue-soft: linear-gradient(150deg, #eef6ff 0%, #e6effe 100%);

  /* Finance accents (from app) */
  --green: #1faa6a;
  --green-soft: #e7f6ee;
  --red: #e5484d;
  --red-soft: #fdeced;
  --amber: #e8a13a;

  /* Neutrals */
  --ink: #0c0f16;
  --ink-2: #2b2f38;
  --muted: #6a7180;
  --muted-2: #9aa0ac;
  --line: #e9ebf0;
  --line-2: #eef0f4;

  /* Surfaces */
  --bg: #f4f5f8;
  --bg-2: #eef0f5;
  --card: #ffffff;
  --card-tint: #fbfcfe;

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadows — layered, soft */
  --sh-1: 0 1px 2px rgba(13, 23, 45, 0.05);
  --sh-2: 0 2px 6px rgba(13, 23, 45, 0.05), 0 14px 34px rgba(13, 23, 45, 0.06);
  --sh-3: 0 4px 12px rgba(13, 23, 45, 0.07), 0 28px 64px rgba(13, 23, 45, 0.10);
  --sh-blue: 0 10px 30px rgba(31, 95, 230, 0.30);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    system-ui, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
img { max-width: 100%; display: block; }
picture { display: block; }

:focus-visible {
  outline: 3px solid rgba(77, 163, 255, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: var(--gut);
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-2);
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; letter-spacing: 0; line-height: 1.08; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0;
  text-transform: uppercase; color: var(--blue-600);
}
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--muted); line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  padding: 13px 22px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { color: #fff; box-shadow: 0 14px 36px rgba(31, 95, 230, 0.40); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: var(--sh-1); border: 1px solid var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: var(--blue-300); }

/* App Store style "coming soon" badge */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-radius: 15px;
  padding: 11px 20px 11px 16px; box-shadow: var(--sh-2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-badge:hover { color: #fff; transform: translateY(-1px); box-shadow: var(--sh-3); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-small { font-size: 0.66rem; letter-spacing: 0; opacity: 0.72; line-height: 1.2; }
.store-badge .sb-big { font-size: 1.15rem; font-weight: 600; letter-spacing: 0; line-height: 1.15; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(244, 245, 248, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-inner { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.12rem; letter-spacing: 0; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--sh-1); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: var(--r-pill); color: var(--ink-2); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { background: rgba(10, 108, 240, 0.08); color: var(--blue-700); }
.nav-cta { margin-left: 6px; }
.nav-burger { display: none; }

/* Language switcher */
.lang { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px; box-shadow: var(--sh-1); }
.lang a { padding: 5px 11px; border-radius: var(--r-pill); font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.lang a:hover { color: var(--blue-700); background: var(--blue-100); }
.lang a.active { background: var(--grad-blue); color: #fff; }
.lang a.active:hover { color: #fff; }
.nav .lang { margin-left: 14px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav .lang { margin-left: auto; }
  .nav-cta { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); margin-top: 80px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px 64px; padding: 56px 0 40px; }
.footer-brand { max-width: 300px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0; color: var(--muted-2); margin-bottom: 14px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; color: var(--ink-2); font-size: 0.95rem; }
.footer-col a:hover { color: var(--blue-600); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding: 22px 0 40px; border-top: 1px solid var(--line-2); color: var(--muted-2); font-size: 0.86rem; }

/* ---------- Generic cards ---------- */
.card { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-2); border: 1px solid rgba(0,0,0,0.02); }

/* ---------- Section helpers ---------- */
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-head { max-width: 640px; }
.section-head .lead { margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Phone frame ---------- */
.phone {
  position: relative; border-radius: 44px; background: #0c0f16;
  padding: 9px; box-shadow: var(--sh-3);
  width: 100%;
}
.phone::after { /* side button hint */
  content: ""; position: absolute; right: -2px; top: 130px; width: 3px; height: 64px;
  background: #1c2230; border-radius: 3px;
}
.phone img { border-radius: 36px; width: 100%; height: auto; display: block; }

/* ---------- Legal / doc pages ---------- */
.doc { background: var(--bg); }
.doc-hero { padding: 56px 0 30px; }
.doc-hero .eyebrow { margin-bottom: 14px; }
.doc-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.doc-hero .meta { margin-top: 14px; color: var(--muted); font-size: 0.95rem; }
.doc-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 56px; align-items: start; padding-bottom: 40px; }
.toc { position: sticky; top: 90px; }
.toc-title { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0; color: var(--muted-2); font-weight: 600; margin-bottom: 12px; }
.toc a { display: block; padding: 7px 12px; border-radius: 10px; color: var(--ink-2); font-size: 0.9rem; line-height: 1.35; border-left: 2px solid transparent; }
.toc a:hover { background: #fff; color: var(--blue-700); }
.doc-body { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: clamp(28px, 5vw, 56px); max-width: 760px; }
.doc-body section { scroll-margin-top: 90px; }
.doc-body section + section { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line-2); }
.doc-body h2 { font-size: 1.5rem; letter-spacing: 0; margin-bottom: 14px; }
.doc-body h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.doc-body p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.68; }
.doc-body ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.doc-body li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-2); line-height: 1.6; }
.doc-body li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-400); }
.doc-body a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.callout {
  background: var(--grad-blue-soft); border: 1px solid #dcebff; border-radius: var(--r-md);
  padding: 18px 20px; margin: 0 0 26px; display: flex; gap: 14px; align-items: flex-start;
}
.callout svg { flex: none; width: 22px; height: 22px; color: var(--blue-600); margin-top: 1px; }
.callout p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }
.placeholder-note {
  background: #fff7e8; border: 1px solid #f3dca6; color: #8a5a14;
  border-radius: var(--r-sm); padding: 4px 10px; font-size: 0.8rem; font-weight: 600;
  display: inline-block;
}

@media (max-width: 860px) {
  .doc-layout { grid-template-columns: 1fr; gap: 24px; }
  .toc { display: none; }
}

/* ==========================================================================
   FINTECH LANDING SYSTEM  (scoped to body.landing)
   ========================================================================== */
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; letter-spacing: 0; }

/* Reveal-on-scroll — only hides when JS is present (.js on <html>) */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.08s; }
.js .reveal.d2 { transition-delay: 0.16s; }
.js .reveal.d3 { transition-delay: 0.24s; }
.js .hero .reveal { opacity: 1 !important; transform: none !important; }
.reveal-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---- Nav over dark hero ---- */
body.landing .nav { position: fixed; left: 0; right: 0; background: transparent; border-bottom: 1px solid transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease; }
body.landing { padding-top: 0; }
body.landing .nav .brand { color: #fff; }
body.landing .nav-links a { color: rgba(255,255,255,0.82); }
body.landing .nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; }
body.landing .nav .lang { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
body.landing .nav .lang a { color: rgba(255,255,255,0.78); }
body.landing .nav .lang a:hover { background: rgba(255,255,255,0.16); color: #fff; }
body.landing .nav .mark { box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
body.landing .nav.scrolled { background: rgba(247,248,251,0.82); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom-color: rgba(0,0,0,0.06); }
body.landing .nav.scrolled .brand { color: var(--ink); }
body.landing .nav.scrolled .nav-links a { color: var(--ink-2); }
body.landing .nav.scrolled .nav-links a:hover { background: rgba(10,108,240,0.08); color: var(--blue-700); }
body.landing .nav.scrolled .lang { background: #fff; border-color: var(--line); }
body.landing .nav.scrolled .lang a { color: var(--muted); }
body.landing .nav.scrolled .lang a.active { color: #fff; }

/* ---- Hero (dark) ---- */
.hero { position: relative; overflow: hidden; background: #070b18; color: #fff; padding: 150px 0 96px; isolation: isolate; }
.hero-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(46% 50% at 72% 8%, rgba(58,140,255,0.42), transparent 70%),
    radial-gradient(40% 46% at 12% 0%, rgba(92,193,255,0.26), transparent 70%),
    radial-gradient(60% 60% at 50% 120%, rgba(31,95,230,0.30), transparent 70%);
}
.hero-grid-lines { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 58px 58px; mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%); -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
}
.hero-inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-copy { position: relative; z-index: 4; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.5rem); line-height: 1.04; letter-spacing: 0; margin-bottom: 22px; }
.hero h1 .accent { background: linear-gradient(120deg, #8fd0ff 0%, #4da3ff 55%, #2b8bff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { color: rgba(255,255,255,0.74); max-width: 540px; font-size: clamp(1.06rem, 1.7vw, 1.28rem); }
.eyebrow--onDark { color: #7cc1ff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero .btn-ghost { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.3); color: #fff; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.gchip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); color: rgba(255,255,255,0.86); font-size: 0.86rem; font-weight: 500;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.gchip svg { width: 15px; height: 15px; color: #6ee7a8; }

/* hero art */
.hero-art { position: relative; z-index: 3; display: flex; justify-content: center; }
.hero-art .phone { max-width: 326px; transform: rotate(2.2deg); background: #0c0f16; }
.hero-phone-glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(58,140,255,0.55), transparent 65%); filter: blur(30px); z-index: -1; top: 40%; left: 50%; transform: translate(-50%,-50%); }
.glass-stat { position: absolute; z-index: 3; padding: 14px 16px; border-radius: 18px;
  background: rgba(20,26,42,0.62); border: 1px solid rgba(255,255,255,0.16); color: #fff;
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35); display: flex; align-items: center; gap: 12px; }
.glass-stat .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.glass-stat .t { font-size: 0.74rem; color: rgba(255,255,255,0.62); line-height: 1.2; }
.glass-stat .v { font-weight: 700; font-size: 1.02rem; }
.gs-1 { top: 44px; left: -22px; }
.gs-2 { bottom: 70px; right: -26px; }

/* ---- trust strip (light) ---- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; padding: 0; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 16px; font-size: 0.9rem; font-weight: 500; color: var(--ink-2); box-shadow: var(--sh-1); }
.chip svg { width: 16px; height: 16px; color: var(--green); }

/* ---- bento features ---- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bcard { background: var(--card); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-2); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.22s ease, box-shadow 0.22s ease; position: relative; overflow: hidden; }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.bcard .ficon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: var(--blue-100); color: var(--blue-600); }
.bcard .ficon svg { width: 23px; height: 23px; }
.bcard h3 { margin-bottom: 7px; }
.bcard p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.b-a { grid-column: span 7; }
.b-b { grid-column: span 5; }
.b-c { grid-column: span 4; }
.b-d { grid-column: span 4; }
.b-e { grid-column: span 4; }
.b-f { grid-column: span 6; }
.b-g { grid-column: span 6; }
/* dark feature tile */
.bcard.dark { background: #0c1322; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.bcard.dark::before { content: ""; position: absolute; right: -90px; top: -90px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(58,140,255,0.4), transparent 65%); }
.bcard.dark > * { position: relative; z-index: 1; }
.bcard.dark h3 { color: #fff; font-size: 1.55rem; }
.bcard.dark p { color: rgba(255,255,255,0.68); font-size: 1.02rem; max-width: 460px; }
.bcard.dark .ficon { background: rgba(255,255,255,0.12); color: #7cc1ff; }
.modes { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.mode-pill { font-size: 0.84rem; font-weight: 600; padding: 8px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #cfe3ff; }

@media (max-width: 920px) {
  .b-a, .b-b, .b-c, .b-d, .b-e, .b-f, .b-g { grid-column: span 6; }
}
@media (max-width: 760px) {
  .hero { padding: 112px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.1rem); line-height: 1.08; }
  .hero .lead { font-size: 1.02rem; }
  .hero-cta { margin-top: 26px; }
  .hero-meta { margin-top: 22px; }
  .hero-art { margin-top: 22px; }
  .hero-art .phone { max-width: min(238px, 70vw); transform: none; }
  .glass-stat { padding: 10px 12px; border-radius: 15px; gap: 9px; }
  .glass-stat .ic { width: 32px; height: 32px; border-radius: 9px; }
  .glass-stat .t { font-size: 0.68rem; }
  .glass-stat .v { font-size: 0.9rem; }
  .gs-1 { left: 2px; top: 26px; }
  .gs-2 { right: 2px; bottom: 46px; }
  .bento { grid-template-columns: 1fr; }
  .b-a, .b-b, .b-c, .b-d, .b-e, .b-f, .b-g { grid-column: span 1; }
}

/* ---- gallery ---- */
.gallery { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 8px 4px 22px; scroll-snap-type: x mandatory; }
.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-thumb { background: #d7dae1; border-radius: 8px; }
.shot { flex: 0 0 auto; width: 248px; scroll-snap-align: center; margin: 0; }
.shot .phone { width: 248px; }
.shot .cap { text-align: center; margin-top: 14px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* ---- privacy band ---- */
.privacy-card { position: relative; background: #0a0f1c; color: #fff; border-radius: var(--r-xl); padding: clamp(32px, 5vw, 62px); overflow: hidden; box-shadow: var(--sh-3); }
.privacy-card::before { content: ""; position: absolute; right: -120px; top: -120px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(58,140,255,0.4), transparent 65%); }
.privacy-card .inner { position: relative; z-index: 1; }
.privacy-card h2 { color: #fff; max-width: 680px; }
.privacy-card .lead { color: rgba(255,255,255,0.74); margin: 18px 0 32px; max-width: 620px; }
.priv-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 36px; margin-bottom: 36px; }
.priv-item { display: flex; gap: 13px; align-items: flex-start; }
.priv-item svg { width: 22px; height: 22px; color: #7cc1ff; flex: none; margin-top: 2px; }
.priv-item b { display: block; font-weight: 600; font-size: 1rem; }
.priv-item span { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.5; }
.btn-onlight { background: #fff; color: var(--ink); }
.btn-onlight:hover { color: var(--ink); background: #eef1f6; }

/* ---- faq ---- */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 26px; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.faq-item a { font-weight: 500; }

/* ---- cta ---- */
.cta-band { text-align: center; }
.cta-inner { background: var(--grad-blue); border-radius: var(--r-xl); padding: clamp(40px, 6vw, 76px) 28px; box-shadow: var(--sh-blue); position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -20%, rgba(255,255,255,0.3), transparent 60%); }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.85); margin: 14px auto 28px; max-width: 540px; font-size: 1.08rem; }
.cta-inner .store-badge { background: #fff; color: var(--ink); }
.cta-inner .store-badge:hover { color: var(--ink); }

@media (max-width: 760px) {
  .priv-list { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
