/* === proto.css — components for webinar registration prototype v2 === */
/* Reuses tokens from style.css (:root vars, .btn, .container, etc.) */

/* Extra bottom padding so the always-on sticky bar never covers final CTA */
body { padding-bottom: 96px; }
@media (max-width: 480px) { body { padding-bottom: 120px; } }

/* === HERO (single centered column + before/after) === */
.proto-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 18%, rgba(212, 255, 94, 0.09), transparent 70%),
    radial-gradient(ellipse 80% 60% at 8% 85%, rgba(212, 255, 94, 0.045), transparent 70%),
    var(--bg);
}
.proto-hero-col {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.proto-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-2);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 24px;
}
.proto-hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
.proto-hero h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.12;
}

/* EDIT 1: two dominant accent stat-chips (80% / $500+ visually dominant) */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 32px;
}
.hero-stat {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 26px;
  background: linear-gradient(180deg, rgba(212, 255, 94, 0.1), rgba(212, 255, 94, 0.03));
  border: 1px solid rgba(212, 255, 94, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero-stat-big {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mute);
  line-height: 1.3;
}

/* Before / After mini-visual */
.beforeafter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 0 auto 32px;
  max-width: 720px;
  text-align: left;
}
.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.ba-now {
  background: var(--danger-soft);
  border-color: rgba(255, 107, 107, 0.2);
}
.ba-after {
  background: linear-gradient(180deg, rgba(212, 255, 94, 0.09), rgba(212, 255, 94, 0.03));
  border-color: rgba(212, 255, 94, 0.3);
}
.ba-card h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ba-now h4 { color: var(--danger); }
.ba-after h4 { color: var(--accent); }
.ba-card ul { list-style: none; }
.ba-card li {
  font-size: 14.5px;
  line-height: 1.45;
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--text-mute);
}
.ba-card li + li { border-top: 1px solid rgba(255,255,255,0.04); }
.ba-now li::before {
  content: "–";
  position: absolute;
  left: 4px; top: 7px;
  color: var(--danger);
  font-weight: 700;
}
.ba-after li {
  color: var(--text);
}
.ba-after li::before {
  content: "✓";
  position: absolute;
  left: 2px; top: 7px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
}

.proto-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* === SPEAKER (photo + stat cards) === */
.section-speaker {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border-soft);
}
.speaker-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.speaker-photo {
  flex: 0 0 40%;
  max-width: 40%;
}
.speaker-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
}
.speaker-info {
  flex: 1 1 auto;
  min-width: 0;
}
.speaker-info h2 {
  text-align: left;
  margin-bottom: 12px;
}
.speaker-intro {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-mute);
  margin: 0 0 28px;
  line-height: 1.6;
}
.speaker-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.speaker-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.speaker-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0.6;
}
.speaker-stat:hover {
  border-color: rgba(212, 255, 94, 0.3);
  transform: translateY(-3px);
}
.speaker-stat .num {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.speaker-stat .num span {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-dim);
}
.speaker-stat .lbl {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.4;
}
/* EDIT 4: heading above photo, centered over the whole block */
.speaker-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
}
/* EDIT 4: "на зйомці / за роботою" strip — 2 framed thumbs, NOT full-width */
.speaker-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 720px;
  margin: 32px auto 0;
}
.speaker-thumb {
  flex: 1 1 260px;
  max-width: 340px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}
