/* ==========================================================================
   Николай Портнов · Экспертный круг
   ========================================================================== */

:root {
  --ink: #0b1626;
  --ink-2: #111f35;
  --navy: #143966;
  --navy-2: #1d4b82;
  --gold: #c8a16f;
  --gold-2: #b08956;
  --gold-soft: #e9dcc7;
  --paper: #f6f2ec;
  --paper-2: #efe8dd;
  --white: #fffdfa;
  --text: #0b1626;
  --muted: #5d6674;
  --muted-light: rgba(246, 242, 236, 0.66);
  --line: rgba(11, 22, 38, 0.12);
  --line-light: rgba(246, 242, 236, 0.14);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 22px;
  --radius-sm: 14px;
  --section: clamp(84px, 11vw, 150px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 60px -30px rgba(11, 22, 38, 0.35);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

::selection { background: var(--gold); color: var(--ink); }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section) 0; position: relative; }
.section--tight { padding: calc(var(--section) * 0.6) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.section--dark .eyebrow { color: var(--gold); }

.h1, .h2, .h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.h1 { font-size: clamp(42px, 6.2vw, 84px); }
.h2 { font-size: clamp(34px, 4.4vw, 60px); }
.h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.02em; line-height: 1.2; }

.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gold-2);
}
.section--dark .accent,
.hero--dark .accent { color: var(--gold); }

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
}
.section--dark .lead { color: var(--muted-light); }

.muted { color: var(--muted); }
.section--dark .muted { color: var(--muted-light); }

.section-head {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(44px, 6vw, 72px);
  max-width: 820px;
}
.section-head--split {
  max-width: none;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 40px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; justify-items: center; }

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { --btn-bg: var(--navy); }
.btn:active { transform: scale(0.98); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold:hover { --btn-bg: #d6b484; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); border-color: var(--ink); }

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  border-color: var(--line-light);
}
.btn--ghost-light:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); }

.btn--sm { min-height: 46px; padding: 0 22px; font-size: 14px; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.link-arrow:hover { gap: 16px; color: var(--gold-2); }

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.header.is-scrolled {
  background: rgba(246, 242, 236, 0.86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 38px; height: auto; }
.brand__text { display: grid; line-height: 1.1; }
.brand__name { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.brand__sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.8;
  transition: opacity 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { font-weight: 700; font-size: 14px; white-space: nowrap; }

.burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.burger span {
  position: absolute;
  left: 14px; right: 14px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease), opacity 0.2s;
}
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 27px; }
.menu-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--paper);
  padding: 110px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu a:not(.btn) {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; }
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero__content { padding-bottom: clamp(56px, 8vw, 110px); }
.hero__content .eyebrow { margin-bottom: 28px; }
.hero__title { margin-bottom: 30px; }
.hero__title .accent { display: inline-block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
}
.avatars { display: flex; }
.avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper);
  margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }

.hero__visual { position: relative; align-self: stretch; min-height: 560px; }
.hero__photo {
  position: absolute;
  inset: 0 0 0 0;
  border-radius: 280px 280px 0 0;
  overflow: hidden;
  background: #d7d6d4;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}
.hero__badge {
  position: absolute;
  left: -44px;
  bottom: 70px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  width: 250px;
  box-shadow: var(--shadow);
}
.hero__badge strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero__badge span { font-size: 14px; color: var(--muted-light); line-height: 1.45; display: block; }
.hero__sign {
  position: absolute;
  right: 24px;
  top: 28px;
  z-index: 2;
  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.hero__sign i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3aa66b;
  box-shadow: 0 0 0 4px rgba(58, 166, 107, 0.18);
}

/* Stats strip */
.stats {
  background: var(--ink);
  color: var(--paper);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 44px 32px 44px 0;
  border-right: 1px solid var(--line-light);
}
.stat + .stat { padding-left: 32px; }
.stat:last-child { border-right: 0; }
.stat__num {
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--paper);
}
.stat__num em { font-style: normal; color: var(--gold); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted-light); line-height: 1.45; max-width: 230px; }

