/* ===========================================================
   Choice / Чойс — лендинг под ICP «английский для себя»
   Стиль воссоздан по текущему сайту (base44 / shadcn):
   тёплый кремовый фон, Geist, чёрная типографика,
   белые карточки, градиентные орбы.
   =========================================================== */

:root {
  --bg: #f5f2ef;              /* тёплый кремовый hsl(30 25% 95%) */
  --bg-soft: #efe9e2;
  --fg: #0a0a0a;             /* почти чёрный */
  --muted: #737373;          /* серый текст hsl(0 0% 45%) */
  --muted-2: #9ca3af;
  --card: #ffffff;
  --border: rgba(10, 10, 10, .08);
  --border-strong: rgba(10, 10, 10, .14);

  --orange: #ff8e1f;
  --purple: #7b44e8;
  --blue: #2e7fe0;
  --green: #1fa832;
  --mint: #6fe88a;
  --pink: #ff5ea8;
  --red: #e8422e;

  --radius: 8px;
  --radius-card: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, .04);
  --shadow: 0 10px 30px rgba(10, 10, 10, .06);
  --shadow-lg: 0 24px 60px rgba(10, 10, 10, .10);

  --maxw: 1120px;
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section { padding: 72px 0; }
.section-narrow { padding: 56px 0; }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 40px; position: relative; z-index: 2; }
.section-head .lead { margin-top: 14px; color: var(--muted); font-size: 16px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; }

.h1 { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.06; }
h2 { font-size: clamp(23px, 3vw, 34px); }
h3 { font-size: clamp(18px, 2vw, 22px); line-height: 1.2; }

.muted { color: var(--muted); }
b, strong { font-weight: 700; }

