/* Ася В Курсе — landing styles */

/* Self-hosted Manrope (variable font, weight 400-800) — 2 subsets */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0E0E10;
  --ink-soft: #2A2A2E;
  --ink-mute: #6B6B73;
  --bg: #F6F2EC;
  --bg-card: #FFFFFF;
  --bg-dark: #14140F;
  --bg-cream: #EFE8DC;
  --accent: oklch(0.72 0.14 45);
  --accent-deep: oklch(0.55 0.14 40);
  --mint: oklch(0.86 0.06 165);
  --sky: oklch(0.86 0.06 240);
  --butter: oklch(0.92 0.10 90);
  --lilac: oklch(0.84 0.06 305);
  --rose: oklch(0.86 0.07 25);
  --line: rgba(14,14,16,0.08);
  --line-strong: rgba(14,14,16,0.14);
  --radius-card: 32px;
  --radius-block: 40px;
  --radius-pill: 999px;
  --shadow-card: 0 30px 60px -20px rgba(14,14,16,0.35), 0 8px 18px -8px rgba(14,14,16,0.2);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
a { color: inherit; text-decoration: none; }

/* Typography */
.h-display {
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h-section {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-block {
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #525258; /* darkened from --ink-mute (#6B6B73) for AA contrast on pastel tiles */
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.lede {
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* Container & sections */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 0 16px;
  margin-bottom: 14px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-block);
  padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  transition: transform .15s ease, background .15s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-accent { background: var(--accent-deep); color: #fff; }
.btn-accent:hover { background: var(--ink); }
.btn-ghost { background: rgba(14,14,16,0.06); color: var(--ink); }
.btn-ghost:hover { background: rgba(14,14,16,0.10); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f3eee5; }
.btn-arrow::after {
  content: "→";
  font-weight: 500;
  transition: transform .2s;
}
.btn:hover .btn-arrow::after { transform: translateX(2px); }
.btn-on-dark { background: rgba(255,255,255,0.08); color: #F6F2EC; }
.btn-on-dark:hover { background: rgba(255,255,255,0.14); }

/* Tags / chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(14,14,16,0.06);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.chip-on-dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Hero */
.hero { background: var(--bg-dark); color: #F6F2EC; }
.hero .lede { color: rgba(246,242,236,0.7); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  flex-wrap: wrap;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.nav-links a:hover { color: #fff; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: block;
}

/* Wordmark */
.wordmark {
  font-weight: 800;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: #F6F2EC;
  text-transform: uppercase;
  margin: 32px 0 0;
}

/* Hero phone */
.hero-phone {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  width: 100%;
}
.tg-mock {
  background: #17212B;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  font-size: 12px;
  line-height: 1.45;
  color: #fff;
}
.tg-mock-head {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 4px;
}
.tg-bot-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; font-size: 14px; flex-shrink: 0;
}
.tg-bot-name { color: #E876A0; font-weight: 600; }
.tg-time { font-size: 10px; color: #7E8E9F; }
.tg-grey { color: #A8B7C7; }
.tg-link { color: #7AB6F5; }
.tg-row { margin-top: 4px; }
.tg-row-items { padding-left: 16px; color: #D6E0EC; }
.tg-badge {
  position: absolute; top: -10px; right: -16px;
  background: var(--butter); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  transform: rotate(4deg);
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.3);
}

/* Stats row */
.stat { display: inline-block; }
.stat-value { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: #F6F2EC; }
.stat-label { font-size: 13px; color: rgba(246,242,236,0.6); margin-top: 2px; }

/* Card */
.card {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 28px;
}

/* Tile colors */
.tile-mint   { background: var(--mint); }
.tile-sky    { background: var(--sky); }
.tile-butter { background: var(--butter); }
.tile-lilac  { background: var(--lilac); }
.tile-rose   { background: var(--rose); }
.tile-cream  { background: var(--bg-cream); }
.tile-ink    { background: var(--ink); color: #F6F2EC; }
.tile-ink .lede { color: rgba(246,242,236,0.7); }
.tile-accent { background: var(--accent-deep); color: #fff; }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Marquee */
.marquee-band {
  padding: 20px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marq 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 15;
  color: var(--ink-mute);
  white-space: nowrap;
  font-size: 15px;
}
@keyframes marq {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Digest example (right column in #digests) */
.digest-mock {
  background: #17212B;
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}
.digest-head {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.digest-bot-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; font-size: 18px;
}
.digest-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #7E8E9F; text-align: center;
}
.cal-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; margin-left: 4px;
  background: rgba(122,182,245,0.14); color: #7AB6F5;
  border-radius: 999px; font-size: 11px; font-weight: 600;
  vertical-align: middle;
}

/* Digest categories grid */
.cat-chip {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px; background: #fff; border-radius: 12px;
}
.cat-chip-icon { font-size: 16px; }
.cat-chip-label { font-size: 13px; font-weight: 600; }

.callout-dark {
  padding: 16px 18px; background: var(--ink);
  color: #F6F2EC; border-radius: 16px;
  display: flex; gap: 14px; align-items: center;
}
.callout-dark b { color: #fff; }
.callout-dark .sub { color: rgba(246,242,236,0.65); }
.callout-light {
  padding: 14px 16px; background: #fff;
  border-radius: 16px;
  display: flex; gap: 12px; align-items: center;
  border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft);
}

/* Family / steps */
.step {
  display: flex; gap: 16px; padding-bottom: 20px; position: relative;
}
.step.last { padding-bottom: 0; }
.step-num-wrap {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.step-line { width: 2px; flex: 1; background: var(--line); margin-top: 6px; }
.member-card {
  background: #fff; border-radius: 20px; padding: 20px;
}
.member-card.primary { border: 2px solid var(--ink); }
.member-avatar {
  width: 48px; height: 48px; border-radius: 999px;
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 20px; flex-shrink: 0;
}
.member-perm {
  padding: 4px 10px; background: var(--bg-cream);
  border-radius: 999px; font-size: 12px; color: var(--ink-soft);
}

/* Kids */
.kid-perk-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(14,14,16,0.08);
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}
.age-card {
  background: rgba(255,255,255,0.5); border-radius: 24px; padding: 28px;
  position: relative;
}
.age-card.highlight {
  background: #fff; border: 3px solid var(--ink);
}
.age-card-tag {
  position: absolute; top: -12px; right: 20px;
  padding: 4px 12px; background: var(--ink); color: #fff;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
}
.age-bubble {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: var(--ink);
  margin-bottom: 16px;
}

/* Mini phone (kids comparison) */
.mini-phone {
  background: #0E0E10;
  border-radius: 32px;
  padding: 6px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.mini-phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 18px;
  background: #0E0E10; border-radius: 999px;
  z-index: 4;
}
.mini-phone-screen {
  background: #EFEAE2;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/17;
  display: flex;
  flex-direction: column;
  font-size: 12px;
}
.mini-phone-header {
  display: flex; align-items: center; gap: 10px;
  padding: 36px 12px 8px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mini-phone-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.mini-phone-body {
  flex: 1; padding: 12px 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.mini-phone-msg {
  background: #fff; border-radius: 14px 14px 14px 4px;
  padding: 10px 12px; font-size: 11px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.04);
  max-width: 96%;
}
.mini-phone-msg.me {
  align-self: flex-end;
  background: #E0F8C4;
  border-radius: 14px 14px 4px 14px;
  max-width: 70%;
}
.mini-phone-line {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 4px 0; font-size: 11px;
}
.mini-phone-line + .mini-phone-line {
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mini-phone-meta { color: var(--ink-mute); font-size: 10px; white-space: nowrap; }

/* Voice */
.voice-prompt {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.voice-prompt-who {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-bottom: 8px;
}
.voice-prompt-q {
  font-size: 16px; font-weight: 600;
  color: var(--butter); line-height: 1.4;
  margin-bottom: 10px;
}
.voice-prompt-divider {
  height: 1px; background: rgba(255,255,255,0.1); margin: 12px 0;
}
.voice-prompt-a {
  font-size: 13px; color: rgba(246,242,236,0.7); line-height: 1.55;
}

/* Speaker visual (CSS) */
.speaker-vis {
  position: relative; min-height: 460px;
  display: grid; place-items: center;
}
.speaker-body { position: relative; width: 220px; height: 280px; }
.speaker-cyl {
  position: absolute; top: 24px; left: 0; right: 0; bottom: 16px;
  border-radius: 48% 48% 18px 18px / 22% 22% 18px 18px;
  background: radial-gradient(ellipse at 30% 20%, #3a3a42 0%, #1a1a1f 50%, #0a0a0c 100%);
  box-shadow: inset 0 -40px 80px rgba(0,0,0,0.6), inset 0 20px 30px rgba(255,255,255,0.04), 0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden;
}
.speaker-mesh {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px);
  background-size: 7px 7px;
  opacity: 0.9; mix-blend-mode: screen;
}
.speaker-top {
  position: absolute; top: 0; left: 6%; right: 6%; height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 100%, oklch(0.72 0.14 45) 0%, oklch(0.55 0.14 40) 30%, #1a1a20 70%),
    linear-gradient(180deg, #2a2a30, #0e0e10);
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.5), inset 0 4px 12px rgba(255,255,255,0.15), 0 8px 20px -4px rgba(214,107,68,0.4);
  overflow: hidden;
}
.speaker-led {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 30%, oklch(0.85 0.16 60), oklch(0.55 0.14 40) 60%, transparent 80%);
  filter: blur(2px);
  opacity: 0.95;
}
.bubble-glass {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  font-size: 13px; color: #F6F2EC;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
}

/* Pricing */
.price-card {
  border-radius: 28px;
  padding: 36px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: #F6F2EC;
}
.price-card.highlight {
  background: #F6F2EC;
  color: var(--ink);
  border: none;
}
.price-card-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 10px; background: var(--ink); color: #F6F2EC;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
}
.price-card-title { font-size: 14px; font-weight: 600; opacity: 0.7; margin-bottom: 8px; }
.price-card-amount {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.price-card-amount .num {
  font-size: 64px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}
.price-card-amount .per { font-size: 16px; opacity: 0.7; }
.price-card-sub { font-size: 14px; opacity: 0.7; margin-bottom: 28px; }
.price-card-cta {
  display: block; text-align: center; padding: 16px;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  background: #F6F2EC; color: var(--ink);
}
.price-card.highlight .price-card-cta {
  background: var(--ink); color: #F6F2EC;
}

/* FAQ */
.faq-item {
  border-top: 1px solid var(--line-strong);
  padding: 24px 0;
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent; padding: 0; gap: 16px;
  text-align: left;
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q .plus {
  font-size: 22px; color: var(--ink-mute);
  transition: transform .2s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-top: 12px;
  font-size: 16px; color: var(--ink-soft); line-height: 1.55;
  max-width: 640px;
}
.faq-item.open .faq-a { display: block; }

/* Footer */
.footer {
  padding: 60px 24px 40px;
  color: var(--ink-mute);
  font-size: 13px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer a:hover { color: var(--ink); }
.footer-col-title {
  font-weight: 700; font-size: 13px;
  color: var(--ink); margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}
.pay-logo {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px; font-weight: 700;
  color: var(--ink-soft); letter-spacing: 0.02em;
}
.pay-svg {
  height: 22px;
  width: auto;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.pay-svg:hover { opacity: 1; }
.footer-requisites {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; font-size: 12px; color: var(--ink-mute);
  line-height: 1.6;
}
.footer-requisites b { color: var(--ink); font-size: 13px; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--ink-mute); }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 100;
  background: var(--ink); color: #F6F2EC;
  border-radius: 20px;
  padding: 18px 22px;
  display: none;
  align-items: center; gap: 16px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  max-width: 920px; margin: 0 auto;
  font-size: 14px; line-height: 1.5;
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner .cookie-ok {
  background: var(--accent-deep); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.cookie-banner .cookie-ok:hover { background: var(--ink); }

/* Pay/share specific (shared via this stylesheet) */
.simple-page-bg {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.simple-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-card);
}
.simple-card-head {
  text-align: center;
  margin-bottom: 24px;
}
.simple-card-head .logo-mark {
  margin: 0 auto 12px;
}
.simple-card-head h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.simple-card-head .subtitle {
  color: var(--ink-mute); font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-requisites { grid-template-columns: 1fr; }
  /* Inline grids (hero, digests, family, kids, voice, pricing, faq)
     use inline grid-template-columns. Force single column on tablets/phones. */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Disable sticky on collapse — would otherwise cause overlap. */
  [style*="position: sticky"] { position: static !important; }
  /* Center hero phone instead of right-aligning when stacked. */
  .hero-phone { margin: 0 auto !important; }
  /* Hide the centered "одна подписка" pill in kids comparison when phones stack. */
  .kids-pill { display: none !important; }
}

@media (max-width: 640px) {
  .section { padding: 0 8px; }
  .section-inner { padding: 32px 22px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wordmark { font-size: clamp(56px, 16vw, 96px); }
  .price-card { padding: 28px; }
  .price-card-amount .num { font-size: 52px; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px 18px;
  }
  .cookie-banner .cookie-ok { width: 100%; }
}

@media (max-width: 480px) {
  .digest-mock { padding: 18px; font-size: 13px; }
  .price-card-amount .num { font-size: 44px; }
  .h-display { font-size: clamp(28px, 9vw, 44px); }
  .h-section { font-size: clamp(26px, 8vw, 40px); }
}