/* ---------- Trust line ---------- */
.trust {
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust__inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust__label { font-size: 13px; color: var(--muted); max-width: 200px; line-height: 1.4; }
.trust__list { display: flex; flex-wrap: wrap; gap: 14px 44px; align-items: center; }
.trust__item { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; color: var(--ink); opacity: 0.75; }
.trust__item small { display: block; font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: 0; }

/* ---------- Pain ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pain {
  background: var(--paper);
  padding: 36px 32px 40px;
  display: grid;
  gap: 16px;
  align-content: start;
  transition: background 0.4s var(--ease);
}
.pain:hover { background: var(--white); }
.pain .pain__q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.15;
  color: var(--navy);
}
.pain p { color: var(--muted); font-size: 15.5px; }
.pain__num { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--gold-2); }

.pain-outro {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.pain-outro p { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; font-weight: 600; max-width: 720px; line-height: 1.3; }

/* ---------- About circle ---------- */
.circle-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 110px);
}
.circle-intro__media { position: relative; }
.circle-intro__media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}
.circle-intro__media .circle-intro__emblem {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--ink);
  box-shadow: var(--shadow);
}
.circle-intro__text { display: grid; gap: 26px; }
.circle-intro__text .lead { color: var(--muted-light); }

.checklist { display: grid; gap: 14px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1626' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principle {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 34px 30px 36px;
  display: grid;
  gap: 16px;
  align-content: start;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.5s var(--ease);
}
.principle:hover { border-color: rgba(200, 161, 111, 0.5); background: rgba(255, 255, 255, 0.025); transform: translateY(-4px); }
.principle__top { display: flex; align-items: center; justify-content: space-between; }
.principle__num { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--gold); line-height: 1; }
.principle__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid; place-items: center;
  color: var(--gold);
}
.principle__icon svg { width: 20px; height: 20px; }
.principle p { color: var(--muted-light); font-size: 15.5px; }

/* ---------- Format / steps ---------- */
.format-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.format-sticky { position: sticky; top: 120px; display: grid; gap: 26px; }
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
}
.fact { background: var(--paper); padding: 24px 24px 26px; }
.fact strong { display: block; font-size: 32px; font-weight: 600; letter-spacing: -0.04em; line-height: 1.05; }
.fact span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

.steps { counter-reset: step; display: grid; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--navy);
  transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s;
}
.step:hover .step__num { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); }
.step__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(200, 161, 111, 0.14);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ---------- Results ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.metric {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  display: grid;
  gap: 10px;
  align-content: space-between;
  min-height: 210px;
  border: 1px solid var(--line);
}
.metric strong {
  font-size: clamp(46px, 4.6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--navy);
}
.metric span { font-size: 15px; font-weight: 600; line-height: 1.35; }
.metric small { font-size: 13px; color: var(--muted); }

.cases-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: grid; place-items: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}
.slider-btn svg { width: 20px; height: 20px; }
.slider-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slider-btn:disabled { opacity: 0.35; pointer-events: none; }

.cases {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.cases::-webkit-scrollbar { display: none; }
.cases.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.cases.is-dragging * { pointer-events: none; }

.case {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  user-select: none;
}
.case__person { display: flex; align-items: center; gap: 16px; }
.case__person img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.case__name { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; line-height: 1.25; }
.case__company { font-size: 13.5px; color: var(--muted); line-height: 1.4; margin-top: 2px; }
.case__block { display: grid; gap: 8px; }
.case__label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); }
.case__task { font-size: 15px; line-height: 1.5; }
.case__result { display: grid; gap: 8px; }
.case__result li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.45; }
.case__result li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.case__quote {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  color: var(--navy);
}

