/* ── DESIGN TOKENS ── */
:root {
  --bg:           #040e08;
  --surface:      #091c0e;
  --surface-2:    #0d2415;
  --surface-3:    #122d1c;
  --border:       rgba(0, 254, 126, 0.14);
  --border-soft:  rgba(255, 255, 255, 0.06);

  --accent:       #00fe7e;
  --accent-dim:   rgba(0, 254, 126, 0.13);
  --accent-glow:  rgba(0, 254, 126, 0.35);
  --accent-dark:  rgba(0, 254, 126, 0.07);

  --text:         #f0f7f2;
  --text-muted:   rgba(240, 247, 242, 0.58);
  --text-faint:   rgba(240, 247, 242, 0.28);

  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;

  --container: 1100px;
  --pad:       clamp(16px, 5vw, 24px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 900px 600px at 96% 2%,  rgba(0, 254, 126, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 700px 900px at 2%  95%, rgba(0, 254, 126, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 45% 52%, rgba(0, 254, 126, 0.03) 0%, transparent 65%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── LAYOUT ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 56px;
}
.accent {
  font-style: normal;
  color: var(--accent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), color 200ms var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 12px 28px;
}
.btn-primary:hover {
  background: #4dffaa;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  padding: 11px 27px;
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}
.btn-sm   { padding: 8px 20px; font-size: 0.78rem; }
.btn-lg   { padding: 15px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; text-align: center; }

/* ── ACCESSIBILITY — focus-visible ── */
.btn:focus-visible,
a:focus-visible,
.module__header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── SCROLL ANCHOR OFFSETS ── */
section[id] { scroll-margin-top: 80px; }

/* ── SCROLL REVEAL ── */
.reveal {
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealFallback 0.6s var(--ease-out) 4s forwards;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 300ms, backdrop-filter 300ms, border-bottom 300ms;
}
.header.scrolled {
  background: rgba(4, 14, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__img {
  height: 84px;
  width: auto;
  display: block;
}
.logo__img--footer {
  height: 36px;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: clamp(120px, 18vw, 180px) 0 clamp(40px, 5vw, 64px);
  overflow: hidden;
  text-align: center;
  /* Фирменный паттерн из Λ-шевронов */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpolyline points='16%2C57 40%2C29 64%2C57' stroke='%2300fe7e' stroke-width='1.2' fill='none' opacity='0.07' stroke-linejoin='round'/%3E%3Cline x1='24' y1='64' x2='56' y2='64' stroke='%2300fe7e' stroke-width='1.2' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  background-repeat: repeat;
}
/* Левая рука Λ (как на обложке брендбука) */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 580px;
  height: 680px;
  background: var(--accent);
  clip-path: polygon(36% 0, 56% 0, 14% 100%, 0% 100%);
  opacity: 0.10;
  pointer-events: none;
}
/* Правая рука Λ */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 580px;
  height: 680px;
  background: var(--accent);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 80% 100%);
  opacity: 0.055;
  pointer-events: none;
}
.hero__bg-glow {
  position: absolute;
  top: -20%;
  left: 40%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 254, 126, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dark);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 32px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw + 1rem, 7.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px 40px;
  max-width: 640px;
  margin: 0 auto;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat__sep {
  width: 1px;
  height: 36px;
  background: var(--border-soft);
  flex-shrink: 0;
}

/* ── PAIN ── */
.pain {
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 40%, var(--surface-2) 100%);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.pain__card {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 300ms, transform 300ms var(--ease-out);
}
.pain__card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.pain__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.pain__card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.pain__card strong {
  color: var(--text);
  font-weight: 600;
}
.pain__cta-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 30%, var(--surface-2) 60%, var(--bg) 100%);
}
.about__inner {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}
.about__inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.04;
  pointer-events: none;
}
.about__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.about__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about__desc-main {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-soft);
  padding-top: 32px;
}

