/* ============================================================
   HOME — section components
   ============================================================ */

/* ── S2 Hero ───────────────────────────────────────────── */
.hero {
  background: var(--blue-50);
  padding: clamp(2.5rem, 1rem + 5vw, 4.5rem) var(--gutter) 0;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-8);
  align-items: end;
}
.hero__content {
  padding-bottom: clamp(2.5rem, 1rem + 5vw, 4.5rem);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--blue-200);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}
.hero__title {
  font-size: var(--fs-h1);
  letter-spacing: -0.025em;
}
.hero__title b {
  color: var(--blue-600);
  font-weight: 800;
}
.hero__sub {
  font-size: var(--fs-md);
  color: var(--gray-600);
  max-width: 46ch;
  margin-top: var(--sp-4);
}

/* Evidence, not promise — past tense, defensible. */
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}
.hero__proof b {
  font-family: var(--font-head);
  font-size: var(--fs-lg);
  color: var(--blue-700);
}
.hero__proof .ico {
  color: var(--blue-500);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.hero__micro {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin-top: var(--sp-3);
}

.hero__figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: var(--sp-6);
  min-width: 0;
}
.hero__figure::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 430px);
  aspect-ratio: 1;
  max-height: 88%;
  background: var(--blue-100);
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: clamp(360px, 41vw, 540px);
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: var(--sh-lg);
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .hero__content {
    padding-bottom: 0;
  }
  .hero__figure::before {
    width: min(100%, 360px);
  }
  .hero__photo {
    max-width: 290px;
    height: 350px;
  }
}

/* ── S3 Credibility strip ──────────────────────────────── */
.strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--sp-5) var(--gutter);
}
.strip__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3) var(--sp-6);
}
.strip__break {
  flex-basis: 100%;
  height: 0;
}
.strip__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-700);
}
.strip__item .ico {
  color: var(--blue-500);
  width: 20px;
  height: 20px;
}

/* ── S4 Results (accent) ───────────────────────────────── */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.case {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
/* Stories are narratives now, not one-line deltas */
.case__story {
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  color: #c9d8fa;
}
.case__out {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.case__out span {
  font-size: var(--fs-xs);
  color: #a8bef0;
}
.case__out b {
  font-family: var(--font-head);
  font-size: var(--fs-lg);
  color: var(--white);
}

/* The centre stat carries the emphasis — via scale, not colour.
   Amber stays reserved for things you can click. */
.stat--lead .stat__n {
  font-size: calc(var(--fs-num) * 1.28);
}

/* Before / after — the emotional result, next to the numeric ones */
.beforeafter {
  display: grid;
  gap: var(--sp-2);
  max-width: 62ch;
  margin: var(--sp-7) auto 0;
  padding: var(--sp-5) var(--sp-6);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
}
.beforeafter__row {
  font-size: var(--fs-sm);
  color: #b9cbf5;
}
.beforeafter__row em {
  font-style: normal;
  font-weight: 600;
  color: #8fa9e6;
  margin-right: var(--sp-2);
}
.beforeafter__row--after {
  color: var(--white);
  font-size: var(--fs-md);
}
.beforeafter__row--after em {
  color: var(--amber-500);
}

/* Headline figure card — the aggregate numbers are the proof now. */
.case--hero {
  display: flex;
  flex-direction: column;
}
.case__big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3rem, 2rem + 4vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}

.case__delta {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-weight: 800;
}
.case__from {
  font-size: var(--fs-lg);
  color: #a8bef0;
}
.case__arrow {
  color: #a8bef0;
}
.case__to {
  font-size: var(--fs-num);
  color: var(--white);
  line-height: 1;
}
.case__name {
  margin-top: var(--sp-3);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: var(--fs-md);
}
.case__note {
  margin-top: var(--sp-1);
  font-size: var(--fs-sm);
  color: #b9cbf5;
}
.case__time {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: #a8bef0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.stats--six {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-7) var(--sp-4);
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.stats--six .stat__l {
  max-width: 22ch;
  margin-inline: auto;
}

.stories__lead {
  margin: var(--sp-8) 0 var(--sp-4);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #a8bef0;
  text-align: center;
}
.stat {
  text-align: center;
}
.stat__n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-num);
  color: var(--white);
  line-height: 1;
}
.stat__n span {
  font-size: 0.55em;
  margin-left: 2px;
  color: #a8bef0;
}
.stat__l {
  font-size: var(--fs-sm);
  color: #b9cbf5;
  margin-top: var(--sp-2);
}