.progress {
  margin-top: 30px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.progress span { display: block; height: 100%; width: 20%; background: var(--ink); transition: width 0.2s linear, transform 0.2s linear; transform-origin: left; }

/* ---------- Mentor ---------- */
.mentor {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.mentor__media { position: sticky; top: 110px; }
.mentor__media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}
.mentor__caption {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: var(--muted-light);
}
.mentor__body { display: grid; gap: 34px; }
.mentor__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.22;
  color: var(--paper);
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}

.timeline { display: grid; }
.timeline__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
}
.timeline__item:last-child { border-bottom: 1px solid var(--line-light); }
.timeline__when { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding-top: 3px; }
.timeline__item h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.timeline__item p { color: var(--muted-light); font-size: 15.5px; }

.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.role {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted-light);
}
.role b { display: block; color: var(--paper); font-weight: 700; margin-bottom: 4px; font-size: 15.5px; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plan--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.plan__badge {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 100px;
}
.plan__name { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); }
.plan--featured .plan__name { color: var(--gold); }
.plan__title { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; margin-top: 10px; }
.plan__desc { color: var(--muted); font-size: 15px; margin-top: 10px; }
.plan--featured .plan__desc { color: var(--muted-light); }
.plan__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan--featured .plan__price { border-color: var(--line-light); }
.plan__price strong { font-size: 44px; font-weight: 600; letter-spacing: -0.045em; line-height: 1; }
.plan__price span { color: var(--muted); font-size: 14px; }
.plan--featured .plan__price span { color: var(--muted-light); }
.plan .checklist { font-size: 15px; flex: 1; }
.plan--featured .checklist li { color: var(--paper); }
.plan .btn { margin-top: 6px; }

.pricing--2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin: 0 auto; }

.pricing-note { margin-top: 28px; text-align: center; color: var(--muted); font-size: 14.5px; }

