/* Bireby web — tasarım token'ları mobil ile BİREBİR (src/theme/index.ts).
   Tek vurgu: emerald. Font: Roboto. 8pt grid. Solid yüzey + ince kenarlık.
   YASAK: dashed çizgi, bozuk gradient, ikinci vurgu rengi, mono font. */

:root {
  /* light (mobil light token'ları) */
  --bg: #ffffff;
  --surface: #f3f8f5;
  --surface-elevated: #ffffff;
  --text: #0e1a14;
  --muted: #5b6b63;
  --border: #e2eae5;
  --accent: #16a572;          /* metin/link/aktif — beyazda okunur koyu yeşil */
  --accent-pressed: #0f7e57;
  --accent-soft: #d6f7e9;     /* rozet/tint zemini */
  --brand: #06cd82;           /* logo yeşili — dolu CTA */
  --brand-pressed: #05b473;
  --on-accent: #06231a;       /* yeşil zemin üstü koyu metin */
  --danger: #d7263d;

  /* 8pt grid */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-2xl: 48px;
  --s-3xl: 72px;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --maxw: 1080px;
  --font: 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* Site DAİMA light: beyaz zemin, beyaz üstünde emerald. Dark mode YOK. */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-pressed); }

img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand img { width: 30px; height: 30px; }
.nav { display: flex; align-items: center; gap: var(--s-lg); }
.nav a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--text); }
.header-right { display: flex; align-items: center; gap: var(--s-md); }
.lang {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 12px;
}
.lang:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  height: 52px;
  padding: 0 var(--s-lg);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--brand); color: var(--on-accent); }
.btn-primary:hover { background: var(--brand-pressed); color: var(--on-accent); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* App Store / Play Store rozetleri (resmi varlık gelene kadar şık placeholder) */
.stores { display: flex; flex-wrap: wrap; gap: var(--s-sm); }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  height: 54px;
  padding: 0 18px;
  border-radius: var(--r-md);
  background: #111615;
  color: #fff;
  border: 1px solid #222b27;
}
.store-badge:hover { background: #000; color: #fff; }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-top { font-size: 11px; opacity: 0.8; line-height: 1.1; }
.store-badge .sb-main { font-size: 17px; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }

/* ---------- Hero ---------- */
.hero { padding: var(--s-3xl) 0 var(--s-2xl); }
.hero-logo { width: 76px; height: 76px; margin-bottom: var(--s-lg); }
.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 16ch;
}
.hero .lede {
  margin-top: var(--s-md);
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--muted);
  max-width: 52ch;
}
.hero .cta { margin-top: var(--s-xl); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--s-md);
}

/* ---------- Sections ---------- */
.section { padding: var(--s-2xl) 0; }
.section-head { max-width: 56ch; margin-bottom: var(--s-xl); }
.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head p { margin-top: var(--s-sm); color: var(--muted); font-size: 18px; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }

/* feature grid — solid kart + ince kenarlık */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
}
.card .ico {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: var(--s-md);
}
.card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin-top: 6px; color: var(--muted); font-size: 15.5px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.step .n {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  background: var(--brand); color: var(--on-accent);
  display: grid; place-items: center; font-weight: 700; margin-bottom: var(--s-sm);
}
.step h3 { font-size: 18px; font-weight: 700; }
.step p { margin-top: 4px; color: var(--muted); font-size: 15.5px; }

/* CTA band */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-2xl);
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; letter-spacing: -0.02em; }
.cta-band p { margin-top: var(--s-sm); color: var(--muted); font-size: 18px; }
.cta-band .stores { justify-content: center; margin-top: var(--s-lg); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: var(--s-2xl);
  padding: var(--s-2xl) 0;
  color: var(--muted);
  font-size: 14.5px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-xl);
  justify-content: space-between;
  align-items: flex-start;
}
.footer-links { display: flex; flex-wrap: wrap; gap: var(--s-lg); }
.footer-links a { color: var(--muted); font-weight: 500; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { margin-top: var(--s-lg); font-size: 13.5px; opacity: 0.85; }

/* ---------- Legal pages ---------- */
.legal { padding: var(--s-2xl) 0; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 700; letter-spacing: -0.02em; }
.legal .updated { color: var(--muted); font-size: 14.5px; margin-top: var(--s-sm); }
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
  letter-spacing: -0.01em;
}
.legal h3 { font-size: 18px; font-weight: 700; margin-top: var(--s-lg); margin-bottom: 6px; }
.legal p { margin-top: var(--s-sm); color: var(--text); }
.legal ul { margin: var(--s-sm) 0 0 var(--s-lg); }
.legal li { margin-top: 6px; }
.legal .note {
  background: var(--accent-soft);
  border-radius: var(--r-md);
  padding: var(--s-md);
  margin-top: var(--s-md);
  color: var(--accent);
  font-weight: 500;
}
.legal a { font-weight: 500; }
.back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 500; font-size: 14.5px; margin-bottom: var(--s-md); }
.back:hover { color: var(--accent); }

