/* ═══════════════════════════════════════════════════════════
   Chevostik Landing — styles
═══════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face { font-family: 'Craftwork Grotesk'; src: url('fonts/CraftworkGrotesk-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Craftwork Grotesk'; src: url('fonts/CraftworkGrotesk-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Craftwork Grotesk'; src: url('fonts/CraftworkGrotesk-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Craftwork Grotesk'; src: url('fonts/CraftworkGrotesk-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Craftwork Grotesk'; src: url('fonts/CraftworkGrotesk-Heavy.ttf') format('truetype'); font-weight: 800 900; font-display: swap; }

:root {
  --forest: #1A2E22;
  --forest-mid: #3D5C47;
  --green: #2E8B60;
  --green-dark: #236B4A;
  --green-light: #EDFAF4;
  --mint: #82C9A0;
  --mint-light: #EDF9F2;
  --honey: #EDB84A;
  --honey-light: #FDF6E3;
  --orange: #FF8C00;
  --orange-dark: #E07700;
  --orange-light: #FFF1DC;
  --bg: #F8FAF7;
  --card: #FFFFFF;
  --text: #1A2E22;
  --text-mid: #3D5C47;
  --muted: #8EAE98;
  --border: #D8EDDE;
  --shadow-sm: 0 1px 5px rgba(26,46,34,.06);
  --shadow-md: 0 4px 14px rgba(26,46,34,.08);
  --shadow-lg: 0 12px 32px rgba(26,46,34,.12);
  --shadow-cta: 0 8px 22px rgba(255,140,0,.35);
  --shadow-primary: 0 8px 22px rgba(46,139,96,.32);

  --font: 'Craftwork Grotesk', system-ui, sans-serif;
  --container: 1200px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

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

/* ─── HEADINGS ─── */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--forest); }
h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; line-height: 1.1; }
h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 800; }
h4 { font-size: 18px; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow.honey { color: #B57A00; background: var(--honey-light); }
.eyebrow.orange { color: var(--orange-dark); background: var(--orange-light); }

.sub-h2 {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-mid);
  font-weight: 500;
  max-width: 640px;
  margin: 14px auto 0;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

section { padding: 80px 0; position: relative; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { text-wrap: balance; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-cta {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-cta);
  font-size: 17px;
  padding: 16px 28px;
}
.btn-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,140,0,.45); }
.btn-cta.big { font-size: 19px; padding: 20px 36px; border-radius: 16px; }
.btn-cta.huge { font-size: 22px; padding: 24px 44px; border-radius: 18px; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--green-light); color: var(--green-dark); }
.btn-light { background: #fff; color: var(--green-dark); border: 2px solid var(--border); }
.btn-light:hover { border-color: var(--green); transform: translateY(-2px); }

.cta-microcopy {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-microcopy .dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }

/* ─── HEADER (Block 1) ─── */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .2s ease, box-shadow .2s ease, padding .2s ease;
  background: rgba(248,250,247,0);
}
header.site.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(46,139,96,.4);
}
nav.main {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color .15s ease;
}
nav.main a:hover { color: var(--green); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-right .login {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .15s ease;
}
.header-right .login:hover { background: var(--green-light); color: var(--green-dark); }
.header-cta {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255,140,0,.3);
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-light);
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 18px; height: 2px; background: var(--green-dark);
  position: relative;
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--green-dark);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 1024px) {
  nav.main { display: none; }
  .header-right .login { display: none; }
}
@media (max-width: 600px) {
  .header-cta { display: none; }
  .burger { display: flex; }
}

/* mobile menu */
.mmenu {
  position: fixed; top: 64px; left: 0; right: 0;
  background: #fff;
  padding: 20px 24px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transform: translateY(-110%);
  transition: transform .25s ease;
}
.mmenu.open { transform: translateY(0); }
.mmenu a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  font-size: 17px;
  border-bottom: 1px solid var(--border);
}
.mmenu .btn-cta { display: flex; margin-top: 16px; width: 100%; }

/* ─── HERO (Block 2) ─── */
.hero {
  padding-top: 96px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -200px -200px auto auto;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(130,201,160,.35), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 56px;
  position: relative;
}
.hero-grid h1 .accent { color: var(--green); }
.hero-grid h1 .accent2 { color: var(--orange); }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-mid);
  font-weight: 500;
  margin-top: 22px;
  max-width: 520px;
  line-height: 1.5;
  text-wrap: pretty;
}
.hero-cta-row { margin-top: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
}
.trust-pill .ico {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--green-light); color: var(--green);
  border-radius: 50%; font-size: 12px;
}

