/* =========================================================
   DOCULY — Landing Page
   Tasarım sistemi: temiz / aydınlık / mavi-vurgulu.
   Beyaz kartlar + lavanta-gri zemin, tek canlı vurgu = mavi.
   Nunito (SF Pro Rounded web eşi)
   Kaynak tokenlar: DoculyApp/src/theme/colors.ts (light)
   ========================================================= */

:root {
  /* backgrounds — lavanta-gri zemin */
  --bg1: #F4F6F8;
  --bg2: #EEF1F5;
  --bg3: #E4E8EE;
  /* surfaces — beyaz kartlar */
  --paper: #FFFFFF;
  --paper2: #F8FAFC;
  /* ink */
  --ink: #0F1013;
  --ink-soft: #6B7280;
  --ink-faint: #9CA3AF;
  /* accent — primary mavi */
  --accent: #206EEA;
  --accent-deep: #1A57C0;
  --accent-light: #3885F3;
  --tint: #E8F0FE;
  /* status */
  --success: #00C37E;
  --amber: #FBC04A;
  /* lines */
  --line: #E4E8EE;
  --line-soft: #EEF1F5;

  /* radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* shadows (cool, soft) */
  --sh-soft: 0 6px 18px rgba(15, 16, 19, 0.06);
  --sh-card: 0 18px 44px -14px rgba(15, 16, 19, 0.16);
  --sh-accent: 0 10px 24px rgba(32, 110, 234, 0.32);
  --sh-phone: 0 44px 96px -32px rgba(20, 40, 80, 0.4);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, 'SF Pro Rounded', 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg1);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--tint); color: var(--accent-deep); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: 'Nunito', -apple-system, 'SF Pro Rounded', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
