/* ═══════════════════════════════════════════════════════════
   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: 120px;
  padding-bottom: 80px;
  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;
  aspect-ratio: 1;
  border-radius: 32px;
  background: linear-gradient(160deg, #2E8B60, #82C9A0);
  display: grid;
  place-items: center;
  box-shadow: 0 30px 80px -10px rgba(46,139,96,.35);
  overflow: hidden;
}
.hero-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.15) 1px, transparent 0);
  background-size: 20px 20px;
}
.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-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; }
.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-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: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.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; }
}

/* ─── 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: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.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;
}
.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 { font-size: 22px; margin-bottom: 10px; }
.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 {
  width: 40px; height: 40px;
  background: var(--green-light); color: var(--green);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.parent-list .pi.honey { background: var(--honey-light); color: var(--honey); }
.parent-list .pi.orange { background: var(--orange-light); color: var(--orange); }
.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;
}
.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: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; }

@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-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.press-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 22px;
  font-size: 64px;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}
.press-card .pl {
  font-size: 13px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.press-card .pq {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--forest);
  text-wrap: balance;
  position: relative;
}

@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;
}
.founder-photo .todo {
  position: absolute;
  bottom: 12px; right: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 9px; font-weight: 800;
  padding: 4px 8px; border-radius: 6px;
  letter-spacing: .5px;
}
.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(4, 1fr);
  gap: 16px;
}
.plan {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px;
  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); }
.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: 4px; }
.plan .pprice {
  font-size: 36px; font-weight: 900; color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan .pprice .pcur { font-size: 22px; }
.plan .pper { font-size: 13px; color: var(--text-mid); margin-top: 4px; font-weight: 600; }
.plan .poldp { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-top: 8px; font-weight: 600; }
.plan .pdesc { font-size: 13px; color: var(--text-mid); margin-top: 12px; line-height: 1.4; font-weight: 500; min-height: 36px; }
.plan ul.pf {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.plan .pf li {
  list-style: none;
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; font-weight: 600; color: var(--forest-mid);
  line-height: 1.4;
}
.plan .pf li::before { content: '✓'; color: var(--green); font-weight: 900; }
.plan .pbtn {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
  padding: 12px;
  border-radius: 12px;
  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: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .plans-grid { grid-template-columns: 1fr; }
}

/* ─── 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; }

@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(--green), #82C9A0);
  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; }
.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: 22px; line-height: 1.25; text-wrap: balance; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opts.multi { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.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; }
.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-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: 16px; margin-bottom: 24px; line-height: 1.5; text-wrap: pretty; }
.popup p strong { color: var(--forest); font-weight: 900; }

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

/* Скрываем все 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: 520px;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,230,109,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(78,205,196,0.15) 0%, transparent 60%),
              linear-gradient(135deg, #F0FAF4 0%, #E8F4ED 100%);
  border-radius: 36px;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,139,96,0.12);
  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; }
.cmp-emoji { font-size: 44px; line-height: 1; }
.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;
}
.cmp-list .x { color: #DC2626; font-weight: 900; flex-shrink: 0; }
.cmp-list .v { color: #15945C; font-weight: 900; flex-shrink: 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;
}
.rm-reco-blur {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  opacity: 0.7;
}

.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; }
}