.unis {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-6);
}
.unis__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: #c9d8fa;
  letter-spacing: 0.02em;
}

/* The honesty note that makes the deltas land. */
.results__note {
  max-width: 62ch;
  margin: var(--sp-7) auto 0;
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--blue-400);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: #c9d8fa;
}

@media (max-width: 780px) {
  .stats {
    gap: var(--sp-3);
  }
  .stat__l {
    font-size: var(--fs-xs);
  }
}

/* ── S5 Why an examiner is different ───────────────────── */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.why__item {
}
.why__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--blue-100);
  color: var(--blue-700);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
}
.why__t {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.why__d {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.video {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.video:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.video__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity var(--t);
}
.video:hover .video__thumb {
  opacity: 1;
}
.video:hover .video__play {
  transform: scale(1.08);
  background: var(--blue-700);
}
.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-md);
  transition:
    transform var(--t),
    background var(--t);
}
/* Block, not inline: vertical padding on an inline span never expands the
   box, which is what made the caption look cramped against the thumbnail. */
.video__cap {
  display: block;
  padding: var(--sp-5);
  font-family: var(--font-head);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.4;
  color: var(--gray-900);
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
}

@media (max-width: 780px) {
  .why {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .why__icon {
    width: 42px;
    height: 42px;
    margin-bottom: var(--sp-3);
  }
  .videos {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
  }
  .video__cap {
    padding: var(--sp-4);
  }
  .video__play {
    width: 44px;
    height: 44px;
  }
}

/* Two 16:9 thumbs side by side leave the caption too narrow to read below
   this width — one per row instead. */
@media (max-width: 600px) {
  .videos {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

/* ── S6 Audience ───────────────────────────────────────── */
.aud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-200);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
}
.card__t {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.card__d {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

.honest {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  max-width: 760px;
  margin: var(--sp-8) auto 0;
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--sh-sm);
  text-align: left;
}
.honest .ico {
  color: var(--blue-600);
  margin-top: 2px;
}
.honest p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.honest b {
  color: var(--gray-900);
}

@media (max-width: 860px) {
  .aud {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .card {
    padding: var(--sp-5);
  }
  .card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--sp-3);
  }
  .honest {
    padding: var(--sp-4);
    margin-top: var(--sp-5);
  }
}

/* ── S6b Choosing criteria ─────────────────────────────── */
.crit {
  display: grid;
  gap: var(--sp-3);
  max-width: 860px;
  margin-inline: auto;
}
.crit__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
}
.crit__q {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.crit__q .ico {
  color: var(--blue-500);
  margin-top: 2px;
}
.crit__q p {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-900);
}
.crit__a {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding-left: var(--sp-5);
  border-left: 2px solid var(--blue-100);
}
.crit__a .ico {
  color: #16a34a;
  margin-top: 2px;
}
.crit__a p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