em { font-style: normal; color: var(--accent); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo {
  width: 40px; height: 40px; border-radius: 11px; object-fit: cover;
  box-shadow: 0 6px 16px rgba(32, 110, 234, 0.3), inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand__name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.03em; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: 15.5px; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { color: var(--ink) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   BUTTONS / BADGES
   ========================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 16px;
  padding: 13px 22px; border-radius: var(--r-pill); cursor: pointer; border: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.btn--ghost { background: var(--paper); border: 1px solid var(--line); box-shadow: var(--sh-soft); }
.btn--ghost:hover { background: var(--paper); transform: translateY(-1px); box-shadow: var(--sh-card); }

.badge-store {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 11px 20px 11px 17px; border-radius: 15px;
  box-shadow: var(--sh-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.badge-store:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(15,16,19,.4); }
.badge-store svg { width: 26px; height: 26px; fill: #fff; }
.badge-store span { display: flex; flex-direction: column; line-height: 1.05; }
.badge-store small { font-size: 10.5px; opacity: .8; font-weight: 500; letter-spacing: .02em; }
.badge-store strong { font-size: 17px; font-weight: 800; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 150px 0 90px; background: linear-gradient(180deg, var(--paper) 0%, var(--bg1) 55%, var(--bg2) 100%); overflow: hidden; }
.hero__glow {
  position: absolute; top: -10%; right: -5%; width: 720px; height: 720px; pointer-events: none;
  background: radial-gradient(circle, rgba(56,133,243,.28) 0%, rgba(32,110,234,.12) 38%, transparent 68%);
  filter: blur(20px);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line);
  padding: 7px 15px 7px 12px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--sh-soft); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(0,195,126,.18); }

.hero__title { font-size: clamp(40px, 6.2vw, 72px); margin: 22px 0 0; }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 34ch; margin: 22px 0 0; line-height: 1.55; }
.lock { white-space: nowrap; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__cta--center { justify-content: center; }

.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 30px; color: var(--ink-soft); font-size: 15px; }
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust strong { color: var(--ink); font-weight: 800; }
.stars { color: var(--amber); letter-spacing: 1px; }

/* device wrapper */
.hero__device { position: relative; display: flex; justify-content: center; }

/* =========================================================
   PHONE MOCKUP
   ========================================================= */
.phone {
  position: relative; width: 290px; aspect-ratio: 290 / 600;
  background: #0E1116; border-radius: 44px; padding: 11px;
  box-shadow: var(--sh-phone), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; background: #0E1116; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--bg2);
  padding: 46px 16px 18px; display: flex; flex-direction: column;
}
.phone--float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* floating chips around hero phone */
.chip { position: absolute; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 10px 16px; font-size: 13.5px; font-weight: 700; color: var(--ink); box-shadow: var(--sh-card); }
.chip--a { top: 10%; left: -8%; color: var(--success); animation: floaty 5s ease-in-out infinite; }
.chip--b { bottom: 13%; right: -6%; color: var(--accent); animation: floaty 7s ease-in-out infinite reverse; }

/* ---------- document (paper with lines) ---------- */
.doc { position: relative; background: var(--paper); border-radius: var(--r-md); padding: 18px 16px; box-shadow: var(--sh-soft); display: flex; flex-direction: column; gap: 9px; overflow: hidden; flex: 1; }
.doc__line { display: block; height: 8px; border-radius: 4px; background: linear-gradient(90deg, #DDE3EC, #EAEFF5); }
.doc__line.w90 { width: 90%; } .doc__line.w85 { width: 85%; } .doc__line.w80 { width: 80%; }
.doc__line.w75 { width: 75%; } .doc__line.w70 { width: 70%; } .doc__line.w65 { width: 65%; }
.doc__line.w60 { width: 60%; } .doc__line.w55 { width: 55%; } .doc__line.w50 { width: 50%; }
.doc__scanline { position: absolute; left: 0; right: 0; height: 38px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(32,110,234,.18) 45%, rgba(77,207,253,.5) 50%, rgba(32,110,234,.18) 55%, transparent);
  border-top: 1.5px solid rgba(77,207,253,.9);
  animation: scan 2.8s ease-in-out infinite; }
@keyframes scan { 0% { top: -10%; } 50% { top: 85%; } 100% { top: -10%; } }

/* ---------- scan-mark (CTA) ---------- */
.scan-mark { position: relative; width: 120px; height: 120px; margin: 0 auto 22px; border-radius: 26px;
  background: linear-gradient(150deg, var(--accent-light), var(--accent)); box-shadow: var(--sh-accent); overflow: hidden;
  display: grid; place-items: center; }
.scan-mark::before, .scan-mark::after { content: ""; position: absolute; width: 26px; height: 26px; border: 3px solid rgba(255,255,255,.9); }
.scan-mark::before { top: 22px; left: 22px; border-right: 0; border-bottom: 0; border-radius: 5px 0 0 0; }
.scan-mark::after { bottom: 22px; right: 22px; border-left: 0; border-top: 0; border-radius: 0 0 5px 0; }
.scan-mark__beam { position: absolute; left: 16px; right: 16px; height: 3px; background: #fff; border-radius: 3px; box-shadow: 0 0 14px 2px rgba(255,255,255,.8); animation: beam 2.4s ease-in-out infinite; }
@keyframes beam { 0% { top: 26px; } 50% { top: 90px; } 100% { top: 26px; } }

/* ---------- screen: result ---------- */
.screen-result { gap: 12px; }
.sr__head { display: flex; align-items: center; justify-content: space-between; }
.sr__title { font-weight: 800; font-size: 15px; color: var(--ink); }
.sr__badge { font-size: 10.5px; font-weight: 800; color: var(--success); background: rgba(0,195,126,.12); border-radius: var(--r-pill); padding: 4px 10px; }
.sr__meta { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: var(--ink-soft); font-weight: 600; }
.sr__mode { color: var(--accent); }
.sr__actions { display: flex; gap: 8px; align-items: stretch; }
.sr__btn { flex: 1; text-align: center; background: linear-gradient(180deg, var(--accent-light), var(--accent)); color: #fff; font-weight: 800; font-size: 13.5px; padding: 12px; border-radius: var(--r-pill); box-shadow: var(--sh-accent); }
.sr__icon { display: grid; place-items: center; width: 52px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); font-size: 11px; font-weight: 800; color: var(--ink-soft); }

/* ---------- screen: camera ---------- */
.screen-cam { background: #11151c; padding: 44px 14px 16px; gap: 12px; }
.cam__top { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700; }
.cam__auto { color: var(--amber); }
.cam__frame { position: relative; flex: 1; border-radius: var(--r-md); background: #1a2029; display: grid; place-items: center; }
.cam__corner { position: absolute; width: 22px; height: 22px; border: 3px solid var(--success); }
.cam__corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.cam__corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; border-radius: 0 4px 0 0; }
.cam__corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; border-radius: 0 0 0 4px; }
.cam__corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }
.cam__paper { width: 70%; background: #fff; border-radius: 6px; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 0 0 2px rgba(0,195,126,.6), 0 10px 24px rgba(0,0,0,.4); transform: rotate(-2deg); }
.cam__hint { color: rgba(255,255,255,.7); font-size: 11px; text-align: center; font-weight: 600; }
.cam__shutter { display: grid; place-items: center; }
.cam__shutter span { width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.3); }

/* ---------- screen: edit ---------- */
.screen-edit { gap: 11px; }
.se__head { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; font-weight: 700; color: var(--ink-soft); }
.se__title { color: var(--ink); font-weight: 800; }
.se__save { color: var(--accent); }
.se__preview { flex: 1; background: var(--paper); border-radius: var(--r-md); padding: 16px 14px; box-shadow: var(--sh-soft); display: flex; flex-direction: column; gap: 10px; }
.se__filters { display: flex; gap: 6px; }
.se__filters span { flex: 1; text-align: center; font-size: 10.5px; font-weight: 800; padding: 8px 4px; border-radius: var(--r-sm); background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft); }
.se__filters span.on { background: var(--tint); border-color: var(--accent); color: var(--accent); }
.se__tools { display: flex; justify-content: space-between; padding: 6px 4px 0; }
.se__tools span { font-size: 10.5px; font-weight: 700; color: var(--ink-soft); }

/* ---------- screen: ocr ---------- */
.screen-ocr { gap: 12px; }
.so__head { font-weight: 800; font-size: 16px; }
.so__split { flex: 1; display: flex; align-items: center; gap: 8px; }
.so__img { flex: 1; align-self: stretch; background: var(--paper); border-radius: var(--r-md); padding: 14px 10px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--sh-soft); }
.so__arrow { color: var(--accent); font-weight: 800; font-size: 18px; }
.so__text { flex: 1.2; align-self: stretch; background: var(--tint); border: 1px solid var(--accent); border-radius: var(--r-md); padding: 12px 11px; }
.so__text p { font-weight: 800; font-size: 12.5px; margin-bottom: 6px; color: var(--accent-deep); }
.so__text small { font-size: 10.5px; line-height: 1.4; color: var(--ink-soft); display: block; }
.so__cta { text-align: center; background: linear-gradient(180deg, var(--accent-light), var(--accent)); color: #fff; font-weight: 800; font-size: 13.5px; padding: 12px; border-radius: var(--r-pill); box-shadow: var(--sh-accent); }

/* ---------- screen: sign ---------- */
.screen-sign { gap: 14px; }
.ss__head { font-weight: 800; font-size: 16px; }
.ss__doc { position: relative; flex: 1; background: var(--paper); border-radius: var(--r-md); padding: 18px 16px; display: flex; flex-direction: column; gap: 11px; box-shadow: var(--sh-soft); }
.ss__signature { position: absolute; right: 18px; bottom: 18px; width: 100px; }
.ss__signature svg { width: 100%; }
.ss__btn { text-align: center; background: linear-gradient(180deg, var(--accent-light), var(--accent)); color: #fff; font-weight: 800; font-size: 14px; padding: 13px; border-radius: var(--r-pill); box-shadow: var(--sh-accent); }

.hero__wave { display: none; }

/* =========================================================
   STRIP
   ========================================================= */
.strip { background: var(--paper); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.strip__inner { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 26px 24px; flex-wrap: wrap; }
.strip__item { display: flex; flex-direction: column; align-items: center; min-width: 120px; }
.strip__item strong { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 28px; color: var(--accent); letter-spacing: -0.02em; }
.strip__item span { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.strip__sep { width: 1px; height: 34px; background: var(--line); }

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head--left { text-align: left; margin-left: 0; }
.kicker { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 48px); }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 18px; }

/* =========================================================
   FEATURES
   ========================================================= */
.features { padding: 96px 0; background: var(--bg1); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 44px 0; }
.feature--reverse .feature__text { order: 2; }
.feature__num { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; color: var(--accent-light); letter-spacing: .1em; }
.feature__text h3 { font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 16px; }
.feature__text p { color: var(--ink-soft); font-size: 18px; max-width: 44ch; }
.feature__media { display: flex; justify-content: center; }

.ticks { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 600; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--success); }
.ticks li::after { content: ""; position: absolute; left: 6.5px; top: 7px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* =========================================================
   HOW
   ========================================================= */
.how { padding: 96px 0; background: linear-gradient(180deg, var(--bg2), var(--bg1)); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 36px 28px; box-shadow: var(--sh-soft); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-card); }
.step__no { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900; color: #fff;
  background: linear-gradient(150deg, var(--accent-light), var(--accent)); box-shadow: var(--sh-accent); margin-bottom: 20px; }
.step h4 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 16.5px; }

/* =========================================================
   USE CASES (intents)
   ========================================================= */
.intents { padding: 90px 0; background: var(--bg1); }
.intents__cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.intents__cloud span { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 12px 22px; font-size: 16px; font-weight: 700; color: var(--ink); box-shadow: var(--sh-soft); transition: .25s var(--ease); }
.intents__cloud span:hover { background: var(--tint); border-color: var(--accent); color: var(--accent); transform: translateY(-3px) rotate(-1.5deg); }

/* =========================================================
   PRIVACY CALLOUT
   ========================================================= */
.privacy { padding: 30px 0 90px; background: var(--bg1); }
.privacy__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 56px 40px; overflow: hidden; box-shadow: var(--sh-card); }
.privacy__inner::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 460px; height: 460px; background: radial-gradient(circle, rgba(32,110,234,.5), transparent 64%); pointer-events: none; }
.privacy__icon { position: relative; font-size: 40px; display: inline-block; margin-bottom: 14px; }
.privacy__inner h2 { position: relative; color: #fff; font-size: clamp(28px, 4vw, 42px); }
.privacy__inner p { position: relative; color: rgba(255,255,255,.72); font-size: 18px; margin-top: 16px; max-width: 52ch; margin-left: auto; margin-right: auto; }

/* =========================================================
   QUOTES
   ========================================================= */
.quotes { padding: 96px 0; background: linear-gradient(180deg, var(--bg1), var(--bg2)); }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px 28px; box-shadow: var(--sh-soft); display: flex; flex-direction: column; gap: 16px; }
.quote__stars { color: var(--amber); letter-spacing: 2px; font-size: 15px; }
.quote blockquote { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 19px; line-height: 1.45; color: var(--ink); flex: 1; letter-spacing: -0.01em; }
.quote figcaption { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15px; color: var(--ink-soft); }
.avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-family: 'Nunito', sans-serif; font-weight: 800; color: #fff; background: linear-gradient(150deg, var(--accent-light), var(--accent)); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 96px 0; background: var(--bg2); }
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--sh-card); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq__ic { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__ic::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq details[open] .faq__ic::after { transform: rotate(90deg); opacity: 0; }
.faq details p { padding: 0 22px 22px; color: var(--ink-soft); font-size: 16.5px; }

/* =========================================================
   CTA
   ========================================================= */
.cta { position: relative; padding: 110px 0; text-align: center; background: linear-gradient(180deg, var(--bg2), var(--bg3)); overflow: hidden; }
.cta__glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(56,133,243,.35), transparent 62%); pointer-events: none; }
.cta__inner { position: relative; }
.cta h2 { font-size: clamp(34px, 5.5vw, 58px); }
.cta p { color: var(--ink-soft); font-size: 19px; max-width: 46ch; margin: 18px auto 34px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.82); padding: 64px 0 30px; }
.footer .brand__name { color: #fff; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer__brand p { color: rgba(255,255,255,.55); margin-top: 14px; font-size: 15px; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h5 { font-family: 'Nunito', sans-serif; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer__cols a { display: block; color: rgba(255,255,255,.82); font-size: 15px; padding: 5px 0; transition: color .2s; }
.footer__cols a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13.5px; color: rgba(255,255,255,.55); flex-wrap: wrap; }

/* =========================================================
   CONFETTI
   ========================================================= */
#confetti { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 200; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { max-width: 46ch; }
  .hero__cta, .hero__trust { justify-content: center; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 36px; }
  .feature--reverse .feature__text { order: 0; }
  .feature__text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .feature__text p { max-width: 50ch; }
  .ticks { align-items: flex-start; text-align: left; }
  .faq__inner { grid-template-columns: 1fr; gap: 28px; }
  .section-head--left { text-align: center; }
  .steps, .quotes__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 4px; align-items: stretch;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px); padding: 16px 24px 26px;
    box-shadow: 0 14px 30px -10px rgba(15,16,19,.2);
    transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .4s var(--ease);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 4px; font-size: 17px; border-bottom: 1px solid var(--line-soft); }
  .nav__cta { margin-top: 10px; border-bottom: 0 !important; box-shadow: none; }
  .nav__toggle { display: flex; }

  .strip__sep { display: none; }
  .strip__inner { gap: 22px 30px; }
  .strip__item { min-width: 90px; }

  .hero__cta { width: 100%; }
  .badge-store { flex: 1; justify-content: center; }
  .phone { width: 250px; }
  .chip { display: none; }
  .privacy__inner { padding: 44px 26px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
}