/* ---------- Eyebrow pill ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.eyebrow.subtle { background: var(--bg-soft); border-color: transparent; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.eyebrow .dot.orange { background: var(--orange); }
.eyebrow .dot.purple { background: var(--purple); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--fg); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-ghost { background: var(--card); color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--border-strong); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ---------- Orbs (декоративные градиентные шары) ---------- */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(18px); opacity: .8; z-index: 0; pointer-events: none;
}
.orb.blur-more { filter: blur(40px); }
.orb.o-orange { background: radial-gradient(circle at 35% 30%, #ffd278, #ff8e1f 55%, #ff5ea8 100%); }
.orb.o-blue   { background: radial-gradient(circle at 35% 30%, #cfe6ff, #5eb8ff 50%, #2e7fe0 100%); }
.orb.o-green  { background: radial-gradient(circle at 35% 30%, #d6ffe0, #6fe88a 50%, #1fa832 100%); }
.orb.o-purple { background: radial-gradient(circle at 35% 30%, #e2caff, #b890ff 50%, #7b44e8 100%); }
.orb.o-pink   { background: radial-gradient(circle at 35% 30%, #ffd4f5, #ff8ecb 45%, #b890ff 100%); }
.orb.o-white  { background: radial-gradient(circle at 35% 30%, #ffffff, #e9e9e9 60%, #d3d3d3 100%); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(245, 242, 239, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled { border-bottom-color: var(--border); }
.header .row { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.logo span { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { padding: 44px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero .h1 { margin: 20px auto 0; max-width: 640px; }
.hero .subhead { margin: 18px auto 0; max-width: 560px; color: var(--muted); font-size: 17px; }
.hero .cta-row { margin-top: 26px; display: flex; justify-content: center; }
.hero .microcopy { margin-top: 14px; color: var(--muted); font-size: 13px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .microcopy .sep { opacity: .5; }

.badges { margin-top: 24px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.badge .tick { color: var(--green); font-weight: 800; }

/* hero trust stats */
.hero-stats { margin: 26px auto 0; display: inline-flex; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.hstat { padding: 12px 24px; text-align: center; }
.hstat + .hstat { border-left: 1px solid var(--border); }
.hstat .hl { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.hstat .hv { font-size: 20px; font-weight: 800; margin-top: 3px; line-height: 1.1; }
.hstat .stars { color: var(--orange); font-size: 11px; letter-spacing: 1px; margin-top: 2px; }

/* hero orbs positions */
.hero .orb { z-index: 0; }
.hero .orb.a { width: 200px; height: 180px; top: 50px; left: -30px; }
.hero .orb.b { width: 240px; height: 220px; top: 30px; right: -20px; }
.hero .orb.c { width: 180px; height: 160px; bottom: -20px; left: 8%; }
.hero .orb.d { width: 220px; height: 190px; bottom: 20px; right: 6%; }
.hero .orb.e { width: 160px; height: 150px; top: 100px; left: 18%; }

/* ---------- Empathy (синдром собаки) ---------- */
.empathy { text-align: center; padding: 52px 0; }
.empathy .container { max-width: 960px; position: relative; z-index: 2; }
.empathy h2 { font-size: clamp(21px, 2.9vw, 30px); }
.empathy-sub { margin: 12px auto 0; color: var(--muted); font-size: 17px; max-width: 48ch; }
.empathy-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ecard { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 18px; text-align: left; box-shadow: var(--shadow-sm); }
.ecard .ei { font-size: 22px; line-height: 1; }
.ecard .et { font-weight: 700; font-size: 15px; margin-top: 11px; }
.ecard .ed { color: var(--muted); font-size: 13.5px; margin-top: 6px; line-height: 1.42; }
.ecard.dark { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.ecard.dark .ed { color: rgba(255,255,255,.72); }

/* ---------- Freedom (избавься от стеснения) ---------- */
.fpoints { display: flex; flex-direction: column; gap: 18px; }
.fpoint { display: flex; gap: 14px; align-items: flex-start; text-align: left; }
.fpoint .fp-ic { font-size: 24px; line-height: 1.1; flex-shrink: 0; }
.fp-b { display: block; font-weight: 700; font-size: 17px; }
.fp-d { display: block; color: var(--muted); font-size: 15px; margin-top: 3px; }
.pullquote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--shadow-lg); padding: 28px 30px; position: relative; z-index: 2; max-width: 420px; margin: 0 auto; }
.pullquote p { font-size: 18px; line-height: 1.5; font-weight: 500; }
.pullquote cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; font-size: 14px; color: var(--muted); }

/* ---------- Two-column feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; position: relative; z-index: 2; }
.feature.reverse .col-visual { order: 2; }
.feature .col-text h3 { margin-top: 14px; }
.feature .col-text p { margin-top: 14px; color: var(--muted); font-size: 16px; max-width: 46ch; }
.result-chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 9px; }
.result-chips .chip { padding: 8px 14px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }

/* ---------- Phone mockup ---------- */
.phone {
  width: 280px; margin: 0 auto; position: relative; z-index: 2;
  background: #0a0a0a; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-lg);
}
.phone .screen { background: #fbfaf8; border-radius: 32px; overflow: hidden; padding: 16px 13px; }
.notch { width: 100px; height: 24px; background: #0a0a0a; border-radius: 999px; margin: 2px auto 12px; }
.chat-msg { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 11px 13px; font-size: 12.5px; margin-bottom: 9px; box-shadow: var(--shadow-sm); }
.chat-msg.small { color: var(--muted); }
.opt { display: block; width: 100%; text-align: left; padding: 11px 13px; border: 1px solid var(--border); border-radius: 12px; background: #fff; font: inherit; font-size: 12.5px; margin-bottom: 7px; cursor: pointer; transition: border-color .15s; }
.opt:hover { border-color: var(--border-strong); }
.opt.selected, .opt.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.opt.selected { width: auto; margin-left: auto; }

/* floating labels around phone */
.float-card { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 10px 14px; font-size: 12px; box-shadow: var(--shadow); z-index: 3; }
.float-card .t { font-weight: 600; }
.float-card .s { color: var(--muted); }

/* ---------- Real app screenshots (device frame) ---------- */
.device { width: min(280px, 78vw); margin: 0 auto; background: #0a0a0a; border-radius: 40px; padding: 9px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.device img { display: block; width: 100%; height: auto; border-radius: 32px; }

/* ---------- Chat card (Emma) ---------- */
.chatcard { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-lg); padding: 16px; position: relative; z-index: 2; max-width: 360px; margin-left: auto; }
.chatcard .head { display: flex; align-items: center; gap: 10px; padding-bottom: 11px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.chatcard .ava { width: 34px; height: 34px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffd278, #ff8e1f 60%, #e8422e); }
.chatcard .name { font-weight: 700; font-size: 14px; }
.chatcard .status { font-size: 12px; color: var(--green); display: flex; align-items: center; gap: 5px; }
.chatcard .status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }
.bubble { font-size: 13.5px; padding: 9px 12px; border-radius: 13px; margin-bottom: 9px; max-width: 85%; }
.bubble.them { background: var(--bg-soft); }
.bubble.me { background: #0a0a0a; color: #fff; margin-left: auto; }
.bubble.note { background: #fff6e0; border: 1px solid #ffe3a3; color: #6b5518; font-size: 13px; }

/* ---------- App-style cards (scenarios / plan) ---------- */
.appcard { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-lg); padding: 18px; position: relative; z-index: 2; max-width: 360px; }
.appcard.right { margin-left: auto; }
.appcard .card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.appcard .card-head .cdot { width: 28px; height: 28px; border-radius: 50%; }
.appcard .card-head .ct { font-weight: 700; font-size: 15px; }
.appcard .card-head .cs { font-size: 12px; color: var(--muted); }

.scen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.scen { background: var(--bg-soft); border-radius: 13px; padding: 11px; }
.scen .emo { font-size: 19px; }
.scen .st { font-weight: 700; font-size: 13px; margin-top: 7px; }
.scen .ss { font-size: 11px; color: var(--muted); }
.scen.dark { background: #0a0a0a; color: #fff; }
.scen.dark .ss { color: rgba(255,255,255,.6); }

.plan-stats { display: flex; gap: 9px; margin-bottom: 12px; }
.plan-stat { flex: 1; background: var(--bg-soft); border-radius: 12px; padding: 10px 12px; }
.plan-stat .l { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.plan-stat .v { font-size: 21px; font-weight: 800; }
.plan-line { display: flex; gap: 10px; align-items: baseline; font-size: 13px; padding: 8px 0; border-top: 1px solid var(--border); }
.plan-line .w { font-weight: 700; color: var(--muted); min-width: 42px; }

/* ---------- Growth (feedback) two cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; position: relative; z-index: 2; }
.fcard { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow); padding: 26px; }
.fcard .tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.fcard .tag .d { width: 10px; height: 10px; border-radius: 50%; }
.fcard h3 { margin: 12px 0 10px; }
.fcard p { color: var(--muted); font-size: 15px; }
.example { margin-top: 16px; background: var(--bg-soft); border-radius: 13px; padding: 13px 15px; font-size: 13.5px; }
.example .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin-bottom: 7px; }
.example i { color: var(--muted); }
.steps { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.step { display: flex; gap: 11px; align-items: flex-start; background: var(--bg-soft); border-radius: 12px; padding: 11px 13px; font-size: 13.5px; }
.step .num { width: 21px; height: 21px; border-radius: 50%; background: #0a0a0a; color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }

/* ---------- Interactive selector ---------- */
.selector { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.pick {
  padding: 12px 20px; border: 1px solid var(--border); background: var(--card);
  border-radius: var(--radius-pill); font: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: all .15s ease; box-shadow: var(--shadow-sm);
}
.pick:hover { border-color: var(--border-strong); }
.pick.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.selector-cta { text-align: center; margin-top: 30px; position: relative; z-index: 2; }

/* ---------- Stats (почему работает) ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; position: relative; z-index: 2; }
.stat { text-align: center; }
.stat .big { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.stat .desc { margin-top: 9px; color: var(--muted); font-size: 14px; max-width: 30ch; margin-inline: auto; }

/* ---------- Testimonials ---------- */
.testimonials { margin-top: 52px; columns: 3; column-gap: 18px; position: relative; z-index: 2; }
.tmsg {
  break-inside: avoid; margin-bottom: 18px;
  background: #dcf3d6; border-radius: 16px 16px 16px 4px;
  padding: 13px 15px; font-size: 14px; color: #1f3d1a; line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
.tmsg .tname { font-weight: 700; font-size: 13px; color: #14340f; margin-bottom: 6px; }
.tmsg .time { display: block; text-align: right; font-size: 11px; color: #5c7a52; margin-top: 6px; }

/* ---------- Final CTA ---------- */
.finalcta { text-align: center; position: relative; overflow: hidden; }
.finalcta .container { position: relative; z-index: 2; }
.finalcta .card {
  background: #0a0a0a; color: #fff; border-radius: 28px; padding: 56px 28px;
  position: relative; overflow: hidden;
}
.finalcta h2 { color: #fff; }
.finalcta p { margin: 14px auto 26px; color: rgba(255,255,255,.7); font-size: 16px; max-width: 46ch; }
.finalcta .btn-primary { background: #fff; color: #0a0a0a; }
.finalcta .orb { opacity: .55; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.qa { border-bottom: 1px solid var(--border); }
.qa summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-size: 16px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .ic { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .2s; }
.qa summary .ic::before, .qa summary .ic::after { content: ""; position: absolute; background: var(--fg); border-radius: 2px; }
.qa summary .ic::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.qa summary .ic::after { left: 10px; top: 3px; bottom: 3px; width: 2px; transition: transform .2s; }
.qa[open] summary .ic::after { transform: scaleY(0); }
.qa .a { padding: 0 0 18px; color: var(--muted); font-size: 15px; max-width: 64ch; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 36px; border-top: 1px solid var(--border); text-align: center; }
.footer .logo { font-size: 24px; margin-bottom: 10px; }
.footer p { color: var(--muted); font-size: 14px; max-width: 52ch; margin: 0 auto 18px; }
.footer .legal-links { margin-top: 22px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; font-size: 14px; font-weight: 500; }
.footer .legal-links a { color: var(--muted); text-decoration: none; }
.footer .legal-links a:hover { text-decoration: underline; }
.footer .legal-links .dot-sep { color: var(--muted-2); }
.footer .sub { font-size: 13px; color: var(--muted-2); margin-top: 14px; line-height: 1.7; }
.footer .sub a { color: var(--muted); text-decoration: none; }
.footer .sub a:hover { text-decoration: underline; }


/* ---------- CTA modal (выбор мессенджера) ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(10, 10, 10, .5); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 24px; box-shadow: var(--shadow-lg); max-width: 420px; width: 100%; padding: 40px 30px 32px; position: relative; overflow: hidden; text-align: center; animation: modalIn .24s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: none; background: transparent; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; border-radius: 50%; z-index: 3; }
.modal-close:hover { background: var(--bg-soft); }
.modal-orb { width: 200px; height: 160px; top: -60px; right: -50px; opacity: .5; }
.modal-body { position: relative; z-index: 2; }
.modal h3 { font-size: 22px; }
.modal-sub { margin-top: 12px; color: var(--muted); font-size: 15px; }
.modal-actions { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.modal-btn { width: 100%; }
.msg-ic { width: 20px; height: 20px; flex-shrink: 0; }
.max-ic { background: currentColor; -webkit-mask: url("banner/Max_logo-256x256.png") center / contain no-repeat; mask: url("banner/Max_logo-256x256.png") center / contain no-repeat; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 60px 0; }
  .feature { gap: 36px; }
}
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature.reverse .col-visual { order: 0; }
  .feature .col-text { text-align: center; }
  .feature .col-text p { margin-inline: auto; }
  .result-chips { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 34px; }
  .testimonials { columns: 2; }
  .appcard, .chatcard { margin: 0 auto; }
  .float-card { display: none; }
  .empathy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .section-narrow { padding: 40px 0; }
  .hero { padding: 32px 0 48px; }
  .hero .subhead { font-size: 16px; }
  .badges { gap: 8px; }
  .badge { font-size: 12.5px; padding: 8px 13px; }
  .testimonials { columns: 1; }
  .finalcta .card { padding: 42px 20px; }
  .header .btn { padding: 8px 14px; font-size: 13px; }
  .fcard { padding: 22px; }
  .empathy-grid { grid-template-columns: 1fr; }
  .hstat { padding: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- Cookie consent bar (152-ФЗ) ---------- */
.cookie-bar { position: fixed; left: 16px; bottom: 16px; z-index: 80; background: var(--card); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px 12px; display: none; gap: 10px; align-items: center; max-width: 400px; }
.cookie-bar.show { display: flex; }
.cookie-bar p { font-size: 11.5px; color: var(--muted); line-height: 1.4; }
.cookie-bar a { color: var(--fg); text-decoration: underline; }
.cookie-bar .btn { flex-shrink: 0; padding: 7px 13px; font-size: 12px; }
@media (max-width: 560px) {
  .cookie-bar { right: 16px; max-width: none; }
}