.speaker-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* === QUIZ-HOOK === */
.section-quiz {
  background: linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.quiz-sub {
  font-size: 17px;
  color: var(--text-mute);
  max-width: 620px;
  margin: -20px auto 36px;
}
.quiz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.quiz-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 24px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quiz-btn::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-btn:hover {
  border-color: rgba(212, 255, 94, 0.35);
  background: var(--bg-card-2);
  transform: translateY(-2px);
}
.quiz-btn.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.quiz-btn.selected::before {
  border-color: var(--accent);
  background:
    radial-gradient(circle, var(--bg) 0 30%, var(--accent) 40%);
}
.quiz-result {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.quiz-result.show {
  max-height: 360px;
  opacity: 1;
  margin-top: 24px;
}
.quiz-result-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 28px;
  text-align: left;
}
.quiz-result-inner p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn.btn-sm {
  padding: 13px 24px;
  font-size: 14.5px;
}

/* === OBJECTIONS (inner dialogue) === */
/* EDIT 3: soft accent gradient divider entering the section (de-monotone) */
#objections { position: relative; }
.obj-divider {
  width: 100%;
  max-width: 280px;
  height: 3px;
  margin: 0 auto 28px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.objections-list {
  max-width: 900px;
  margin: 36px auto 0;
  display: grid;
  gap: 18px;
}
.obj-pair {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: stretch;
}
.obj-thought {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.obj-thought .obj-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.obj-thought p {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mute);
  line-height: 1.45;
  font-style: italic;
}
.obj-answer {
  background: linear-gradient(180deg, rgba(212, 255, 94, 0.07), rgba(212, 255, 94, 0.02));
  border: 1px solid rgba(212, 255, 94, 0.28);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.obj-answer .obj-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.obj-answer p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

/* === FEATURE / BONUS === */
.section-feature {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
/* EDIT 5: CAPS heading */
.feature-heading {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.feature-body {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-mute);
  max-width: 760px;
  margin: 8px auto 32px;
  line-height: 1.6;
}
/* EDIT 5: bonus callout — $49 + безкоштовно dominant accent tokens */
.feature-callout {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.feature-callout .fc-line {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.feature-callout .fc-tokens {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.feature-callout .fc-strike {
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--text-dim);
}
.feature-callout .fc-price {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 2px;
  color: var(--text-mute);
}
.feature-callout .fc-free {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(212, 255, 94, 0.25);
}

/* EDIT 6: mock-carousel demo (3 mini slide-cards) */
.demo-slides {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.demo-slide {
  flex: 1 1 200px;
  max-width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.demo-slide-top {
  display: flex;
  gap: 6px;
}
.demo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.demo-slide-body {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(212,255,94,0.08), rgba(212,255,94,0.02));
  border: 1px dashed var(--accent-soft-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-step-num {
  position: absolute;
  top: 8px; left: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0c;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-mock-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 60%;
}
.demo-mock-lines span {
  height: 8px;
  border-radius: 4px;
  background: var(--text-dim);
  opacity: 0.5;
}
.demo-mock-lines span:last-child { width: 70%; }
.demo-mock-cards {
  display: flex;
  gap: 6px;
}
.demo-mock-cards span {
  width: 22px; height: 56px;
  border-radius: 5px;
  background: var(--accent);
  opacity: 0.65;
}
.demo-mock-cards span:nth-child(2) { opacity: 0.85; }
.demo-mock-check {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.demo-slide-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}
.demo-arrow {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  flex: 0 0 auto;
}

/* === LIVE SOCIAL PROOF (marquee) === */
.section-proof {
  background: linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.proof-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.proof-counter .live-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.6s infinite;
}
.proof-counter strong { color: var(--accent); }
.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
/* EDIT 8: marquee must NEVER freeze on hover/tap — continuous seamless loop. */
.marquee-item {
  flex: 0 0 auto;
  width: 240px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.proof-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 20px;
  font-weight: 500;
}

/* EDIT 9: «Відгуки учениць» — REAL screenshots in uniform framed cards, ABOVE the cases marquee */
.reviews-heading {
  text-align: center;
  margin-bottom: 28px;
}
/* EDIT 5: 2 ряди по 2 плашки (2×2), не 4 в ряд */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 8px;
}
.review-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, transform 0.2s;
  /* uniform card height so raw chat screenshots look intentional */
  aspect-ratio: 3 / 4;
}
.review-card:hover {
  border-color: rgba(212, 255, 94, 0.3);
  transform: translateY(-3px);
}
.review-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 460px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 340px; }
  .review-card { aspect-ratio: auto; }
  .review-card img { height: auto; }
}

/* EDIT 6: «Кейси випускниць» label — separates the scrolling cases from the screenshots above */
.cases-label {
  text-align: center;
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 44px auto 22px;
}

/* === CLOSE / DIFFERENTIATION === */
#close {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.close-diff {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 36px 40px;
}
/* EDIT 10: strikethrough hook opens the block (no heading) */
.close-hook {
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 26px;
}
.close-hook s {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 2px;
  color: var(--text-dim);
}
/* EDIT 10: long paragraph broken into short scannable lines */
.close-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
}
.close-points p {
  position: relative;
  padding-left: 26px;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
}
.close-points p::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  color: var(--accent);
  font-weight: 800;
}

/* === FINAL (EDIT 7: full-screen text, no timer / no button) === */
.proto-final {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 255, 94, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 255, 94, 0.05), transparent 70%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--border-soft);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 110px;
}
/* EDIT 7: framed «stage» so the text owns the whole screen with structure */
.final-stage {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.018), transparent 60%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 64px) clamp(22px, 5vw, 56px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
}