/* ---------- Ecosystem / programs ---------- */
.ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.ladder__step {
  padding: 26px 22px 28px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  align-content: start;
  background: var(--paper);
  position: relative;
}
.ladder__step:last-child { border-right: 0; }
.ladder__step:nth-child(1) { background: #f8f5f0; }
.ladder__step:nth-child(2) { background: #f2ece3; }
.ladder__step:nth-child(3) { background: #ece3d6; }
.ladder__step:nth-child(4) { background: var(--navy); color: var(--paper); }
.ladder__step:nth-child(5) { background: var(--ink); color: var(--paper); }
.ladder__step small { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); }
.ladder__step:nth-child(n+4) small { color: var(--gold); }
.ladder__step b { font-size: 18px; letter-spacing: -0.02em; line-height: 1.2; }
.ladder__step span { font-size: 14px; line-height: 1.45; color: var(--muted); }
.ladder__step:nth-child(n+4) span { color: var(--muted-light); }

.programs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.program {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 44px 40px 40px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  color: var(--paper);
  background: var(--navy);
  isolation: isolate;
  transition: transform 0.5s var(--ease);
}
.program:hover { transform: translateY(-6px); }
.program--dark { background: var(--ink); }
.program::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 111, 0.35);
  z-index: -1;
}
.program::after {
  content: "";
  position: absolute;
  inset: auto -20px -60px auto;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 111, 0.2);
  z-index: -1;
}
.program__top { display: grid; gap: 18px; }
.program__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  color: var(--paper);
}
.chip--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.program h3 { font-size: clamp(28px, 2.8vw, 38px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.08; }
.program p { color: var(--muted-light); max-width: 460px; }
.program__bottom { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.program__price small { display: block; font-size: 13px; color: var(--muted-light); }
.program__price strong { font-size: 32px; font-weight: 600; letter-spacing: -0.04em; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
.gallery figure { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.g1 { grid-column: span 7; grid-row: span 4; }
.g2 { grid-column: span 5; grid-row: span 2; }
.g3 { grid-column: span 5; grid-row: span 2; }
.g4 { grid-column: span 4; grid-row: span 3; }
.g5 { grid-column: span 4; grid-row: span 3; }
.g6 { grid-column: span 4; grid-row: span 3; }

/* ---------- Media / socials ---------- */
.socials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.social {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  justify-content: space-between;
  background: var(--paper);
  transition: background 0.35s var(--ease), color 0.35s, border-color 0.35s, transform 0.4s var(--ease);
}
.social:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-4px); }
.social__top { display: flex; justify-content: space-between; align-items: start; }
.social__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: background 0.35s; }
.social:hover .social__icon { background: var(--gold); color: var(--ink); }
.social__icon svg { width: 20px; height: 20px; }
.social__arrow { width: 20px; height: 20px; opacity: 0.4; transition: transform 0.35s var(--ease), opacity 0.35s; }
.social:hover .social__arrow { opacity: 1; transform: translate(3px, -3px); }
.social b { display: block; font-size: 17px; letter-spacing: -0.01em; }
.social span { font-size: 13.5px; color: var(--muted); }
.social:hover span { color: var(--muted-light); }

.media-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 16px;
}
.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  isolation: isolate;
}
.media-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.media-card:hover img { transform: scale(1.04); }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 22, 38, 0) 30%, rgba(11, 22, 38, 0.88) 100%); z-index: -1; }
.media-card__body { padding: 30px; display: grid; gap: 10px; }
.media-card__body small { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.media-card__body b { font-size: 24px; letter-spacing: -0.02em; line-height: 1.2; font-weight: 600; max-width: 440px; }
.play {
  position: absolute;
  top: 26px; right: 26px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.play svg { width: 22px; height: 22px; margin-left: 3px; }
.media-card:hover .play { transform: scale(1.08); background: var(--gold); }

/* ---------- Session / lead ---------- */
.session {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.value-stack { margin-top: 36px; display: grid; }
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line-light);
  font-size: 16px;
}
.value-row s { color: var(--muted-light); font-size: 15px; white-space: nowrap; }
.value-row--total { border-bottom: 1px solid var(--line-light); }
.value-row--total span { font-weight: 700; }
.value-row--total b { font-size: 30px; font-weight: 600; letter-spacing: -0.04em; color: var(--gold); white-space: nowrap; }

.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; }
.form-card > p { color: var(--muted); font-size: 15px; margin-top: 10px; }
.form { display: grid; gap: 14px; margin-top: 26px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1626' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.field textarea { padding: 16px 18px; min-height: 100px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(20, 57, 102, 0.12); }
.field.has-error input { border-color: #c0392b; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.45; }
.form__consent input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--navy); flex: none; }
.form__consent a { text-decoration: underline; }
.form__alt { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--muted); margin-top: 4px; }
.form__alt a { font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.is-visible { display: block; }
.form-success__icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; }
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.faq-aside { position: sticky; top: 120px; display: grid; gap: 24px; }
.faq { display: grid; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -0.015em;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  position: relative;
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.faq summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary i { background: var(--ink); border-color: var(--ink); transform: rotate(180deg); }
.faq details[open] summary i::before,
.faq details[open] summary i::after { background: var(--paper); }
.faq details[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__answer { padding: 0 64px 28px 0; color: var(--muted); display: grid; gap: 12px; }
.faq__answer ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  padding: clamp(44px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(200, 161, 111, 0.35);
  box-shadow: 0 0 0 70px rgba(200, 161, 111, 0.04), 0 0 0 140px rgba(200, 161, 111, 0.03);
  z-index: -1;
}
.cta-band p { color: var(--muted-light); margin-top: 18px; max-width: 560px; }
.cta-band__actions { display: grid; gap: 12px; justify-items: stretch; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 90px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-light); }
.footer .brand__sub { color: var(--muted-light); }
.footer__about { color: var(--muted-light); font-size: 15px; margin-top: 22px; max-width: 320px; }
.footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__links { display: grid; gap: 12px; font-size: 15px; }
.footer__links a { color: var(--muted-light); transition: color 0.25s; }
.footer__links a:hover { color: var(--paper); }
.footer__phone { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 30px; font-size: 13px; color: var(--muted-light); }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; align-items: baseline; }
.made-by a { color: var(--gold); font-weight: 700; text-decoration: none; transition: color 0.25s; }
.made-by a:hover { color: var(--paper); }