/* ---------- Telefon mockup + uygulama içi taklit UI ---------- */
.phone {
  width: 286px;
  max-width: 80vw;
  border-radius: 40px;
  background: #0e1a14;
  padding: 11px;
  box-shadow: 0 36px 70px rgba(8, 18, 14, 0.18), 0 6px 16px rgba(8, 18, 14, 0.10);
}
.phone .screen {
  position: relative;
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
  height: 580px;
}
.phone .notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #0e1a14;
  border-radius: var(--r-pill);
  z-index: 3;
}
.phone-tilt { transform: rotate(2deg); }

/* Gerçek ekran görüntüsü (mockup yerine): telefon ekranını tam doldurur. */
.phone .screen .shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* Uygulama ekranlarının VEKTÖR (HTML) yeniden çizimi — her boyutta keskin.
   Telefon ekranı ~390pt'lik uygulamayı temsil eder; içerik 13px taban. */
.app { gap: 11px; }
.app-scroll { height: 100%; overflow: hidden; display: flex; flex-direction: column; gap: 11px; }

/* Üst marka çubuğu (ana ekran) */
.ab { display: flex; align-items: center; justify-content: space-between; }
.ab .bm { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.ab .bm img { width: 24px; height: 24px; }
.streak { background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 12px; padding: 5px 11px; border-radius: var(--r-pill); }

/* Selamlama (yeşil) kartı */
.greet { background: var(--accent-soft); border-radius: var(--r-md); padding: 13px; }
.greet .d { color: var(--muted); font-size: 11.5px; }
.greet .hi { font-weight: 700; font-size: 16px; margin-top: 1px; }
.greet hr { border: none; border-top: 1px solid rgba(22,165,114,0.18); margin: 10px 0; }
.greet .kk { color: var(--muted); font-size: 11.5px; }
.greet .big { color: var(--accent); font-weight: 700; font-size: 21px; margin-top: 1px; }
.greet .big small { font-size: 11px; color: var(--accent); font-weight: 700; }

/* Kart (surface) — sıradaki ders / liste kapsayıcı */
.card-s { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px; }
.ncard { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ncard .nm { font-weight: 700; font-size: 15px; }
.ncard .sub { color: var(--muted); font-size: 11px; margin-top: 1px; }
.cd { background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 11.5px; padding: 8px 12px; border-radius: var(--r-md); white-space: nowrap; }

/* İki kutu özet (tahsil edilecek / aktif) */
.stat.red { background: #fdeef0; border-color: #f7d7db; }
.stat.red .v { color: var(--danger); }

/* Grafik kartı */
.chartcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px; }
.chartcard .ch-h { display: flex; align-items: center; justify-content: space-between; }
.chartcard .ch-h b { font-size: 14px; }
.chartcard .ch-h .n { color: var(--accent); font-weight: 700; font-size: 18px; }
.chartcard .bars { height: 64px; align-items: flex-end; margin-top: 8px; gap: 0; }
.chartcard .bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.chartcard .bars .bar { width: 9px; border-radius: 5px; background: var(--accent); }
.chartcard .bars .bar.dim { background: var(--border); }
.chartcard .bars .lab { font-size: 9.5px; color: var(--muted); }

/* Bugün listesi satırı (ana ekran) */
.todo .ti { display: flex; align-items: center; gap: 10px; padding: 9px 0; }
.todo .ti + .ti { border-top: 1px solid var(--border); }
.todo .tm { color: var(--accent); font-weight: 700; font-size: 13px; width: 42px; }
.todo .tn { flex: 1; font-weight: 600; font-size: 13px; }
.mark { background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 11px; padding: 5px 12px; border-radius: var(--r-pill); }

/* Bakiye kartı (danışan detayı) */
.balcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px; }
.balcard .bl { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }
.balcard .bb { font-weight: 700; font-size: 26px; margin-top: 3px; }
.balcard .bb.green { color: var(--accent); }
.balcard .bb.red { color: var(--danger); }
.balcard .bb small { font-size: 12px; font-weight: 700; color: var(--muted); }
.balcard .cr { color: var(--accent); font-size: 11.5px; font-weight: 600; margin-top: 2px; }
.balcard hr { border: none; border-top: 1px solid var(--border); margin: 11px 0; }
.kv { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.kv + .kv { margin-top: 5px; }
.kv .vk { color: var(--muted); }
.kv .vv { font-weight: 700; }

/* Ücret alanı */
.fld { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 13px; }
.fld .fl { color: var(--muted); font-size: 11px; }
.fld .fv { font-weight: 600; font-size: 14px; margin-top: 4px; }
.fld.box { padding: 0; }
.fld .inp { background: var(--surface-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; font-weight: 600; font-size: 14px; }
.fld .ph { color: var(--muted); font-weight: 400; }

/* İki aksiyon butonu */
.acts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.b-pri { background: var(--brand); color: var(--on-accent); border-radius: var(--r-md); padding: 13px; text-align: center; font-weight: 700; font-size: 13px; }
.b-sec { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 13px; text-align: center; font-weight: 700; font-size: 13px; }

/* İletişim kartı */
.contact { display: flex; align-items: center; justify-content: space-between; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 13px; }
.contact .cl { color: var(--muted); font-size: 11px; }
.contact .cv { font-weight: 700; font-size: 13px; margin-top: 2px; }
.contact .wa { color: var(--accent); font-weight: 700; font-size: 13px; }

/* Aylık tahsilat (danışan) */
.mrow { display: flex; align-items: flex-end; justify-content: space-between; height: 52px; padding-top: 4px; }
.mrow .mc { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.mrow .mb { width: 9px; border-radius: 5px; background: var(--accent); }
.mrow .mb.dim { background: var(--border); height: 8px; }
.mrow .ml { font-size: 9.5px; color: var(--muted); }

/* Segment kontrol (seanslar üst sekmeler) */
.seg { display: flex; background: var(--surface); border-radius: 10px; padding: 4px; gap: 4px; }
.seg .sg { flex: 1; text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); padding: 8px 4px; border-radius: 7px; }
.seg .sg.on { background: var(--bg); color: var(--accent); box-shadow: 0 1px 2px rgba(8,18,14,0.06); }

/* Chip (Tüm kişiler) */
.chip2 { display: inline-flex; align-items: center; gap: 5px; align-self: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 13px; font-size: 12.5px; color: var(--muted); }

/* Kişi seçim satırı (grup) */
.selrow { display: flex; align-items: center; gap: 11px; padding: 11px; border: 1.5px solid var(--border); border-radius: var(--r-md); background: var(--surface-elevated); }
.selrow.on { border-color: var(--accent); background: var(--accent-soft); }
.selav { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: 12px; flex: none; }
.selrow .sn { flex: 1; }
.selrow .sn b { font-weight: 700; font-size: 13px; display: block; }
.selrow .sn span { color: var(--muted); font-size: 11px; }
.check { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--border); flex: none; display: grid; place-items: center; }
.check.on { background: var(--accent); border-color: var(--accent); color: #fff; font-size: 12px; font-weight: 700; }
.selcount { color: var(--accent); font-weight: 600; font-size: 12px; }

/* Liste satırı (seanslar — kenarlıksız, alt çizgili) */
.lrow { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.lrow b { font-weight: 700; font-size: 13px; display: block; }
.lrow span { color: var(--muted); font-size: 11px; }

/* Bağımsız input kutusu (grup adı / arama / ücret) */
.inp { background: var(--surface-elevated); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; font-weight: 600; font-size: 13px; }
.inp.ph { color: var(--muted); font-weight: 400; }
.fl { color: var(--muted); font-size: 11px; }

.app {
  height: 100%;
  padding: 34px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  overflow: hidden;
}
.app-top { display: flex; align-items: center; gap: 9px; }
.app-top img { width: 26px; height: 26px; }
.app-top .who { line-height: 1.15; }
.app-top .who b { font-weight: 700; font-size: 14px; }
.app-top .who span { color: var(--muted); font-size: 11px; }
.app-title { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }

.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px; }
.stat .k { color: var(--muted); font-size: 11px; }
.stat .v { font-weight: 700; font-size: 19px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.stat .v.green { color: var(--accent); }

.bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; padding: 4px 2px 0; }
.bars span { flex: 1; background: var(--accent); border-radius: 4px 4px 0 0; }
.bars span.dim { background: var(--border); }

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.app-row .lt { display: flex; align-items: center; gap: 9px; min-width: 0; }
.app-row .lt .t { min-width: 0; }
.app-row .lt .t b { font-weight: 700; font-size: 13px; display: block; }
.app-row .lt .t span { color: var(--muted); font-size: 11px; }
.av { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: 12px; flex: none; }
.av.left-bar { border-left: 3px solid var(--accent); }
.pill-sm { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); white-space: nowrap; }
.pill-green { background: var(--accent-soft); color: var(--accent); }
.pill-amber { background: rgba(183, 121, 31, 0.14); color: #9a6712; }
.pill-muted { background: var(--surface-elevated); color: var(--muted); border: 1px solid var(--border); }
.amt { font-weight: 700; font-variant-numeric: tabular-nums; font-size: 13px; }
.amt.red { color: var(--danger); }
.amt.green { color: var(--accent); }
.app-cta { margin-top: auto; background: var(--brand); color: var(--on-accent); border-radius: var(--r-md); padding: 13px; text-align: center; font-weight: 700; }
.app-label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Zengin yerleşim: hero grid + özellik satırları ---------- */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-2xl); align-items: center; }
.hero-grid .phone-wrap { display: flex; justify-content: center; }

.value-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  padding: var(--s-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-band .v { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; }
.value-band .v.green { color: var(--accent); }
.value-band .k { color: var(--muted); font-size: 14px; margin-top: 2px; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2xl); align-items: center; padding: var(--s-2xl) 0; }
.feature-row .phone-wrap { display: flex; justify-content: center; }
.feature-row.reverse .text { order: 2; }
.feature-row .text h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; letter-spacing: -0.02em; }
.feature-row .text > p { color: var(--muted); font-size: 18px; margin-top: var(--s-sm); }
.feature-list { margin-top: var(--s-md); display: flex; flex-direction: column; gap: var(--s-sm); }
.feature-list .li { display: flex; gap: var(--s-sm); align-items: flex-start; }
.feature-list .tick { color: var(--accent); font-weight: 700; flex: none; }
.feature-list .li span { color: var(--text); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border); padding: var(--s-md) 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 17px; font-weight: 700; }
.faq-item p { color: var(--muted); margin-top: 6px; }