/* === STICKY CTA BAR (persistent, full-width, always visible) === */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--accent-soft-2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
}
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.sticky-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mute);
  line-height: 1.3;
}
.sticky-bar-btn {
  flex: 0 0 auto;
  padding: 13px 26px;
  font-size: 15px;
  border-radius: 999px;
}

/* === A1: PROFESSION-FIRST (плашки, readable in 5 sec) === */
.section-profession {
  background: linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.prof-prehead {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  color: var(--text-dim);
  margin: 0 0 10px;
}
.prof-prehead s {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 2px;
}
.prof-heading {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin: 0 auto 36px;
}
.prof-plates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 28px;
  text-align: left;
}
.prof-plate {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.prof-plate::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0.6;
}
.prof-plate-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0c;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.prof-plate p {
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin: 0;
}
.prof-bottomline {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  color: var(--accent);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
}

/* === A2: НА ЕФІРІ ПОКАЖУ (5 numbered cards) === */
.section-program {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.program-heading {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.program-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.program-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.program-card:hover {
  border-color: rgba(212, 255, 94, 0.3);
  transform: translateY(-2px);
}
.program-num {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  flex: 0 0 auto;
  min-width: 46px;
}
.program-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.program-text strong {
  font-size: clamp(16px, 2vw, 18.5px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.program-text span {
  font-size: clamp(14px, 1.8vw, 15.5px);
  color: var(--text-mute);
  line-height: 1.5;
}

/* === A3: ДВІ СТРАТЕГІЇ (А→Б comparison) === */
.section-strategies {
  background: linear-gradient(180deg, #0c0c0c 0%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.strat-heading { margin-bottom: 36px; }
.strat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 28px;
}
.strat-card {
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.strat-a {
  background: var(--danger-soft);
  border: 1px solid rgba(255, 107, 107, 0.28);
}
.strat-b {
  background: linear-gradient(180deg, rgba(212, 255, 94, 0.09), rgba(212, 255, 94, 0.03));
  border: 1px solid rgba(212, 255, 94, 0.32);
}
.strat-tag {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.strat-a .strat-tag { background: var(--danger); color: #0c0c0c; }
.strat-b .strat-tag { background: var(--accent); color: #0c0c0c; }
.strat-input {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}
.strat-arrow {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.strat-a .strat-arrow { color: var(--danger); }
.strat-b .strat-arrow { color: var(--accent); }
.strat-output {
  font-size: clamp(14.5px, 1.9vw, 16px);
  color: var(--text-mute);
  margin: 0;
  line-height: 1.5;
}
.strat-b .strat-output { color: var(--text); }
.strat-bottomnote {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}
.strat-bottomnote s {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 2px;
  color: var(--text-dim);
  font-weight: 700;
}

/* === A4: ДЛЯ КОГО (9-card emoji segments grid) === */
.section-segments {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.seg-heading {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 820px;
  margin: 0 auto 36px;
}
.seg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}
.seg-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.seg-card:hover {
  border-color: rgba(212, 255, 94, 0.3);
  transform: translateY(-2px);
}
.seg-emoji {
  font-size: 26px;
  line-height: 1.1;
  flex: 0 0 auto;
}
.seg-card p {
  font-size: clamp(14.5px, 1.8vw, 16px);
  color: var(--text);
  line-height: 1.45;
  margin: 0;
}

/* === U2: earnings heading + $150K sub (centered, above cases) === */
.earnings-heading {
  text-align: center;
  max-width: 820px;
  margin: 8px auto 12px;
}
.earnings-sub {
  text-align: center;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-mute);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.earnings-sub strong {
  color: var(--accent);
  font-weight: 800;
}

/* === U3 (EDIT 7): final heading + body — enlarged, accented, full-screen === */
.proto-final .final-heading {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(30px, 5.4vw, 52px);
  margin-bottom: 32px;
}
.proto-final .final-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.proto-final .final-body p {
  font-size: clamp(17px, 2.6vw, 23px);
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0;
}
/* accent emphasis on key words */
.proto-final .final-body em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}
/* pivot line — quieter, sets up the question */
.proto-final .final-pivot {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 14px;
}
/* the decisive question — biggest body line */
.proto-final .final-choice {
  font-size: clamp(20px, 3.4vw, 30px) !important;
  font-weight: 800;
  color: var(--text) !important;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin: 0 auto;
}
.proto-final .final-accent {
  color: var(--accent);
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(212, 255, 94, 0.25);
}
/* date reassurance pill at the bottom of the stage */
.proto-final .final-date {
  display: inline-block;
  margin-top: 36px;
  padding: 11px 22px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-2);
  border-radius: 999px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  color: var(--text-mute);
}
.proto-final .final-date strong { color: var(--accent); font-weight: 800; }

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .speaker-layout { flex-direction: column; gap: 28px; align-items: stretch; }
  .speaker-photo { flex-basis: auto; max-width: 360px; width: 100%; margin: 0 auto; }
  .speaker-photo img { aspect-ratio: 1 / 1; }
  .speaker-info h2 { text-align: center; }
  .speaker-intro { text-align: center; }
  .prof-plates { grid-template-columns: 1fr; max-width: 560px; }
  .seg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .proto-hero { min-height: auto; padding: 64px 0 44px; }
  .beforeafter { grid-template-columns: 1fr; gap: 12px; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
  .quiz-grid { grid-template-columns: repeat(2, 1fr); }
  .marquee-item { width: 190px; height: 190px; }
  .proto-hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .proto-hero-cta .btn { width: 100%; }
  .strat-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 480px) {
  .quiz-btn { font-size: 15px; padding: 18px 16px; }
  .ba-card li { font-size: 14px; }
  .seg-grid { grid-template-columns: 1fr; max-width: 360px; }
  .program-card { gap: 14px; padding: 18px 18px; }
  .program-num { min-width: 38px; }
  .strat-card { padding: 24px 20px; }
  .hero-stat { flex-basis: 100%; padding: 18px 20px; }
  .speaker-stats-grid { grid-template-columns: 1fr; }
  .speaker-stat { padding: 24px 16px; }
  .close-diff { padding: 28px 20px 32px; }
  .marquee-item { width: 160px; height: 160px; }
  .proto-final { min-height: auto; padding-top: 48px; }
  .final-stage { padding: 30px 20px; }
  .sticky-bar-label { display: none; }
  .sticky-bar-inner { justify-content: center; }
  .sticky-bar-btn { width: 100%; text-align: center; }
}