@media (max-width: 780px) {
  .crit__row {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .crit__a {
    padding-left: 0;
    padding-top: var(--sp-3);
    border-left: none;
    border-top: 1px solid var(--blue-100);
  }
}

/* ── S7 Steps ──────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--blue-100);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__n {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-200);
  box-shadow: 0 0 0 5px var(--blue-50);
  display: grid;
  place-items: center;
  margin: 0 auto var(--sp-4);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--blue-700);
}
.step__t {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.step__d {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
}
.fact {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}
.fact .ico {
  color: var(--blue-500);
  width: 17px;
  height: 17px;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .step__n {
    width: 42px;
    height: 42px;
    margin-bottom: var(--sp-3);
  }
  .step__t {
    font-size: var(--fs-base);
  }
}

/* ── S7b Progress protocol ─────────────────────────────── */
.protocol {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  box-shadow: var(--sh-md);
}
.protocol__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--blue-600);
  color: var(--white);
  display: grid;
  place-items: center;
}
.protocol__t {
  font-size: var(--fs-lg);
  font-weight: 800;
  margin-bottom: var(--sp-2);
}
.protocol__d {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.protocol__d b {
  color: var(--gray-900);
}
.protocol__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.protocol__li {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}
.protocol__li .ico {
  color: #16a34a;
  width: 17px;
  height: 17px;
}

@media (max-width: 700px) {
  .protocol {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    padding: var(--sp-5);
  }
}

/* ── S8 Bio ────────────────────────────────────────────── */
.bio {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-9);
  align-items: start;
}
.bio__figure {
  position: relative;
}
.bio__figure::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: var(--blue-100);
  border-radius: var(--r-lg);
}
.bio__photo {
  position: relative;
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}
.bio__name {
  position: relative;
  margin-top: var(--sp-4);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gray-700);
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.bfact {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.bfact .ico {
  color: var(--blue-500);
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.bfact b {
  color: var(--gray-900);
  font-weight: 600;
}

.docs-note {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.docs {
  margin-top: var(--sp-6);
}
.docs__t {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  margin-bottom: var(--sp-3);
}
.docs__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.doc {
  aspect-ratio: 3/4;
  border-radius: var(--r-sm);
  border: 1px solid var(--blue-200);
  background: var(--white);
  display: grid;
  place-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--gray-500);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.doc:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.doc .ico {
  color: var(--blue-400);
}

@media (max-width: 900px) {
  .bio {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .bio__figure {
    max-width: 280px;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .docs__row {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-2);
  }
  .doc {
    font-size: 10px;
    padding: var(--sp-2);
  }
}

/* ── S9 Parents ────────────────────────────────────────── */
.parents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.parent {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.parent__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
}
.parent__t {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.parent__d {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}
@media (max-width: 860px) {
  .parents {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .parents {
    gap: var(--sp-3);
  }
  .parent {
    padding: var(--sp-4);
  }
  .parent__icon {
    width: 38px;
    height: 38px;
    margin-bottom: var(--sp-3);
  }
}

/* ── S10 Formats ───────────────────────────────────────── */
.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: stretch;
}
.fmt {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    transform var(--t);
}
.fmt:hover {
  border-color: var(--blue-300);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.fmt--pick {
  border-color: var(--blue-400);
  background: var(--blue-50);
}
.fmt__badge {
  position: absolute;
  top: -13px;
  left: var(--sp-7);
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
}
.fmt__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--blue-200);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
}
.fmt--pick .fmt__icon {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}
.fmt__t {
  font-size: var(--fs-lg);
  font-weight: 800;
}
.fmt__meta {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin-top: var(--sp-1);
  margin-bottom: var(--sp-5);
}
.fmt__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.fmt__li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.fmt__li .ico {
  color: var(--blue-500);
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

@media (max-width: 780px) {
  .formats.rail {
    padding-top: 16px;
  }
}

.price-note {
  max-width: 720px;
  margin: var(--sp-7) auto 0;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  text-align: left;
}
.price-note__t {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--gray-900);
  margin-bottom: var(--sp-3);
}
.price-note__t .ico {
  color: var(--blue-600);
}
.price-note p {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.price-note p + p {
  margin-top: var(--sp-3);
}

@media (max-width: 860px) {
  .formats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 780px) {
  .fmt {
    padding: var(--sp-5);
  }
}

/* ── S11 Reviews ───────────────────────────────────────── */
.mosaic {
  columns: 3;
  column-gap: var(--sp-4);
}
.mos {
  break-inside: avoid;
  margin: 0 0 var(--sp-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow var(--t),
    transform var(--t);
}
.mos:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.mos img {
  width: 100%;
}
.mos--more {
  display: none;
}
.mosaic[data-expanded="true"] .mos--more,
.mosaic[data-expanded="true"] .mos--more-sm {
  display: block;
}

/* On a phone the mosaic is one column, so 9 stacked screenshots is ~4,400px
   of scroll. Show four; the rest come with the same "показать ещё" button. */
@media (max-width: 780px) {
  .mos--more-sm {
    display: none;
  }
}
.mos--text {
  padding: var(--sp-5);
}
.mos__text {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
.mos__who {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--gray-100);
  font-size: var(--fs-sm);
}
.mos__who b {
  display: block;
  font-family: var(--font-head);
  color: var(--gray-900);
}
.mos__who span {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}

@media (max-width: 900px) {
  .mosaic {
    columns: 2;
  }
}
@media (max-width: 560px) {
  .mosaic {
    columns: 1;
  }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--sp-4);
  align-items: start;
}
.review {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
}
.review__quote {
  color: var(--blue-200);
  margin-bottom: var(--sp-3);
}
.review__before {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--gray-500);
  background: var(--gray-100);
  border-radius: var(--r-full);
  padding: 0.25rem 0.7rem;
  margin-bottom: var(--sp-3);
  align-self: flex-start;
}
.review__text {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  flex: 1;
}
.review__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}
.review__who {
  font-size: var(--fs-sm);
}
.review__who b {
  display: block;
  font-family: var(--font-head);
  color: var(--gray-900);
}
.review__who span {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}
.review__result {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--r-full);
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}
.reviews__more {
  text-align: center;
  margin-top: var(--sp-6);
}

/* ── S12 FAQ ───────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: var(--sp-3);
}
.qa {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
}
.qa[open] {
  border-color: var(--blue-200);
  box-shadow: var(--sh-sm);
}
.qa__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--gray-900);
}
.qa__q::-webkit-details-marker {
  display: none;
}
.qa__q .ico {
  color: var(--blue-500);
  transition: transform var(--t);
}
.qa[open] .qa__q .ico {
  transform: rotate(180deg);
}
.qa__a {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

/* ── S13 Final CTA (accent) ────────────────────────────── */
.final {
  text-align: center;
}
.final__t {
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
}
.final__d {
  font-size: var(--fs-md);
  color: #b9cbf5;
  max-width: 56ch;
  margin: var(--sp-4) auto 0;
}
.final__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-6);
}
.final__step {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: #c9d8fa;
}
.final__step .ico {
  color: var(--blue-300);
  width: 18px;
  height: 18px;
}
.final__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.final__nudge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--sp-5);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: #e4ecff;
}
.final__nudge .ico {
  color: var(--amber-500);
}
.final__note {
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  color: #a8bef0;
}
.final__btns .soc-ico {
  width: 20px;
  height: 20px;
}