.session-test {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 18px;
  justify-items: start;
}
.session-test p { color: var(--muted-light); font-size: 15px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 22, 38, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal .form-card {
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.45s var(--ease);
}
.modal.is-open .form-card { transform: none; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid; place-items: center;
}
.modal__close svg { width: 18px; height: 18px; }

/* ---------- Floating contact ---------- */
.float-cta {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  transition: transform 0.5s var(--ease), background 0.3s;
}
.float-cta.is-visible { transform: none; }
.float-cta:hover { background: var(--navy); }
.float-cta span.ic { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; }
.float-cta svg { width: 18px; height: 18px; }

/* ---------- Course pages ---------- */
.hero--course { padding-bottom: clamp(60px, 8vw, 110px); }
.hero--dark { background: var(--ink); color: var(--paper); }
.hero--dark .lead { color: var(--muted-light); }
.hero--dark .eyebrow { color: var(--gold); }
.course-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.course-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
}
.course-card__row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-light); font-size: 15px; }
.course-card__row:first-child { padding-top: 0; }
.course-card__row span { color: var(--muted-light); }
.course-card__row b { text-align: right; font-weight: 700; }
.course-card .btn { margin-top: 26px; }

.compare { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare__col { padding: 34px; }
.compare__col--after { background: var(--ink); color: var(--paper); }
.compare__col h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; color: var(--muted); }
.compare__col--after h3 { color: var(--gold); }
.compare__col li { padding: 16px 0; border-top: 1px solid var(--line); font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.compare__col--after li { border-color: var(--line-light); }
.compare__col--before li { color: var(--muted); font-weight: 500; text-decoration: line-through; text-decoration-color: rgba(11, 22, 38, 0.25); }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__num { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--gold-2); line-height: 1; }

.program-list { display: grid; gap: 12px; }
.week {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.week summary {
  list-style: none;
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  cursor: pointer;
}
.week summary::-webkit-details-marker { display: none; }
.week__n { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); }
.week__t { font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.week summary i { position: relative; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); transition: background 0.3s, transform 0.4s var(--ease); }
.week summary i::before, .week summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: var(--ink); transform: translate(-50%, -50%); transition: transform 0.4s var(--ease), background 0.3s; }
.week summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.week[open] summary i { background: var(--ink); transform: rotate(180deg); }
.week[open] summary i::before, .week[open] summary i::after { background: var(--paper); }
.week[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.week__body { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; padding: 4px 28px 30px 168px; }
.week__body h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.week__body li { font-size: 15px; line-height: 1.45; padding: 4px 0; }
.week__body .week__result li { font-weight: 600; }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member { display: grid; gap: 16px; align-content: start; }
.member img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; object-position: 50% 20%; border-radius: var(--radius-sm); background: var(--paper-2); }
.member__ph { width: 100%; aspect-ratio: 1 / 1.08; border-radius: var(--radius-sm); background: var(--navy); display: grid; place-items: center; }
.member__ph img { width: 44%; aspect-ratio: auto; background: none; border-radius: 0; }
.member b { font-size: 18px; letter-spacing: -0.02em; display: block; }
.member small { color: var(--gold-2); font-weight: 700; font-size: 13px; display: block; margin-top: 2px; }
.member ul { display: grid; gap: 6px; font-size: 14px; color: var(--muted); }
.member li { position: relative; padding-left: 14px; line-height: 1.45; }
.member li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.reviews { columns: 3 320px; column-gap: 20px; }
.review {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 20px;
}
.review blockquote { font-size: 15.5px; line-height: 1.6; }
.review__person { display: flex; align-items: center; gap: 14px; }
.review__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review__initial { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-size: 18px; flex: none; }
.review__person b { display: block; font-size: 16px; }
.review__person span { font-size: 13px; color: var(--muted); }