/* ---------- Çerez onay banner'ı ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: var(--s-md);
  transform: translateX(-50%);
  width: calc(100% - var(--s-lg));
  max-width: 920px;
  z-index: 60;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(8, 18, 14, 0.14);
  padding: var(--s-lg);
  display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.cookie-banner p { color: var(--muted); font-size: 14.5px; }
.cookie-banner p a { font-weight: 500; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin-top: var(--s-md);
}
.cookie-actions .btn { height: 44px; font-size: 15px; padding: 0 var(--s-md); }
.cookie-actions .spacer { flex: 1; }
.cookie-link {
  background: none;
  border: none;
  font: inherit;
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}
.cookie-link:hover { color: var(--accent-pressed); }

@media (max-width: 560px) {
  .cookie-actions .spacer { display: none; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: var(--s-md); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
  .hero-grid .text { text-align: center; }
  .hero-grid .text .lede { margin-left: auto; margin-right: auto; }
  .hero-grid .stores { justify-content: center; }
  .value-band { grid-template-columns: repeat(2, 1fr); gap: var(--s-lg); }
  .feature-row { grid-template-columns: 1fr; gap: var(--s-lg); padding: var(--s-xl) 0; }
  .feature-row .text { order: 2 !important; text-align: center; }
  .feature-row .phone-wrap { order: 1; }
  .feature-list { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .grid { grid-template-columns: 1fr; }
  .container { padding: 0 var(--s-md); }
  .hero { padding: var(--s-2xl) 0 var(--s-xl); }
  .cta-band { padding: var(--s-xl) var(--s-md); }
}