/* ── Shared: mid-page CTA row ──────────────────────────── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.cta-row__note {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

/* ── S6c Atmosphere ────────────────────────────────────── */
.mood {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.mood__col {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}
.mood__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
}
.mood__col:last-child .mood__icon {
  background: #fef3c7;
  color: var(--amber-600);
}
.mood__t {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.mood__d {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}
.mood__note {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--blue-400);
  font-size: var(--fs-sm);
  color: var(--gray-600);
}
@media (max-width: 780px) {
  .mood {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .mood__col {
    padding: var(--sp-5);
  }
}

/* ── Tablet tier (781–900px) ───────────────────────────────
   Below 780px the phone layout takes over: peer cards become
   swipeable rails, grids go single-column. Above 900px the
   full desktop grid applies. Without a band in between, an
   820px tablet gets the *phone* fallback at *desktop* width —
   three-across grids collapse to one full-width column, which
   cost ~1,600px of extra scroll and left half of every row
   empty. Everything here restores two-across. */
@media (min-width: 781px) and (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--sp-6);
  }
  .hero__content {
    padding-bottom: clamp(2rem, 1rem + 3vw, 3rem);
  }
  .hero__title {
    font-size: clamp(2.05rem, 1rem + 3.1vw, 2.6rem);
  }
  .hero__photo {
    max-width: 250px;
    height: 330px;
  }
  .hero__figure::before {
    width: min(100%, 300px); /* wider than the 250px photo, so the arch still shows */
  }

  .aud,
  .parents,
  .formats {
    grid-template-columns: 1fr 1fr;
  }
  /* An odd card left alone on the last row looks like a mistake;
     stretching it across reads as intentional. */
  .aud > :last-child:nth-child(odd),
  .parents > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .bio {
    grid-template-columns: 240px 1fr;
    gap: var(--sp-6);
  }
  .bio__figure {
    max-width: 240px;
  }
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why {
    gap: var(--sp-4);
  }
}

/* ── Bio on a phone ────────────────────────────────────────
   780px is exactly where .bio drops to a single column, so the
   photo stops being a left-hand column and becomes a header —
   centred, with the intro centred under it. The fact rows keep
   their left edge: they are icon-led and run to three lines,
   and centred ragged text there is harder to scan, not softer. */
@media (max-width: 780px) {
  .bio {
    text-align: center;
  }
  .bio__figure {
    margin-inline: auto;
  }
  .bio .lede {
    margin-inline: auto;
  }
  .bfact {
    text-align: left;
  }
}