.spheres--4 { grid-template-columns: repeat(4, 1fr) !important; }
.spheres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.sphere { background: var(--ink); padding: 28px 26px; display: grid; gap: 10px; align-content: start; }
.sphere b { font-size: 17px; letter-spacing: -0.01em; }
.sphere p { font-size: 14.5px; color: var(--muted-light); line-height: 1.5; }

.tariffs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }

.breadcrumbs { display: flex; gap: 10px; font-size: 13px; color: var(--muted-light); margin-bottom: 30px; }
.breadcrumbs a:hover { color: var(--paper); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .nav { gap: 22px; }
  .header__phone { display: none; }
  .cases { grid-auto-columns: calc((100% - 20px) / 2); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .socials { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .ladder { grid-template-columns: repeat(3, 1fr); }
  .ladder__step:nth-child(3) { border-right: 0; }
  .ladder__step:nth-child(n+4) { border-top: 1px solid var(--line); }
  .ladder__step:nth-child(4) { grid-column: span 1; }
  .ladder__step:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 980px) {
  body { font-size: 16px; }
  .nav, .header__actions .btn { display: none; }
  .burger { display: block; }
  .hero { padding-top: 120px; }
  .hero__grid,
  .course-hero,
  .circle-intro,
  .format-grid,
  .mentor,
  .session,
  .faq-grid,
  .cta-band,
  .media-feature,
  .section-head--split { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 0; }
  .hero__visual { min-height: 520px; margin-right: 0; }
  .hero__badge { left: 16px; bottom: 16px; }
  .format-sticky, .mentor__media, .faq-aside { position: static; }
  .mentor__media img { aspect-ratio: 4 / 3.6; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 30px 20px 30px 0; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .pain-grid, .principles, .cards-3 { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .programs, .cards-2 { grid-template-columns: 1fr; }
  .circle-intro__media .circle-intro__emblem { right: 16px; bottom: -24px; width: 96px; height: 96px; }
  .gallery { grid-auto-rows: 90px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .week__body { padding: 4px 28px 30px; }
  .compare { grid-template-columns: 1fr; }
  .spheres, .spheres--4 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  :root { --radius: 18px; }
  .header__inner { height: 72px; }
  .brand__sub { display: none; }
  .hero { padding-top: 104px; }
  .hero__visual { min-height: 440px; }
  .hero__photo { border-radius: 200px 200px 0 0; }
  .hero__badge { width: auto; right: 16px; padding: 18px; display: flex; gap: 14px; align-items: center; }
  .hero__badge strong { font-size: 34px; margin: 0; }
  .hero__sign { right: 50%; transform: translateX(50%); top: 18px; white-space: nowrap; }
  .hero__actions .btn { width: 100%; }
  .stat__num { font-size: 36px; }
  .pain-grid, .principles, .cards-3, .facts, .roles, .metrics, .socials, .team { grid-template-columns: 1fr; }
  .metric { min-height: 0; }
  .cases { grid-auto-columns: 88%; }
  .cases-head { flex-direction: column; align-items: flex-start; }
  .timeline__item { grid-template-columns: 1fr; gap: 6px; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .ladder { grid-template-columns: 1fr; }
  .ladder__step { border-right: 0; border-top: 1px solid var(--line); }
  .ladder__step:first-child { border-top: 0; }
  .ladder__step:nth-child(5) { grid-column: auto; }
  .program { padding: 32px 26px; min-height: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .g1 { grid-column: span 2; grid-row: span 2; }
  .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .faq__answer { padding-right: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .week summary { grid-template-columns: 1fr 40px; }
  .week__n { grid-column: 1 / -1; }
  .spheres, .spheres--4 { grid-template-columns: 1fr !important; }
  .float-cta b { display: none; }
  .float-cta { padding: 10px; }
}