/* ── AUDIENCE ── */
.audience {
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 60%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.audience::before {
  content: '';
  position: absolute;
  bottom: 10%; right: -250px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 254, 126, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.audience__card {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 300ms, transform 300ms var(--ease-out);
}
.audience__card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.audience__icon { font-size: 2rem; margin-bottom: 16px; }
.audience__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.audience__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.audience__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: var(--accent-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 24px;
  display: inline-block;
  width: 100%;
}

/* ── PROGRAM ── */
.program {
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 78%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.program::before {
  content: '';
  position: absolute;
  top: 50%; right: -150px;
  transform: translateY(-50%);
  width: 500px; height: 700px;
  background: radial-gradient(ellipse, rgba(0, 254, 126, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.modules { display: flex; flex-direction: column; gap: 12px; }
.module {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 300ms;
}
.module.open { border-color: var(--border); }
.module__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  cursor: pointer;
  user-select: none;
}
.module__header:hover .module__num { color: var(--accent); }
.module__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-faint);
  line-height: 1;
  flex-shrink: 0;
  transition: color 200ms;
  min-width: 60px;
}
.module.open .module__num { color: var(--accent); }
.module__info { flex: 1; }
.module__title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.module__goal { font-size: 0.875rem; color: var(--text-muted); }
.module__toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 4px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, transform 300ms var(--ease-out);
}
.module__toggle span {
  display: block;
  width: 12px; height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 300ms var(--ease-out), border-color 200ms;
}
.module.open .module__toggle { background: var(--accent-dim); }
.module.open .module__toggle span {
  border-color: var(--accent);
  transform: rotate(-135deg) translateY(-3px);
}
.module__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-out);
}
.module.open .module__body { max-height: 800px; }
.module__body > * { padding: 0 32px; }
.module__topics, .module__hw {
  padding-bottom: 24px !important;
}
.module__topics h4, .module__hw h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.module__topics ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.module__topics li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.module__topics li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.7;
  transform: rotate(45deg);
}
.module__hw p { font-size: 0.9rem; color: var(--text-muted); }
.module__result {
  background: linear-gradient(135deg, var(--accent-dark) 0%, transparent 100%);
  border-top: 1px solid var(--border);
  padding: 20px 32px !important;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.result-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
  margin-right: 8px;
}

/* ── RESULTS ── */
.results {
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 25%, var(--surface-2) 52%, var(--surface) 78%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(0, 254, 126, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.results__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 300ms, transform 300ms var(--ease-out);
}
.results__item:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.results__icon { font-size: 1.75rem; }
.results__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── SPEAKER ── */
.speaker {
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}
/* Диагональная Λ-полоса в правом нижнем углу — как на баннерах брендбука */
.speaker::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 520px; height: 520px;
  background: var(--accent);
  clip-path: polygon(55% 0, 72% 0, 30% 100%, 12% 100%);
  opacity: 0.07;
  pointer-events: none;
}
.speaker__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 60px);
  overflow: visible;
  position: relative;
}
.speaker__avatar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: -60px;
  position: relative;
}
.speaker__avatar::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 40px;
  transform: translateX(-50%);
  width: 110%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(0, 254, 126, 0.18) 0%, rgba(0, 254, 126, 0.06) 35%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(12px);
}
.speaker__photo {
  width: 100%;
  height: 400px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 32px rgba(0, 254, 126, 0.10));
  position: relative;
  z-index: 1;
}
.speaker__cta {
  margin-top: -32px;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  font-size: 1rem;
  padding: 16px 24px;
  box-shadow: 0 12px 32px rgba(0, 254, 126, 0.32), 0 0 0 1px rgba(0, 254, 126, 0.2);
}
.speaker__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.speaker__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.speaker__role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.speaker__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--r-md);
}
.speaker__stat { display: flex; flex-direction: column; gap: 4px; }
.speaker__stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.speaker__stat-lab { font-size: 0.8rem; color: var(--text-muted); }
.speaker__clients { margin-bottom: 16px; }
.speaker__clients-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.speaker__clients-list { font-size: 0.9rem; color: var(--text-muted); }
.speaker__note {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--accent-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews {
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 30%, var(--surface-2) 55%, var(--surface) 80%, var(--bg) 100%);
}
.reviews .section-title,
.reviews .section-sub {
  margin-bottom: 8px;
}
.marquee {
  margin-top: 32px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee--reverse .marquee__track {
  animation-name: marquee-scroll-reverse;
}
.review {
  flex-shrink: 0;
  width: 380px;
  min-height: 220px;
  margin-right: 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.review:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 254, 126, 0.10);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--avatar-bg, linear-gradient(135deg, var(--accent), #0a8c47));
  color: #04140a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review__author { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.review__role {
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.4;
}
.review__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none !important; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── PRICING ── */
.pricing {
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 20%, var(--surface-2) 45%, var(--surface-3) 60%, var(--surface-2) 80%, var(--bg) 100%);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.pricing__card {
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 300ms, transform 300ms var(--ease-out);
  position: relative;
}
.pricing__card:hover { transform: translateY(-4px); }
.pricing__card--featured {
  background: linear-gradient(160deg, var(--surface-3) 0%, var(--surface-2) 100%);
  border-color: var(--border);
  box-shadow: 0 0 0 1px var(--border), 0 32px 64px rgba(0, 0, 0, 0.4);
}
.pricing__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-3);
  padding: 4px 12px;
  border-radius: 3px;
  align-self: flex-start;
}
.pricing__badge--accent {
  color: var(--accent);
  background: var(--accent-dim);
}
.pricing__tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.pricing__price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.pricing__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}
.pricing__note {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.6;
  font-style: italic;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: clamp(60px, 8vw, 80px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-3) 25%, var(--surface-2) 50%, var(--surface-3) 78%, var(--bg) 100%);
  border-top: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