.hero-vis {
  position: relative;
  /* Чевостик стоит на странице без рамки: убрали зелёный плашечный фон,
     оставили только мягкий радиальный halo за персонажем. */
  display: grid;
  place-items: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
@media (min-width: 769px) {
  /* На десктопе поднимаем Чевостика, чтобы он «выходил» из секции */
  .hero-vis { margin-top: -40px; }
}
.hero-vis::before {
  /* мягкий радиальный halo за персонажем, без жёсткой границы */
  content: '';
  position: absolute;
  inset: 6% 6% 6% 6%;
  background: radial-gradient(circle at 50% 48%,
              rgba(220, 246, 230, .85) 0%,
              rgba(220, 246, 230, .35) 35%,
              transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-vis::after { content: none; }
.hero-chars {
  position: relative;
  width: 88%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-chars .che {
  width: 58%;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.18));
  animation: bobChe 3.5s ease-in-out infinite;
  z-index: 2;
  margin-right: -8%;
}
.hero-chars .kuz {
  width: 56%;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.18));
  animation: bob 3s ease-in-out infinite .5s;
  z-index: 1;
  margin-left: -8%;
}
@keyframes bobChe {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-10px) rotate(2deg); }
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
/* ── Чевостик с планшетом — главная иллюстрация hero ── */
.hero-hero-img {
  position: relative;
  width: 78%;
  max-width: 420px;
  z-index: 2;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.22));
  /* без анимации — статичный, не отвлекает внимание от CTA */
}
.hero-bubble {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,.96);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
  text-align: center;
  white-space: normal;
  text-wrap: balance;
  z-index: 3;
}
.hero-floats {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-floats .f {
  position: absolute;
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
  animation: bob 3.5s ease-in-out infinite;
}
.hero-floats .f:nth-child(1) { top: 8%; left: 8%; animation-delay: 0s; }
.hero-floats .f:nth-child(2) { top: 14%; right: 10%; animation-delay: .4s; transform: rotate(6deg); }
.hero-floats .f:nth-child(3) { bottom: 26%; left: 4%; animation-delay: .8s; transform: rotate(-8deg); }
.hero-floats .f:nth-child(4) { bottom: 14%; right: 6%; animation-delay: 1.2s; transform: rotate(4deg); }

@media (max-width: 900px) {
  .hero { padding-top: 96px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-vis { max-width: 480px; margin: 0 auto; }
}

/* ─── BLOCK 3 — SOCIAL PROOF ─── */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.proof-stat {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.proof-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.proof-stat .num {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.proof-stat .num.honey { color: var(--honey); }
.proof-stat .num.orange { color: var(--orange); }
.proof-stat .num.forest { color: var(--forest); }
.proof-stat .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-wrap: pretty;
}
.proof-stat .lbl .todo { color: var(--muted); font-size: 11px; }

.logobar {
  margin-top: 48px;
  padding: 28px 32px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
  justify-content: center;
  opacity: .85;
}
.logobar .lb {
  font-weight: 800;
  font-size: 18px;
  color: var(--text-mid);
  letter-spacing: -0.02em;
  filter: grayscale(1);
  opacity: .7;
}
.logobar-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .logobar { gap: 22px 28px; padding: 22px; }
  .logobar .lb { font-size: 14px; }
}

/* ─── BLOCK 4 — WHAT'S INSIDE ─── */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.format-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.format-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.format-card .ftop {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: nowrap;
  min-height: 72px; /* выравниваем шапки во всех 4 блоках на одну высоту */
}
.format-card .ftop > div:nth-child(2) { flex: 1; }

/* ─── Narrator badge для аудио-блока (Дядя Кузя с микрофоном) ─── */
.narrator-badge {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #FFF7E6 0%, #FFE9C8 100%);
  border: 1.5px dashed var(--honey);
  border-radius: 14px;
  padding: 6px 14px 6px 6px;
  flex-shrink: 0;
}
.narrator-img-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, #fff, rgba(255,255,255,0));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.narrator-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
}
.narrator-cap-top {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.narrator-cap-name {
  font-size: 13px;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1.2;
  text-wrap: balance;
}
.format-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 28px;
  flex-shrink: 0;
}
.format-icon.green { background: var(--green-light); color: var(--green); }
.format-icon.honey { background: var(--honey-light); }
.format-icon.orange { background: var(--orange-light); }
.format-icon.mint { background: var(--mint-light); }
.format-icon img { width: 32px; height: 32px; object-fit: contain; }

/* ─── Topic-tabs внутри format-card ─── */
.topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topic-tabs .ttab {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px 4px 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.topic-tabs .ttab .ttab-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex: 0 0 22px;
}
.topic-tabs .ttab .ttab-emoji {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1;
}
.topic-tabs .ttab .ttab-label { white-space: nowrap; }
.topic-tabs .ttab[data-topic="all"] { padding: 6px 14px; }
.topic-tabs .ttab:hover {
  border-color: var(--green);
  color: var(--green-dark);
}
.topic-tabs .ttab.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.topic-tabs .ttab.ttab-empty {
  opacity: .4;
  cursor: not-allowed;
}
.topic-tabs .ttab.ttab-empty:hover {
  border-color: var(--border);
  color: var(--text-mid);
}
/* Фолбэк-обложка с эмодзи, когда у item нет cover_url */
.cc-img.cc-img-fb {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3;
  border-bottom: 4px solid var(--orange);
}
.cc-img.cc-img-fb .cc-fb-emoji {
  font-size: 56px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}
.cc-img.cc-img-fb .cc-fb-logo {
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
.strip-cover .strip-fb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.strip-cover .strip-fb span { font-size: 32px; color: #fff; }
.strip-cover .strip-fb .strip-fb-logo {
  width: 70%; height: 70%; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

/* ─── Сетка 2×2 для видео и карточек ─── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.content-grid .content-card {
  padding: 0 0 10px;
}
.content-grid .cc-img-wrap {
  position: relative;
  overflow: hidden;
}
.content-grid .cc-img-wrap .cc-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,.95);
  color: var(--orange);
  border-radius: 50%;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  z-index: 2;
}
.content-grid .cc-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid var(--orange);
}
.content-grid .cc-meta {
  font-size: 10px;
  color: var(--text-mid);
  font-weight: 600;
  margin: 6px 12px 0;
}

/* ─── Strips (как Continue Watching из app) для аудио и материалов ─── */
.strips-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.strip-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  transition: background .15s ease;
}
.strip-item.strip-pdf { grid-template-columns: 64px 1fr; }  /* без play-кнопки у материалов */
.strip-item:hover { background: var(--green-light); border-color: var(--green); }
.strip-cover {
  width: 64px; height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.strip-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.strip-pdf .strip-cover {
  position: relative;
}
.strip-pdf .strip-sheet {
  width: 40px; height: 48px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.strip-pdf .strip-sheet::before {
  content: '';
  position: absolute;
  top: 6px; left: 5px; right: 5px;
  height: 3px;
  background: var(--orange);
  border-radius: 1px;
}
.strip-pdf .strip-sheet::after {
  content: '';
  position: absolute;
  top: 13px; left: 5px; right: 5px;
  height: 2px;
  background: rgba(0,0,0,.12);
  border-radius: 1px;
  box-shadow:
    0 6px 0 rgba(0,0,0,.1),
    0 12px 0 rgba(0,0,0,.1),
    0 18px 0 rgba(0,0,0,.1);
}
.strip-body { min-width: 0; }
.strip-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 4px 8px 3px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 5px;
  margin-bottom: 4px;
}
.strip-tag.honey { background: var(--honey-light); color: var(--orange-dark); }
.strip-tag.orange { background: var(--orange-light); color: var(--orange-dark); }
.strip-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 3px;
}
.strip-meta {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 600;
}
.strip-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255,140,0,.3);
  transition: transform .15s ease;
}
.strip-play:hover { transform: scale(1.08); background: var(--orange-dark); }

@media (max-width: 600px) {
  .content-grid { grid-template-columns: 1fr; }
}

.empty {
  padding: 30px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  background: var(--green-light);
  border-radius: 12px;
  font-weight: 600;
}

/* ─── Стара 3-карточная сетка (оставлено для backward compat) ─── */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 6px 0 18px;
}
.mini-item { display: flex; flex-direction: column; gap: 6px; }
.mini-thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2E5C3A, #2E8B60);
}
.mini-thumb .mini-play {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.95);
  color: var(--orange);
  border-radius: 50%;
  font-size: 14px;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.mini-thumb-volcano { background: linear-gradient(135deg, #6B2E1F, #C24A2A 70%, #FF8C00); }
.mini-thumb-volcano::before { content: '🌋'; position: absolute; font-size: 56px; opacity: .35; }
.mini-thumb-rainbow { background: linear-gradient(135deg, #FFB347, #FF6B9D 50%, #6BC0EE); }
.mini-thumb-rainbow::before { content: '🌈'; position: absolute; font-size: 56px; opacity: .55; }
.mini-thumb-whale { background: linear-gradient(135deg, #1E3A5F, #4A7BA6); }
.mini-thumb-whale::before { content: '🐋'; position: absolute; font-size: 56px; opacity: .5; }
.mini-thumb-audio { aspect-ratio: 1; border-radius: 16px; }
.mini-thumb-dino { background: linear-gradient(135deg, #F5A623, #FFB84D); }
.mini-thumb-dino::before { content: '🦖'; position: absolute; font-size: 50px; }
.mini-thumb-rome { background: linear-gradient(135deg, #8B6F47, #C9A876); }
.mini-thumb-rome::before { content: '🏛'; position: absolute; font-size: 50px; }
.mini-thumb-cosmos { background: linear-gradient(135deg, #1B1B3A, #4A2E7A); }
.mini-thumb-cosmos::before { content: '🪐'; position: absolute; font-size: 50px; }

/* Карточки-decks (старые — оставлены для backward compat) */
.mini-card {
  position: relative;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  border: 1px solid var(--border);
}

/* ─── content-card — стиль карточки из приложения ─── */
.content-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  overflow: hidden;
  padding: 0 0 12px;
}
.content-card .cc-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-bottom: 4px solid var(--orange);
}
.content-card .cc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 6px 10px 4px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 6px;
  margin: 10px 12px 0;
}
.content-card .cc-tag.honey { background: var(--honey-light); color: var(--orange-dark); }
.content-card .cc-tag.orange { background: var(--orange-light); color: var(--orange-dark); }
.content-card .cc-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1.25;
  margin: 8px 12px 0;
  text-wrap: balance;
}
.content-card .cc-progress {
  height: 4px;
  background: rgba(0,0,0,.06);
  border-radius: 2px;
  margin: 10px 12px 0;
  overflow: hidden;
}
.content-card .cc-progress-bar {
  width: 40%; height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

/* PDF листы */
.mini-sheet {
  aspect-ratio: 3/4;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.mini-sheet::before {
  content: '';
  position: absolute;
  top: 14px; left: 12px; right: 12px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.mini-sheet::after {
  content: '';
  position: absolute;
  top: 24px; left: 12px; right: 12px;
  height: 2px;
  background: rgba(0,0,0,.1);
  border-radius: 2px;
  box-shadow:
    0 8px 0 rgba(0,0,0,.07),
    0 16px 0 rgba(0,0,0,.07),
    0 24px 0 rgba(0,0,0,.07);
}
.mini-sheet-pdf1 { background: linear-gradient(160deg, #fff, #FFF7E6); }
.mini-sheet-pdf2 { background: linear-gradient(160deg, #fff, #F0FAF4); }
.mini-sheet-pdf3 { background: linear-gradient(160deg, #fff, #FFE8E0); }

.mini-title {
  font-size: 12px; font-weight: 800;
  color: var(--forest); line-height: 1.3;
  text-wrap: balance;
}
.mini-meta {
  font-size: 10px;
  color: var(--text-mid);
  font-weight: 600;
}

@media (max-width: 600px) {
  .mini-grid { grid-template-columns: 1fr; gap: 10px; }
}

.format-card h3 { margin-bottom: 6px; }
.format-card .fdesc {
  color: var(--text-mid); font-size: 15px; line-height: 1.5; margin: 14px 0 22px;
}

.preview-frame {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest), #2E5C3A);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease;
}
.preview-frame:hover { transform: scale(1.01); }
.preview-frame .play-btn {
  width: 76px; height: 76px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 28px;
  color: var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .2s ease;
  z-index: 2;
}
.preview-frame:hover .play-btn { transform: scale(1.08); }
.preview-frame .pf-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  z-index: 2;
}
.preview-frame .pf-todo {
  position: absolute; inset: auto auto 14px 50%; transform: translateX(-50%);
  font-size: 11px; color: rgba(255,255,255,.45);
  letter-spacing: 1px; text-transform: uppercase;
  z-index: 2;
}
.preview-frame.video-bg { background: linear-gradient(135deg, #1A2E22, #2E8B60); }
.preview-frame.audio-bg { background: linear-gradient(135deg, #D4713A, #EDB84A); }

/* audio player UI inside card */
.audio-player {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--honey-light);
  border-radius: 16px;
}
.audio-player .ap-cover {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--honey));
  display: grid; place-items: center;
  font-size: 24px; color: #fff;
  flex-shrink: 0;
}
.audio-player .ap-info { flex: 1; min-width: 0; }
.audio-player .ap-title { font-weight: 800; font-size: 14px; }
.audio-player .ap-sub { font-size: 12px; color: var(--text-mid); margin-top: 2px; }
.audio-player .ap-bar {
  margin-top: 8px;
  height: 4px;
  background: rgba(0,0,0,.08);
  border-radius: 2px;
  overflow: hidden;
}
.audio-player .ap-fill { width: 30%; height: 100%; background: var(--orange); border-radius: 2px; }
.audio-player .ap-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid; place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255,140,0,.4);
  flex-shrink: 0;
}

.examples {
  margin-top: auto;
  padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.examples .e {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

/* card screenshot mock for карточки */
.card-deck-vis {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #EDFAF4, #FFF1DC);
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-deck-vis .deck {
  position: relative;
  width: 60%;
  aspect-ratio: 3/4;
}
.card-deck-vis .deck > div {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  padding: 18px;
  display: flex; flex-direction: column;
  border: 1.5px solid var(--border);
}
.card-deck-vis .deck > div:nth-child(1) { transform: rotate(-6deg) translateX(-30%); }
.card-deck-vis .deck > div:nth-child(2) { transform: rotate(3deg) translateX(-8%); }
.card-deck-vis .deck > div:nth-child(3) { transform: rotate(-1deg) translateX(20%); z-index: 2; }
.card-deck-vis .deck .ct { font-size: 11px; font-weight: 800; color: var(--honey); letter-spacing: 1px; text-transform: uppercase; }
.card-deck-vis .deck .cb { font-size: 15px; font-weight: 800; color: var(--forest); margin-top: 8px; line-height: 1.2; text-wrap: balance; }
.card-deck-vis .deck .ci { font-size: 32px; margin-top: auto; }

/* pdf vis */
.pdf-vis {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FFF1DC, #FDF6E3);
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pdf-vis .sheet {
  width: 56%;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  padding: 18px;
  position: relative;
  transform: rotate(-4deg);
}
.pdf-vis .sheet::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  height: 8px;
  background: var(--orange);
  border-radius: 4px;
}
.pdf-vis .sheet .lines { margin-top: 36px; display: flex; flex-direction: column; gap: 6px; }
.pdf-vis .sheet .lines span { display: block; height: 4px; background: var(--border); border-radius: 2px; }
.pdf-vis .sheet .lines span:nth-child(2) { width: 70%; }
.pdf-vis .sheet .lines span:nth-child(4) { width: 55%; }
.pdf-vis .sheet .doodle {
  position: absolute; bottom: 14px; right: 14px;
  width: 70px; height: 70px;
  border: 3px dashed var(--honey);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px;
}
.pdf-vis .stamp {
  position: absolute;
  top: 16%; right: 8%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 1px;
  transform: rotate(8deg);
  box-shadow: 0 6px 16px rgba(255,140,0,.4);
}

@media (max-width: 800px) {
  .formats-grid { grid-template-columns: 1fr; }
  .format-card { padding: 24px; }
}

/* ── Чевостик-маскот для compare-блока ── */
.cmp-mascot {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.12));
  background: radial-gradient(circle at 50% 60%, #DDF3E5 0%, rgba(216,240,226,0) 70%);
  border-radius: 14px;
  padding: 4px;
}

/* ── Чевостик-маскот для final-cta — гарантированно прозрачный ── */
.final-mascot {
  width: 180px;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.25));
  position: relative;
  z-index: 2;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* ── result-illo когда вместо иллюстрации детей-героев упал Чевостик ── */
.result-illo.result-illo-chev {
  background: var(--orange-light);
}
.result-illo.result-illo-chev img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  border-radius: 0;
  margin: 6%;
}

/* ─── BLOCK 5 — QUIZ ─── */
.quiz-cta {
  background: linear-gradient(160deg, var(--honey-light), #fff);
  border: 2px solid var(--honey);
  border-radius: 32px;
  padding: 48px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.quiz-mascot-wrap {
  position: relative;
  width: 100%;
  max-width: 200px;
  align-self: end;
  margin-bottom: -20px;
}
.quiz-mascot-wrap::before {
  content: '';
  position: absolute;
  inset: 8% 0;
  background: radial-gradient(ellipse at center 60%, rgba(237,184,74,.35), rgba(237,184,74,0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.quiz-mascot {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 14px 24px rgba(237,184,74,.3));
  z-index: 1;
}
.quiz-cta::before {
  content: '🎁';
  position: absolute;
  top: -40px; right: -40px;
  font-size: 200px;
  opacity: .08;
  transform: rotate(15deg);
}
.quiz-cta h2 { margin-bottom: 14px; }
.quiz-cta p { color: var(--text-mid); max-width: 540px; margin-bottom: 24px; font-size: 16px; }
.quiz-cta .qmeta { display: flex; gap: 24px; margin-bottom: 24px; }
.quiz-cta .qmeta .qm {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--text-mid);
}
.quiz-cta .qmeta .qm .ico { color: var(--honey); }

.quiz-vis {
  width: 320px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.quiz-vis .qv-step {
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  color: var(--honey); text-transform: uppercase; margin-bottom: 8px;
}
.quiz-vis .qv-q { font-weight: 800; font-size: 16px; margin-bottom: 16px; line-height: 1.3; }
.quiz-vis .qv-bar { height: 6px; background: var(--green-light); border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.quiz-vis .qv-fill { width: 40%; height: 100%; background: var(--green); border-radius: 3px; }
.quiz-vis .qv-opts { display: flex; flex-direction: column; gap: 8px; }
.quiz-vis .qv-opt {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px; font-weight: 700;
}
.quiz-vis .qv-opt.sel { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }

@media (max-width: 900px) {
  .quiz-cta { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; text-align: center; }
  .quiz-cta p, .quiz-cta .qmeta { margin-left: auto; margin-right: auto; }
  .quiz-cta .qmeta { justify-content: center; }
  .quiz-vis { width: 100%; max-width: 380px; margin: 0 auto; }
}

/* ─── BLOCK 6 — RESULTS ─── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.result-illo {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}
.result-illo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.result-illo img.result-ico { width: 64%; height: 64%; object-fit: contain; margin: auto; filter: drop-shadow(0 4px 8px rgba(0,0,0,.12)); }

/* Чистая иллюстрация Чевостика — без плашки, прозрачный фон, компактный */
.result-illo-clean {
  width: 140px; height: 140px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.result-illo-clean .result-hero-img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.12));
}
.result-illo.honey { background: var(--honey-light); }
.result-illo.orange { background: var(--orange-light); }
.result-illo .todo {
  position: absolute;
  bottom: -8px; right: -8px;
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 9px; letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 999px;
  text-transform: uppercase; font-weight: 800;
}
.result-card h3 { margin-bottom: 12px; }
.result-card .rlist { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; text-align: left; }
.result-card .rlist li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text-mid);
  line-height: 1.5;
  list-style: none;
}
.result-card .rlist li::before {
  content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; line-height: 1.4;
}

@media (max-width: 800px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ─── BLOCK 7 — GAMIFICATION ─── */
.gamify {
  background: linear-gradient(160deg, var(--forest), #1A3828);
  border-radius: 32px;
  padding: 56px;
  color: rgba(255,255,255,.92);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.gamify h2 { color: #fff; }
.gamify h2 em { font-style: normal; color: var(--honey); }
.gamify p { color: rgba(255,255,255,.7); margin-top: 14px; font-size: 17px; }
.gamify-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gamify-feat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 18px;
}
.gamify-feat .gi {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.gamify-feat .gi img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.gamify-feat .gt { font-weight: 800; font-size: 15px; color: #fff; margin-bottom: 4px; }
.gamify-feat .gd { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.4; }

.phone-mock {
  position: relative;
  width: 280px;
  aspect-ratio: 9/19;
  background: #1a1a1a;
  border-radius: 38px;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.phone-mock .screen {
  background: linear-gradient(160deg, var(--green), #82C9A0);
  border-radius: 30px;
  height: 100%;
  padding: 28px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.phone-mock .pm-header {
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; font-weight: 800; font-size: 11px;
}
.phone-mock .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  border: 3px solid var(--honey);
}
.phone-mock .pm-name { color: #fff; font-weight: 900; font-size: 16px; margin-top: 4px; }
.phone-mock .xp-row {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 12px;
  margin-top: 8px;
  color: #fff;
}
.phone-mock .xp-row .xp-lbl { font-size: 10px; opacity: .8; font-weight: 700; }
.phone-mock .xp-row .xp-val { font-size: 18px; font-weight: 900; }
.phone-mock .xp-bar { margin-top: 6px; height: 5px; background: rgba(0,0,0,.2); border-radius: 3px; overflow: hidden; }
.phone-mock .xp-fill { width: 64%; height: 100%; background: var(--honey); border-radius: 3px; }
.phone-mock .streak {
  background: var(--honey);
  color: var(--forest);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.phone-mock .achievs {
  background: rgba(255,255,255,.95);
  border-radius: 18px 18px 0 0;
  flex: 1;
  margin: 12px -18px -18px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone-mock .achiev-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
}
.phone-mock .achiev-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--honey-light);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.phone-mock .achiev-text { font-size: 11px; font-weight: 700; color: var(--forest); line-height: 1.2; }
.phone-mock .achiev-sub { font-size: 9px; color: var(--muted); margin-top: 2px; font-weight: 600; }

@media (max-width: 900px) {
  .gamify { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; text-align: center; }
  .gamify-features { text-align: left; }
}
@media (max-width: 500px) {
  .gamify-features { grid-template-columns: 1fr; }
}

/* ─── BLOCK 8 — PARENT CABINET ─── */
.parent {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.parent-vis {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.parent-vis .pv-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.parent-vis .pv-title { font-weight: 900; font-size: 18px; }
.parent-vis .pv-sub { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.parent-vis .pv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: grid; place-items: center;
  font-size: 22px;
}
.parent-vis .pv-skills { display: flex; flex-direction: column; gap: 12px; }
.parent-vis .pv-skill { }
.parent-vis .pv-skill-top { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.parent-vis .pv-skill-top .v { color: var(--green); }
.parent-vis .pv-skill-bar { height: 8px; background: var(--green-light); border-radius: 4px; overflow: hidden; }
.parent-vis .pv-skill-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--mint)); border-radius: 4px; }

.parent-vis .pv-insight {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-light), var(--honey-light));
  border-radius: 14px;
  border: 1px solid var(--green);
  border-style: dashed;
  display: flex;
  gap: 12px;
}
.parent-vis .pv-insight .ki {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.parent-vis .pv-insight .ki img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.parent-vis .pv-insight .ktx { font-size: 13px; color: var(--text); line-height: 1.4; font-weight: 600; }
.parent-vis .pv-insight .klbl { font-size: 10px; font-weight: 800; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }

.parent-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.parent-list li {
  list-style: none;
  display: flex; gap: 16px; align-items: flex-start;
}
.parent-list .pi {
  /* Иконки на прозрачном фоне — без плашек, компактные 32px */
  width: 32px; height: 32px;
  background: transparent;
  border-radius: 0;
  display: grid; place-items: center;
  font-size: 0;
  flex-shrink: 0;
}
.parent-list .pi.honey,
.parent-list .pi.orange { background: transparent; }
.parent-list .pi img {
  width: 100%; height: 100%; object-fit: contain;
}
.parent-list .pt { font-weight: 800; font-size: 16px; }
.parent-list .pd { font-size: 14px; color: var(--text-mid); margin-top: 4px; line-height: 1.5; }

.ai-hint {
  background: var(--honey-light);
  border-left: 4px solid var(--honey);
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--forest-mid);
  font-weight: 600;
}
.ai-hint strong { color: var(--honey); font-weight: 900; }

@media (max-width: 900px) {
  .parent { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── BLOCK 9 — SKILLS ─── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─── section-head с маскотом сбоку (Дядя Кузя у глобуса) ─── */
.section-head-with-mascot {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
  text-align: left;
}
.section-head-with-mascot .section-head-text {
  text-align: center;
}
.mascot-side {
  display: flex; align-items: center; justify-content: center;
}
.mascot-side-wrap {
  width: 180px; height: 180px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 60%, #DDF3E5 0%, rgba(216,240,226,0) 70%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mascot-side-wrap img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.12));
}
@media (max-width: 800px) {
  .section-head-with-mascot { grid-template-columns: 1fr; gap: 12px; }
  .mascot-side-wrap { width: 140px; height: 140px; margin: 0 auto; }
}
.skill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.skill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.skill .si {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-light); color: var(--green);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 14px;
}
.skill .si img { width: 32px; height: 32px; object-fit: contain; }
.skill:nth-child(2n) .si { background: var(--honey-light); color: var(--honey); }
.skill:nth-child(3n) .si { background: var(--orange-light); color: var(--orange); }
.skill:nth-child(5n) .si { background: var(--mint-light); color: var(--green-dark); }
.skill h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.skill p { font-size: 13px; color: var(--text-mid); line-height: 1.45; font-weight: 500; }

@media (max-width: 900px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .skills-grid { grid-template-columns: 1fr; } }

/* ─── BLOCK 10 — KIDS REVIEWS ─── */
.kids-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.kid-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.kid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kid-vid {
  aspect-ratio: 9/12;
  background: linear-gradient(160deg, var(--mint), var(--green));
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.kid-vid .kicon {
  font-size: 80px;
  filter: grayscale(.2);
}
.kid-vid .play {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--orange);
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.kid-vid .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.kid-vid .todo-stamp {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(255,255,255,.9);
  color: var(--muted);
  font-size: 9px; letter-spacing: 1px; font-weight: 800;
  padding: 4px 8px; border-radius: 6px;
  text-transform: uppercase;
}
.kid-card .kcap {
  padding: 16px 18px;
}
.kid-card .kname { font-weight: 800; font-size: 14px; }
.kid-card .kquote { font-size: 13px; color: var(--text-mid); margin-top: 6px; line-height: 1.4; font-weight: 500; }

/* Постер видео-превью — статичная картинка из 2-й секунды каждого ролика
   (сгенерирована ffmpeg). Заменяет <video> в превью — в Chrome <video>
   перехватывал клики и не открывался lightbox, плюс кадр с #t=0.5 был
   часто несфотогеничный. JPG надёжно работает во всех браузерах. */
.kid-vid .kposter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  z-index: 0;
  pointer-events: none;       /* клики проходят через постер к .kid-card */
  user-select: none;
  -webkit-user-drag: none;
}
.kid-vid .play  { z-index: 2; pointer-events: none; }
.kid-vid .badge { z-index: 2; pointer-events: none; }

/* Lightbox для полноэкранного воспроизведения */
.kid-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.kid-lightbox[hidden] { display: none; }
.kid-lightbox .kl-video {
  max-width: min(100%, 540px);
  max-height: 90vh;
  aspect-ratio: 9/16;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.kid-lightbox .kl-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.kid-lightbox .kl-close:hover { background: rgba(255,255,255,0.25); }

/* Мелкая подпись под видео-карточками — про реальность отзывов и
   сгенерированную видеоформу для конфиденциальности. */
.kids-disclaimer {
  font-size: 12px;
  color: var(--text-light, #8EAE98);
  text-align: center;
  margin: 20px auto 0;
  max-width: 720px;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 900px) { .kids-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── BLOCK 11 — PARENT REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.review {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column;
}
.review .stars {
  display: flex; gap: 2px;
  color: var(--honey);
  margin-bottom: 14px;
  font-size: 16px;
}
.review .rtext {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
  flex: 1;
  text-wrap: pretty;
}
.review .rauth {
  margin-top: 18px;
  display: flex; gap: 12px; align-items: center;
}
.review .ravatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 900;
  flex-shrink: 0;
}
.review .ravatar.honey { background: var(--honey-light); color: var(--honey); }
.review .ravatar.orange { background: var(--orange-light); color: var(--orange); }
.review .ravatar.mint { background: var(--mint-light); color: var(--green); }
.review .rname { font-size: 14px; font-weight: 800; }
.review .rsub { font-size: 12px; color: var(--muted); font-weight: 600; }

.reviews-summary {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
}
.reviews-summary strong { color: var(--honey); font-weight: 900; font-size: 16px; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── BLOCK 12 — PRESS ─── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.press-grid.press-grid-3 { grid-template-columns: repeat(3, 1fr); }
.press-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0 0 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Превью статьи — обложка наверху карточки */
.press-card .pl-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-light);
}
.press-card .pl-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.press-card .pl-thumb.pl-thumb-mif {
  background: linear-gradient(135deg, #FFF7E6 0%, #FFE9C8 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
}
.press-card .pl-thumb.pl-thumb-mif img {
  width: auto; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.15));
}
.press-card .pq, .press-card .pa, .press-card .pl { padding-left: 24px; padding-right: 24px; }
.press-card::before { content: none; }
.press-card .pl { margin-top: 18px; }
.press-card .pa {
  font-size: 12px; color: var(--text-mid);
  margin-top: 8px; line-height: 1.4;
}
.press-card .pl {
  font-size: 13px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  height: 28px;
  display: flex; align-items: center;
}
.press-card .pl img {
  max-height: 26px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .9;
}
.press-card .pq {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--forest);
  text-wrap: balance;
  position: relative;
}

@media (max-width: 900px) { .press-grid.press-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .press-grid { grid-template-columns: 1fr; } }

/* ─── BLOCK 13 — TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.team-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
}
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(160deg, var(--mint), var(--green));
  display: grid; place-items: center;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
}
.team-card h4 { font-size: 16px; }
.team-card .role { font-size: 12px; color: var(--text-mid); margin-top: 4px; font-weight: 600; }

.founder {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}
.founder-photo {
  width: 240px; height: 240px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--honey-light), var(--orange-light));
  display: grid; place-items: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 30%;  /* лицо в правой верхней части кадра */
  display: block;
}
.founder-photo.no-photo {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  background: linear-gradient(160deg, var(--green) 0%, var(--forest-mid) 100%);
}
.founder-text .label-line { font-size: 13px; font-weight: 800; color: var(--orange-dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.founder-text h3 { font-size: 26px; margin-bottom: 16px; }
.founder-text blockquote {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--forest-mid);
  border-left: 4px solid var(--green);
  padding-left: 18px;
  margin: 16px 0;
  text-wrap: pretty;
}
.founder-text .sig {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.founder-text .sig-name { font-weight: 900; font-size: 17px; }
.founder-text .sig-handle { color: var(--text-mid); font-size: 14px; font-weight: 600; }
.founder-text .sig-handle a { color: var(--green); }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .founder-photo { margin: 0 auto; }
  .founder-text blockquote { text-align: left; max-width: 540px; margin: 16px auto; }
}

/* ─── BLOCK 14 — GIFT ─── */
.gift {
  background: linear-gradient(160deg, var(--honey), var(--orange));
  border-radius: 32px;
  padding: 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gift::before {
  content: '🎁';
  position: absolute;
  top: -60px; right: -60px;
  font-size: 280px;
  opacity: .1;
  transform: rotate(-15deg);
}
.gift-vis {
  position: relative;
  display: grid;
  place-items: center;
}
.gift-stack {
  position: relative;
  width: 260px;
  aspect-ratio: 4/5;
}
.gift-stack > div {
  position: absolute; inset: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  padding: 22px;
  display: flex; flex-direction: column;
}
.gift-stack > div:nth-child(1) { transform: rotate(-10deg) translateX(-12%); }
.gift-stack > div:nth-child(2) { transform: rotate(4deg) translateX(8%); }
.gift-stack > div:nth-child(3) { transform: rotate(-2deg); z-index: 2; }
.gift-stack .gh {
  font-size: 10px; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange);
}
.gift-stack .gtitle { font-size: 18px; font-weight: 900; color: var(--forest); margin-top: 8px; line-height: 1.2; text-wrap: balance; }
.gift-stack .gq {
  margin-top: 14px;
  flex: 1;
  background: var(--honey-light);
  border-radius: 12px;
  padding: 14px;
  font-size: 14px; font-weight: 700; color: var(--forest);
  display: flex; align-items: center;
  text-wrap: balance;
}
.gift-stack .gnum {
  font-size: 36px; margin: 8px 0;
  font-weight: 900; color: var(--orange);
  text-align: center;
}

.gift-text .stamp {
  display: inline-block;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.gift-text h2 { color: #fff; }
.gift-text p { color: rgba(255,255,255,.92); font-size: 17px; margin: 14px 0 28px; max-width: 520px; line-height: 1.5; text-wrap: pretty; }
.gift-text .btn-cta { background: #fff; color: var(--orange-dark); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.gift-text .btn-cta:hover { background: var(--forest); color: #fff; }

@media (max-width: 900px) {
  .gift { grid-template-columns: 1fr; padding: 36px 24px; text-align: center; }
  .gift-vis { order: -1; height: 320px; }
}

/* ─── BLOCK 15 — PRICING ─── */
.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.timer .tlbl {
  font-size: 14px; font-weight: 700; color: var(--text-mid);
}
.timer .tnums { display: flex; gap: 8px; }
.timer .tcell {
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  min-width: 48px; text-align: center;
  display: flex; flex-direction: column;
  line-height: 1;
}
.timer .tcell small { font-size: 9px; opacity: .6; margin-top: 4px; letter-spacing: .5px; font-weight: 700; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 32px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.hit  { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 12px 28px rgba(255,140,0,.18); }
.plan.hit:hover { transform: translateY(-10px); }
.plan.best { border-color: var(--green);  background: linear-gradient(170deg, var(--green-light), #fff); }
.plan .pbadge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 900;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,140,0,.4);
}
.plan.best .pbadge { background: var(--green); box-shadow: 0 4px 12px rgba(46,139,96,.4); }
.plan .pname { font-size: 15px; font-weight: 800; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.plan .pprice {
  font-size: 40px; font-weight: 900; color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan .pprice .pcur { font-size: 22px; margin-left: 2px; }
.plan .pper  { font-size: 13px; color: var(--text-mid); margin-top: 6px; font-weight: 600; }
.plan .poldp {
  font-size: 12px; color: var(--muted);
  margin-top: 6px; font-weight: 600;
  white-space: nowrap;
}
.plan .poldp .pstrike { text-decoration: line-through; }
.plan .pdesc { display: none; }            /* содержимое — в .pf */
.plan ul.pf {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.plan .pf li {
  list-style: none;
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13.5px; font-weight: 600; color: var(--forest-mid);
  line-height: 1.4;
}
.plan .pf li::before {
  content: '✓'; color: var(--green); font-weight: 900;
  flex-shrink: 0; line-height: 1.4;
}
.plan .pf li.bonus { color: var(--orange-dark); }
.plan .pf li.bonus::before { content: '🎁'; color: inherit; }
.plan .pbtn {
  margin-top: 22px;
  display: block;
  text-align: center;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  transition: background .15s ease;
}
.plan.hit .pbtn, .plan.best .pbtn { background: var(--orange); color: #fff; box-shadow: var(--shadow-cta); }
.plan.hit .pbtn:hover, .plan.best .pbtn:hover { background: var(--orange-dark); }
.plan .pbtn:hover { background: var(--green); color: #fff; }

.pricing-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan.hit { transform: none; }
}

/* ─── BLOCK 16 — DOWNLOAD ─── */
.download {
  background: var(--green-light);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.download h2 { margin-bottom: 14px; }
.download p { color: var(--text-mid); font-size: 16px; max-width: 380px; }
.download-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  transition: background .15s ease, transform .15s ease;
}
.store-btn:hover { background: #000; transform: translateY(-2px); }
.store-btn.web { background: #fff; color: var(--forest); border: 2px solid var(--border); }
.store-btn.web:hover { background: var(--green-light); border-color: var(--green); }
.store-btn .si { font-size: 28px; }
.store-btn .stop { font-size: 11px; opacity: .7; font-weight: 600; }
.store-btn .sbot { font-size: 16px; font-weight: 800; line-height: 1.1; margin-top: 2px; }

/* Кнопки магазинов которые ещё не доступны (Apple проверяет, Android и RuStore в разработке).
   Визуально приглушённые, без hover-эффекта, курсор default — юзер понимает что ссылка не активна. */
.store-btn.store-btn-soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.store-btn.store-btn-soon:hover {
  background: var(--forest);
  transform: none;
}

/* Текстовые ссылки на магазины в footer — приглушённые до запуска */
.soon-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

@media (max-width: 900px) {
  .download { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; text-align: center; }
  .download p { margin: 0 auto; }
}
@media (max-width: 500px) { .download-buttons { grid-template-columns: 1fr; } }

/* ─── BLOCK 17 — FAQ ─── */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  color: var(--forest);
  transition: background .15s ease;
}
.faq-q:hover { background: var(--green-light); }
.faq-q .icn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  transition: transform .2s ease, background .15s ease;
}
.faq-item.open .icn { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a .inner {
  padding: 0 24px 22px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  text-wrap: pretty;
}

/* ─── BLOCK 18 — FINAL CTA ─── */
.final {
  background: linear-gradient(160deg, var(--orange), #FFB55A);
  border-radius: 32px;
  padding: 80px 56px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.final h2 { color: #fff; font-size: clamp(38px, 5vw, 64px); position: relative; }
.final p { font-size: 22px; color: rgba(255,255,255,.92); margin: 16px 0 36px; font-weight: 600; position: relative; }
.final .btn-cta { position: relative; }
.final-pills {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-top: 28px;
  position: relative;
}
.final-pills .fp {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
}

@media (max-width: 700px) {
  .final { padding: 56px 24px; }
  .final p { font-size: 17px; }
}

/* ─── BLOCK 19 — FOOTER ─── */
footer {
  background: var(--forest);
  color: rgba(255,255,255,.8);
  padding: 56px 0 24px;
  margin-top: 80px;
}
footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
footer h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer .flogo {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 14px;
}
footer .ftag { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.55); max-width: 280px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s ease; }
footer ul a:hover { color: var(--mint); }
footer .legal {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
footer .legal .container { display: contents; }
footer .socials { display: flex; gap: 10px; margin-top: 12px; }
footer .socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 16px;
  color: #fff;
  transition: background .15s ease;
}
footer .socials a:hover { background: var(--green); }
@media (max-width: 900px) {
  footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  footer .container { grid-template-columns: 1fr; }
}

/* ─── STICKY MOBILE CTA ─── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 16px env(safe-area-inset-bottom, 12px);
  z-index: 95;
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
}
.sticky-cta .btn-cta {
  width: 100%; font-size: 16px; padding: 14px;
}
@media (max-width: 600px) {
  .sticky-cta.show { display: block; }
  body.has-sticky { padding-bottom: 80px; }
}

/* ─── QUIZ MODAL ─── */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-bg.show { display: flex; opacity: 1; }
.modal-box {
  background: #fff;
  border-radius: 28px;
  max-width: 560px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: translateY(40px);
  transition: transform .3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.modal-bg.show .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--text-mid);
  transition: background .15s ease;
}
.modal-close:hover { background: var(--green); color: #fff; }

/* ── Player modal (видео/аудио превью) ── */
.player-modal .player-box {
  max-width: 720px;
  padding: 28px 24px 24px;
}
.player-modal .player-title {
  font-family: 'Unbounded', 'Craftwork Grotesk', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--forest);
  margin-bottom: 4px; line-height: 1.25;
  padding-right: 40px;
}
.player-modal .player-tag {
  font-size: 12px; font-weight: 800; letter-spacing: .6px;
  color: var(--green-dark); text-transform: uppercase; margin-bottom: 14px;
}
.player-modal .player-media {
  background: #0F1F1A;
  border-radius: 16px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.player-modal .player-media video {
  width: 100%; max-height: 70vh; display: block; background: #000;
}
.player-modal .player-audio-wrap {
  width: 100%; padding: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: linear-gradient(135deg, #1B5A3E 0%, #2E8B60 100%);
}
.player-modal .player-audio-cover {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 14px; box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.player-modal .player-audio-wrap audio {
  width: 100%; max-width: 480px;
}
.player-modal .player-cta {
  margin-top: 18px; text-align: center;
}
.player-modal .player-cta .btn { display: inline-flex; }
.player-modal .player-fine {
  font-size: 12px; color: var(--muted); margin-top: 10px;
}

/* ── Превью-бейдж поверх плеера ── */
.player-modal .player-media-wrap { position: relative; }
.player-modal .player-preview-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(0,0,0,.75); color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 6px 10px; border-radius: 999px;
  letter-spacing: .3px;
  pointer-events: none;
}

/* ── Lock-оверлей: показывается когда превью закончилось ── */
.player-modal .player-lock-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 35, 28, .92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 5;
}
.player-modal .player-lock-overlay.show { display: flex; }
.player-modal .player-lock-inner {
  max-width: 420px; width: 100%;
  text-align: center;
  color: #fff;
}
.player-modal .player-lock-ico {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}
.player-modal .player-lock-ico img { width: 36px; height: 36px; }
.player-modal .player-lock-title {
  font-family: 'Unbounded','Craftwork Grotesk',sans-serif;
  font-size: 22px; font-weight: 800; margin-bottom: 6px;
}
.player-modal .player-lock-sub {
  font-size: 14px; line-height: 1.5; opacity: .88;
  margin-bottom: 18px;
}
.player-modal .player-lock-fine {
  margin-top: 12px; font-size: 12px; opacity: .7;
}

/* CTA-полоса под медиа: «Это превью. Открой подписку» */
.player-modal .player-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-top: 14px;
  background: var(--green-light);
  border-radius: 14px;
  padding: 12px 16px;
}
.player-modal .player-cta-text { font-size: 14px; color: var(--forest); flex: 1; min-width: 220px; }
.player-modal .player-cta .btn { white-space: nowrap; }

.cc-playable { cursor: pointer; }
.cc-playable:hover .cc-img { transform: scale(1.02); }
.cc-playable:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.strip-playable { cursor: pointer; }
.strip-playable:hover { background: var(--green-light); }

/* ─── МОБИЛЬНАЯ ВЕРСИЯ — правки только для ≤768px ─────────────────────
   ВНИМАНИЕ: всё, что выше — десктоп-стили, не менять.
   Здесь только то, что относится к новым блокам этой сессии. */
@media (max-width: 768px) {
  /* Плеер модалка — компактная */
  .player-modal .player-box { padding: 22px 16px 18px; border-radius: 18px; }
  .player-modal .player-title { font-size: 17px; padding-right: 36px; }
  .player-modal .player-tag { font-size: 11px; margin-bottom: 10px; }
  .player-modal .player-media { min-height: 180px; border-radius: 12px; }
  .player-modal .player-media video { max-height: 50vh; }
  .player-modal .player-audio-wrap { padding: 14px; }
  .player-modal .player-audio-cover { width: 140px; height: 140px; }
  .player-modal .player-preview-badge {
    top: 8px; left: 8px;
    font-size: 11px; padding: 5px 8px;
  }
  .player-modal .player-lock-overlay { padding: 16px; border-radius: 12px; }
  .player-modal .player-lock-ico { width: 52px; height: 52px; margin-bottom: 10px; }
  .player-modal .player-lock-ico img { width: 28px; height: 28px; }
  .player-modal .player-lock-title { font-size: 18px; }
  .player-modal .player-lock-sub { font-size: 13px; margin-bottom: 14px; }
  .player-modal .player-cta {
    flex-direction: column; align-items: stretch; text-align: center;
    padding: 12px 12px;
  }
  .player-modal .player-cta-text { min-width: 0; }
  .player-modal .player-cta .btn { width: 100%; justify-content: center; }

  /* Press-карточки — обложка статьи покороче на мобиле */
  .press-card .pl-thumb { aspect-ratio: 16/10; }
  .press-card .pq, .press-card .pa, .press-card .pl {
    padding-left: 18px; padding-right: 18px;
  }
  .press-card { padding-bottom: 18px; }
  .press-card .pq { font-size: 15px; }
  .press-card .pa { font-size: 11.5px; }

  /* Карточки «Через 3 месяца» — Чевостик чуть меньше */
  .result-illo-clean { width: 120px; height: 120px; margin-bottom: 14px; }

  /* Format-card шапка — на узком экране заголовок может быть выше иконки.
     Сохраняем минимальную высоту чтобы 4 блока выровнялись, но позволяем
     заголовку быть в 2 строки. */
  .format-card .ftop { min-height: 0; gap: 12px; }

  /* Иконки .pi в parent-list — ещё компактнее */
  .parent-list .pi { width: 28px; height: 28px; }

  /* Topic-tabs — обеспечиваем горизонтальную прокрутку чтобы не съезжало */
  .topic-tabs { flex-wrap: wrap; }
  .topic-tabs .ttab { font-size: 11px; padding: 4px 10px 4px 4px; }
  .topic-tabs .ttab .ttab-icon,
  .topic-tabs .ttab .ttab-emoji { width: 20px; height: 20px; flex: 0 0 20px; }

  /* Финал-маскот — поменьше на мобиле */
  .final-mascot { width: 140px; }

  /* RM-recos (отчёт) — одна колонка на мобиле */
  .rm-recos { grid-template-columns: 1fr; }
}

/* Очень узкие телефоны (≤380px) — дополнительный compact */
@media (max-width: 380px) {
  .player-modal .player-box { padding: 18px 12px 14px; }
  .player-modal .player-title { font-size: 16px; padding-right: 32px; }
  .result-illo-clean { width: 110px; height: 110px; }
}

/* ─── ГЛОБАЛЬНЫЕ МОБИЛЬНЫЕ ФИКСЫ ────────────────────────────────────
   Лечат горизонтальный скролл: кнопки с nowrap, гриды на 1 колонку,
   уменьшение размеров. Только для ≤640px. */
@media (max-width: 640px) {
  /* Контейнер — меньше боковых полей */
  .container { padding: 0 16px; }

  /* h1/h2 — компактнее, разрешить перенос длинных слов */
  h1 { font-size: clamp(28px, 8vw, 38px) !important; word-break: normal; overflow-wrap: break-word; hyphens: auto; }
  h2 { font-size: clamp(24px, 6vw, 34px) !important; overflow-wrap: break-word; }
  .hero-sub { font-size: 15px; }

  /* КНОПКИ — снимаем nowrap, разрешаем перенос */
  .btn { white-space: normal; padding: 12px 18px; font-size: 15px; }
  .btn-cta { padding: 14px 20px; font-size: 16px; }
  .btn-cta.big { padding: 16px 22px; font-size: 16px; border-radius: 14px; }
  .btn-cta.huge { padding: 18px 24px; font-size: 17px; border-radius: 16px; }
  .hero-cta-row .btn-cta.big { width: 100%; }

  /* HERO grid — на мобиле уже 1 колонка из @media 768, добавляем компакт */
  .hero { padding-top: 72px; padding-bottom: 40px; }
  .trust-pills { gap: 8px; }
  .trust-pill { font-size: 12px; padding: 6px 12px 6px 8px; }
  .trust-pill .ico { width: 18px; height: 18px; font-size: 11px; }

  /* PROOF-STATS — четыре цифры в 4 строки на мобиле, чтобы не обрезались */
  .proof-stats { grid-template-columns: 1fr; gap: 10px; }
  .proof-stat { padding: 20px 18px; }
  .proof-stat .num { font-size: clamp(28px, 9vw, 40px); }

  /* FORMATS — на мобиле всегда 1 колонка */
  .formats-grid { grid-template-columns: 1fr; gap: 16px; }
  .format-card { padding: 22px 18px; }

  /* QUIZ — на мобиле всегда 1 колонка, маскот меньше */
  .quiz-cta { grid-template-columns: 1fr !important; padding: 28px 20px; gap: 18px; }
  .quiz-mascot-wrap { max-width: 140px; margin: 0 auto -10px; align-self: center; }
  .quiz-vis { padding: 16px; }
  .quiz-cta .qmeta { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .quiz-cta .qmeta .qm { font-size: 12px; }
  .quiz-cta p { font-size: 14px; }

  /* COMPARE — 1 колонка */
  .compare-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .compare-card { padding: 22px 18px !important; }

  /* RESULTS — 1 колонка */
  .results-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .result-card { padding: 26px 22px; }

  /* PARENT-VIS блок — 1 колонка */
  .parent-grid { grid-template-columns: 1fr !important; }

  /* PRICING — 1 колонка */
  .pricing-grid { grid-template-columns: 1fr !important; }

  /* GIFT, GAMIFY, FAQ — 1 колонка */
  .gift, .gamify, .gamify-features { grid-template-columns: 1fr !important; }

  /* SOFT-SKILLS, KIDS, REVIEWS — уже на 2 колонки на 900px, делаем 1 */
  .skills-grid, .kids-grid, .reviews-grid, .team-grid {
    grid-template-columns: 1fr !important;
  }

  /* TOPIC-TABS — горизонтальный скролл вместо обрезки */
  .topic-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 14px -6px 12px;
    padding: 0 6px 12px;
  }
  .topic-tabs::-webkit-scrollbar { display: none; }
  .topic-tabs .ttab { flex-shrink: 0; }

  /* FINAL CTA блок */
  .final { padding: 48px 22px; border-radius: 22px; }
  .final h2 { font-size: clamp(28px, 7vw, 40px) !important; }
  .final p { font-size: 16px; margin: 12px 0 20px; }
  .final .btn-cta.huge { width: 100%; padding: 16px 20px; font-size: 17px; }
  .final-pills { gap: 8px; }
  .final-pills .fp { font-size: 12px; padding: 6px 10px; }

  /* HERO-CTA microcopy */
  .cta-microcopy { font-size: 12px; flex-wrap: wrap; }

  /* PARENT-LIST padding */
  .parent-list .pt { font-size: 15px; }
  .parent-list .pd { font-size: 13px; }

  /* REPORT MOCKUP — внутренние paddings меньше */
  .rm-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .rm-stat { padding: 14px 10px; }
  .rm-footer { margin: 22px -22px 0; padding: 18px 22px; }
}

/* Дополнительно для очень узких ≤380px — самые большие h1 */
@media (max-width: 380px) {
  h1 { font-size: 26px !important; }
  h2 { font-size: 22px !important; }
  .hero-sub { font-size: 14px; }
  .container { padding: 0 14px; }
}

/* ─── ФИКС ОВЕРФЛОУ ВНУТРИ FORMAT-CARD НА МОБИЛЕ ─────────────────────
   Заголовок «2000+ коротких видео» и превью обрезались за правый край.
   Корень: flex-wrap: nowrap + отсутствие min-width: 0 у дочерних. */
@media (max-width: 640px) {
  .format-card { overflow: hidden; }
  .format-card .ftop {
    flex-wrap: wrap; /* разрешаем перенос заголовка под иконку если что */
    min-height: 0;
    gap: 12px;
  }
  .format-card .ftop > div { min-width: 0; }
  .format-card .ftop > div:nth-child(2) {
    flex: 1 1 100%; /* заголовок и описание занимают всю строку под иконкой */
    min-width: 0;
  }
  .format-icon { width: 44px; height: 44px; border-radius: 12px; }
  .format-icon img { width: 26px; height: 26px; }
  .format-card h3 { font-size: 20px; line-height: 1.15; }
  .format-card .fdesc { font-size: 13px; }

  /* Контентная сетка — 1 колонка, превью контейнер строго в ширину родителя */
  .content-grid { grid-template-columns: 1fr; gap: 12px; }
  .content-grid .content-card { max-width: 100%; }
  .content-grid .cc-img-wrap { max-width: 100%; overflow: hidden; border-radius: 12px; }
  .content-grid .cc-img { width: 100%; max-width: 100%; aspect-ratio: 16/10; }
  .cc-title { font-size: 14px; padding: 8px 12px 0; }

  /* На мобиле показываем только 2 видео/карточки из 4 (третий и четвертый скрыты) */
  .content-grid > .content-card:nth-child(n+3) { display: none; }

  /* Strips (аудио и материалы) — 2 строки максимум вместо 4 */
  .strips-list > .strip-item:nth-child(n+3) { display: none; }
  .strip-item { padding: 8px; gap: 10px; grid-template-columns: 56px 1fr auto; }
  .strip-item.strip-pdf { grid-template-columns: 56px 1fr; }
  .strip-cover { width: 56px; height: 56px; }
  .strip-title { font-size: 14px; }
  .strip-meta { font-size: 11px; }
  .strip-tag { font-size: 10px; }

  /* Reviews — только 2 на мобиле */
  .reviews-grid > .review-card:nth-child(n+3) { display: none; }

  /* Kids — 2 макс */
  .kids-grid > .kid-card:nth-child(n+3) { display: none; }
}
.strip-playable:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.quiz-prog {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.quiz-prog .step-num {
  font-size: 13px; font-weight: 800; color: var(--green);
}
.quiz-prog .bar { flex: 1; height: 6px; background: var(--green-light); border-radius: 3px; overflow: hidden; }
.quiz-prog .fill { height: 100%; background: var(--green); border-radius: 3px; transition: width .3s ease; }
.quiz-q { font-size: 22px; font-weight: 900; margin-bottom: 8px; line-height: 1.25; text-wrap: balance; }
.quiz-sub { font-size: 13px; color: var(--text-mid); line-height: 1.45; margin-bottom: 18px; font-weight: 500; }
.quiz-hint { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; font-weight: 600; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opts.multi { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.quiz-opts.compact { display: grid; grid-template-columns: repeat(7,1fr); gap: 8px; }
.quiz-opts.compact .quiz-opt { padding: 14px 8px; text-align: center; justify-content: center; font-size: 18px; font-weight: 900; }
.quiz-opt {
  padding: 16px 18px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 15px; font-weight: 700;
  text-align: left;
  background: #fff;
  color: var(--forest);
  display: flex; align-items: center; gap: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.quiz-opt:hover { border-color: var(--green); background: var(--green-light); }
.quiz-opt.selected { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
.quiz-opt .ico { font-size: 20px; flex-shrink: 0; }
.quiz-opt .ico.ico-img {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
}
.quiz-opt .ico.ico-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.quiz-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 26px;
}
.quiz-actions .btn-back {
  font-size: 14px; color: var(--text-mid); font-weight: 700;
  padding: 8px 0;
}
.quiz-actions .btn-back:hover { color: var(--green); }
.quiz-final-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  margin: 20px 0 24px;
}
.quiz-final-grid .tile {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--green), var(--mint));
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 20px;
  color: #fff;
}
.quiz-final-grid .tile:nth-child(2n) { background: linear-gradient(135deg, var(--honey), var(--orange)); }
.quiz-final-grid .tile:nth-child(3n) { background: linear-gradient(135deg, var(--forest), var(--green)); }
.quiz-final-grid .tile.tile-img { padding: 14%; }
.quiz-final-grid .tile.tile-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.quiz-form { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.quiz-form input {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--forest);
  transition: border-color .15s ease;
  outline: none;
}
.quiz-form input:focus { border-color: var(--green); }
.quiz-fine { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

@media (max-width: 500px) {
  .modal-box { padding: 28px 20px; }
  .quiz-opts.multi { grid-template-columns: 1fr; }
  .quiz-final-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ─── POPUP BLOCK 20 ─── */
.popup .modal-box {
  text-align: center;
  max-width: 460px;
}
.popup-vis {
  width: 140px; height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--honey-light), var(--orange-light));
  display: grid; place-items: center;
  font-size: 72px;
  position: relative;
  animation: pop 3s ease-in-out infinite;
}
@keyframes pop {
  0%,100% { transform: scale(1) rotate(-3deg); }
  50% { transform: scale(1.05) rotate(3deg); }
}
.popup h3 { font-size: 28px; margin-bottom: 12px; text-wrap: balance; }
.popup p { color: var(--text-mid); font-size: 15px; margin-bottom: 18px; line-height: 1.5; text-wrap: pretty; }
.popup p strong { color: var(--forest); font-weight: 900; }
.popup-bullets {
  list-style: none;
  text-align: left;
  margin: 0 auto 22px;
  max-width: 340px;
  display: flex; flex-direction: column; gap: 10px;
}
.popup-bullets li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--forest-mid); font-weight: 600; line-height: 1.4;
}
.popup-bullets li::before {
  content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0;
}

/* ═════════════ ОБЪЕДИНЕННЫЙ ЛЕНДИНГ — ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ═════════════ */

/* Скрываем все TODO-маркеры в проде */
.todo, .todo-stamp, .pf-todo { display: none !important; }

/* ── Hero eyebrow «3 дня бесплатно» — оранжевый ── */
.eyebrow-offer {
  background: linear-gradient(135deg, #FFE4C4 0%, #FFD89B 100%);
  color: #7A3F00;
  border: 1px solid #FFC56B;
}

/* ── Hero magic-tablet ── */
.hero-stage {
  position: relative;
  min-height: 480px;
  background: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stage .hero-floats { position: absolute; inset: 0; pointer-events: none; }
.hero-stage .hero-floats .f {
  position: absolute;
  font-size: 38px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
  animation: float 6s ease-in-out infinite;
}
.hero-stage .hero-floats .f1 { top: 8%;  left: 8%;  animation-delay: 0s; }
.hero-stage .hero-floats .f2 { top: 12%; right: 10%; animation-delay: 1.2s; }
.hero-stage .hero-floats .f3 { bottom: 22%; left: 6%; animation-delay: 2.4s; }
.hero-stage .hero-floats .f4 { bottom: 14%; right: 14%; animation-delay: 3.6s; }
.hero-stage .hero-floats .f5 { top: 48%; right: 4%; animation-delay: 4.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

.magic-tablet {
  position: relative;
  width: 280px;
  max-width: 70%;
  background: linear-gradient(160deg, #1A3A4A 0%, #0F2A38 100%);
  border-radius: 28px;
  padding: 14px;
  box-shadow:
    0 20px 50px rgba(0,0,0,.25),
    inset 0 0 0 2px rgba(255,255,255,.08);
  z-index: 2;
}
.mt-screen {
  background: linear-gradient(180deg, #fff 0%, #F8FAF7 100%);
  border-radius: 18px;
  padding: 16px 14px 18px;
  min-height: 280px;
}
.mt-title {
  font-family: 'Unbounded', 'Craftwork Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #1B5A3E;
  margin-bottom: 14px;
  line-height: 1.35;
}
.mt-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  border: 1px solid #EDFAF4;
}
.mt-thumb {
  position: relative;
  height: 130px;
  background: linear-gradient(135deg, #FFE66D 0%, #FFA94D 100%);
  display: flex; align-items: center; justify-content: center;
}
.mt-emoji-a, .mt-emoji-b {
  position: absolute;
  font-size: 42px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.15));
}
.mt-emoji-a { left: 24%; top: 22%; }
.mt-emoji-b { right: 20%; bottom: 18%; font-size: 32px; }
.mt-play {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  z-index: 2;
}
.mt-dur {
  position: absolute;
  bottom: 8px; right: 10px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 7px; border-radius: 6px;
}
.mt-meta { display: flex; gap: 6px; padding: 10px 12px 4px; }
.mt-tag {
  background: #EDFAF4; color: #2E8B60;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.mt-label {
  padding: 4px 12px 12px;
  font-family: 'Craftwork Grotesk', sans-serif;
  font-size: 13px; font-weight: 800;
  color: #1f2937;
}

.hero-bubble {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 22px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1B5A3E;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 8px 24px rgba(46,139,96,.18);
  z-index: 3;
}
.hero-chars { display: none; }   /* в magic-tablet версии скрываем дублирующих персонажей */

@media (max-width: 768px) {
  .hero-stage { min-height: 460px; padding: 22px; }
  .magic-tablet { width: 78%; }
  .mt-screen { min-height: 240px; }
  .hero-bubble { left: 14px; right: 14px; bottom: 14px; padding: 11px 14px; font-size: 12px; }
}

/* ── Compare-блок «YouTube vs Чевостик» ── */
.compare-sec { padding: 60px 0; background: linear-gradient(180deg, #fff 0%, #F8FAF7 100%); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.compare-card {
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  border: 2px solid transparent;
}
.compare-card.bad {
  background: linear-gradient(135deg, #FFF0F0 0%, #FFE0E0 100%);
  border-color: #FFC0C0;
}
.compare-card.good {
  background: linear-gradient(135deg, #EDFAF4 0%, #C8EDDA 100%);
  border-color: #82C9A0;
}
.cmp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; min-height: 64px; }
.cmp-emoji { font-size: 44px; line-height: 1; flex-shrink: 0; }
.cmp-title {
  font-family: 'Unbounded', 'Craftwork Grotesk', sans-serif;
  font-size: 20px; font-weight: 900; line-height: 1.2;
  color: #1f2937;
}
.cmp-sub { font-size: 13px; color: #6b7280; margin-top: 2px; }
.cmp-list { list-style: none; padding: 0; margin: 0; }
.cmp-list li {
  display: flex; gap: 10px;
  font-size: 15px; line-height: 1.5;
  padding: 8px 0;
  color: #1f2937;
  align-items: flex-start;
}
.cmp-ico {
  width: 20px; height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 2D Чевостик в compare-блоке good — на прозрачном фоне, без плашек */
.cmp-mascot-wrap {
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.cmp-mascot-wrap .cmp-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.15));
  border-radius: 0;
  padding: 0;
}

.quote-strip {
  margin-top: 28px;
  background: linear-gradient(135deg, #FFF7E6 0%, #FFE9C8 100%);
  border: 2px dashed #FFC56B;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.qs-emoji { font-size: 28px; }
.qs-text {
  font-family: 'Craftwork Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #7A3F00;
  flex: 1; min-width: 200px;
  line-height: 1.4;
}
.qs-text strong { color: #C2410C; }
.qs-meta { font-size: 12px; color: #8C5A1A; font-style: italic; }

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ── MOCKUP_REPORT — макет AI-отчёта ── */
.report-mockup-wrap {
  margin-top: 36px;
  padding: 0 8px;
}
.report-mockup {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff 0%, #F8FAF7 100%);
  border-radius: 28px;
  padding: 28px 32px 0;
  box-shadow: 0 20px 60px rgba(46,139,96,.15);
  border: 1px solid #DFF6F4;
  overflow: hidden;
  position: relative;
}
.rm-header { text-align: center; margin-bottom: 26px; }
.rm-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2E8B60 0%, #1B5A3E 100%);
  color: #FFE66D;
  font-size: 11px; font-weight: 900;
  padding: 6px 14px; border-radius: 50px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.rm-title {
  font-family: 'Unbounded', 'Craftwork Grotesk', sans-serif;
  font-size: 24px; font-weight: 900;
  color: #1f2937;
  margin: 0 0 6px;
}
.rm-child { font-size: 16px; font-weight: 700; color: #2E8B60; }
.rm-period { font-size: 12px; color: #9ca3af; margin-top: 4px; }

.rm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.rm-stat {
  background: #EDFAF4;
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
}
.rm-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px; font-weight: 900;
  color: #2E8B60;
  line-height: 1;
}
.rm-stat-lbl { font-size: 11px; color: #6b7280; margin-top: 6px; line-height: 1.3; }

.rm-section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px; font-weight: 800;
  color: #1f2937;
  margin: 24px 0 12px;
}

.rm-disposition { display: flex; flex-direction: column; gap: 14px; }
.rm-disp-row {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
}
.rm-disp-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-size: 14px; font-weight: 700;
}
.rm-disp-pct {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px; font-weight: 900;
  color: #10B981;
}
.rm-disp-bar {
  height: 8px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.rm-disp-fill { height: 100%; border-radius: 4px; }
.rm-disp-exp { font-size: 12px; color: #6b7280; line-height: 1.5; }

.rm-insight {
  background: #EDFAF4;
  border-left: 4px solid #2E8B60;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #1B5A3E;
  font-style: italic;
}
.rm-insight strong { color: #2E8B60; font-style: normal; }

.rm-recos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.rm-reco {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.rm-reco-num {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 14px;
  background: #2E8B60; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
/* Заблокированные рекомендации показываем без блюра — это смотрелось как
   баг. Делаем стилизованный «locked»: пунктирная рамка + замок + светлый фон. */
.rm-reco-blur {
  background: rgba(46, 139, 96, 0.06);
  border: 1.5px dashed rgba(46, 139, 96, 0.35);
  color: rgba(46, 139, 96, 0.85);
  user-select: none;
}
.rm-reco-blur .rm-reco-num {
  background: rgba(46, 139, 96, 0.18);
  color: #1B5A3E;
}
.rm-reco-blur::after {
  content: '';
  width: 18px; height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  background: url('icons/lock_closed.webp') center/contain no-repeat;
  opacity: .8;
}

.rm-footer {
  margin: 28px -32px 0;
  background: linear-gradient(135deg, #1A3A4A 0%, #0F2A38 100%);
  padding: 22px 32px;
  display: flex; align-items: center; gap: 18px;
  color: #fff;
  flex-wrap: wrap;
}
.rm-lock { font-size: 32px; flex-shrink: 0; }
.rm-foot-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px; font-weight: 800;
  color: #FFE66D;
}
.rm-foot-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
  line-height: 1.4;
}
.rm-footer .btn-cta {
  background: #FF8C00;
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .report-mockup { padding: 22px 18px 0; }
  .rm-stats { grid-template-columns: repeat(2, 1fr); }
  .rm-recos { grid-template-columns: 1fr; }
  .rm-footer { margin: 24px -18px 0; padding: 18px; }
  .rm-footer .btn-cta { margin-left: 0; margin-top: 8px; width: 100%; text-align: center; }
}