/* Левая Λ-диагональ как в брендбуке */
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; left: -80px;
  width: 480px; height: 320px;
  background: var(--accent);
  clip-path: polygon(30% 0, 50% 0, 15% 100%, 0% 100%);
  opacity: 0.08;
  pointer-events: none;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip__text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
}

/* ── FORM ── */
.form-section {
  padding: clamp(60px, 10vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 40%, var(--surface-2) 70%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0, 254, 126, 0.10) 0%, transparent 62%);
  pointer-events: none;
}
.form-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0, 254, 126, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 254, 126, 0.05),
    0 12px 48px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(0, 254, 126, 0.07);
}
.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, rgba(0, 254, 126, 0.45) 65%, transparent 100%);
  z-index: 1;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__tagline { font-size: 0.8rem; color: var(--text-faint); margin-top: 4px; }
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 200ms;
}
.footer__links a:hover { color: var(--accent); }
.footer__legal p { font-size: 0.8rem; color: var(--text-faint); }

/* ── GRAIN TEXTURE ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — NARROW TABLET / LARGE PHONE (≤ 600px)
   ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .pain__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE LARGE (≤ 768px)
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hide header on mobile */
  .header { display: none; }
  .logo__img--footer { height: 32px; }

  /* Anchor offset compensation (header is hidden) */
  section[id] { scroll-margin-top: 16px; }

  /* Section typography */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub {
    font-size: 0.95rem;
    margin-bottom: 36px;
    padding: 0 8px;
  }

  /* Hero */
  .hero {
    padding: clamp(40px, 8vw, 60px) 0 clamp(32px, 6vw, 48px);
  }
  .hero::before, .hero::after { display: none; }
  .hero__bg-glow {
    width: 600px; height: 400px;
    top: -10%;
  }
  .hero__eyebrow {
    font-size: 0.65rem;
    padding: 5px 12px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
  }
  .hero__eyebrow-extra { display: none; }
  .hero__title {
    font-size: clamp(2.1rem, 9.5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.5;
  }
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 40px;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero__stats {
    padding: 16px 12px;
    gap: 0;
    max-width: 100%;
  }
  .stat { padding: 0 10px; }
  .stat__value { font-size: 1.15rem; }
  .stat__label { font-size: 0.66rem; letter-spacing: 0.03em; }
  .stat__sep { height: 28px; }

  /* Pain */
  .pain__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pain__card { padding: 22px 18px; }
  .pain__icon { font-size: 1.5rem; margin-bottom: 10px; }
  .pain__card p { font-size: 0.88rem; }
  .pain__cta-text {
    font-size: 0.95rem;
    padding: 0 8px;
    line-height: 1.6;
  }

  /* Audience */
  .audience__grid { grid-template-columns: 1fr; gap: 14px; }
  .audience__card { padding: 24px 22px; }
  .audience__icon { font-size: 1.6rem; margin-bottom: 12px; }
  .audience__note { padding: 14px 18px; font-size: 0.88rem; }

  /* About */
  .about__inner { padding: 28px 22px; }
  .about__grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 24px; }
  .about__num { font-size: 1.75rem; }
  .about__desc-main { font-size: 0.95rem; padding-top: 24px; }
  .about__label { margin-bottom: 24px; font-size: 0.65rem; }

  /* Program / Modules */
  .module__header { padding: 18px 16px; gap: 12px; }
  .module__num {
    font-size: 1.5rem;
    min-width: 32px;
    color: var(--accent);
  }
  .module__title { font-size: 0.85rem; }
  .module__goal { font-size: 0.8rem; line-height: 1.5; }
  .module__toggle { width: 28px; height: 28px; }
  .module__body > * { padding: 0 18px; }
  .module__result { padding: 14px 18px !important; font-size: 0.85rem; }
  .module__topics li { font-size: 0.85rem; }
  .module__hw p { font-size: 0.85rem; }

  /* Results */
  .results__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .results__item { padding: 20px 18px !important; }

  /* Speaker */
  .speaker { overflow: hidden; }
  .speaker__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 22px;
    gap: 24px;
  }
  .speaker__avatar {
    margin: -50px auto 0;
    width: 240px;
    max-width: 100%;
  }
  .speaker__avatar::before { display: none; }
  .speaker__photo { height: 280px; }
  .speaker__cta { margin-top: -24px; font-size: 0.9rem; padding: 14px 20px; }
  .speaker__stats {
    justify-content: center;
    padding: 18px 16px;
    gap: 18px;
    flex-wrap: wrap;
  }
  .speaker__stat-val { font-size: 1.25rem; }
  .speaker__stat-lab { font-size: 0.72rem; }
  .speaker__role { font-size: 0.85rem; margin-bottom: 22px; }
  .speaker__clients-list { font-size: 0.85rem; }
  .speaker__note { font-size: 0.82rem; padding: 14px 16px; }

  /* Reviews / Marquee */
  .review {
    width: 280px;
    padding: 18px 20px;
    margin-right: 14px;
    gap: 14px;
    min-height: 200px;
  }
  .review__avatar { width: 42px; height: 42px; font-size: 0.85rem; }
  .review__name { font-size: 0.88rem; }
  .review__role { font-size: 0.72rem; }
  .review__text { font-size: 0.85rem; line-height: 1.55; }
  .marquee__track { animation-duration: 40s; }
  .marquee {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing__card { padding: 28px 22px; gap: 16px; }
  .pricing__tier { font-size: 0.9rem; }
  .pricing__price { font-size: 1.75rem; }
  .pricing__list li { font-size: 0.85rem; }

  /* CTA strip */
  .cta-strip__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }
  .cta-strip__text { font-size: 1rem; margin: 0 auto; }
  .cta-strip__inner .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .cta-strip::before { width: 280px; height: 200px; opacity: 0.05; }

  /* Form */
  .form-wrapper { border-radius: var(--r-lg); }
  .form-section::before { width: 600px; height: 300px; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .footer__brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 22px;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE SMALL (≤ 480px)
   ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Header */
  .logo__img { height: 48px; }
  .header__inner { gap: 10px; }

  /* Hero */
  .hero { padding: 32px 0 28px; }
  .hero__title {
    font-size: 1.85rem;
    line-height: 1.1;
  }
  .hero__subtitle { font-size: 0.92rem; }
  .hero__stats {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }
  .hero__stats .stat__sep { display: none; }
  .stat { padding: 0; }

  /* Pain — single column */
  .pain__grid { grid-template-columns: 1fr; }

  /* Results — single column */
  .results__grid { grid-template-columns: 1fr; }

  /* Speaker — smaller photo */
  .speaker__photo { height: 240px; }
  .speaker__avatar { width: 210px; margin-top: -40px; }
  .speaker__stats { gap: 14px; }
  .speaker__stat-val { font-size: 1.1rem; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
  .section-sub { font-size: 0.88rem; margin-bottom: 28px; }

  /* Buttons smaller */
  .btn-sm { padding: 7px 14px; font-size: 0.72rem; }
  .btn-lg { padding: 13px 26px; font-size: 0.88rem; }

  /* Reviews even smaller */
  .review { width: 260px; padding: 16px 18px; }
  .review__avatar { width: 38px; height: 38px; font-size: 0.8rem; }

  /* Modules tighter */
  .module__header { padding: 16px 14px; gap: 10px; }
  .module__num { font-size: 1.3rem; min-width: 28px; }
  .module__title { font-size: 0.8rem; }
  .module__goal { font-size: 0.76rem; }
  .module__body > * { padding: 0 14px; }
  .module__result { padding: 12px 14px !important; font-size: 0.8rem; }
}
