:root {
  /* Палитра «синий + золото + бежевый + молочный» */
  --navy: #17304F;        /* основной тёмный — глубокий синий */
  --navy-light: #22406A;  /* приподнятые поверхности на тёмном */
  --navy-deep: #0F2138;   /* нижний край градиента тёмных секций */
  --gold: #C9A961;        /* золото — акцент на тёмном */
  --gold-lift: #D9BE85;   /* акцент на приподнятых поверхностях: там фон светлее */
  --gold-dark: #7C5F26;   /* золото для светлого фона */
  --ink: #141A21;         /* текст на светлом */
  --paper: #FFFFFF;
  --cream: #F8F5EF;       /* молочный — фон светлых секций */
  --sand: #EFE8DA;        /* бежевый — средний тон для выделенных блоков */
  --muted: #5C6470;
  --border: rgba(20, 26, 33, 0.12);
  --border-sand: rgba(20, 26, 33, 0.14);
  --border-dark: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --container: 1120px;

  /* Три голоса: антиква говорит про человека, моноширинный — про измеримое,
     гротеск связывает. Подробнее в DESIGN-MANIFESTO.md */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Второй акцент — холодный противовес золоту */
  --petrol: #0E5C63;      /* на светлом фоне */
  --petrol-lift: #4FB3BC; /* на тёмном фоне */

  /* Шкала типографики — других размеров на сайте нет.
     Подробности в DESIGN.md */
  --t-xs: 12px;
  --t-sm: 14px;
  --t-base: 15px;
  --t-md: 17px;
  --t-lg: 20px;
  --t-xl: clamp(21px, 2.4vw, 27px);
  --t-2xl: clamp(28px, 4vw, 40px);
  --t-3xl: clamp(34px, 4.4vw, 52px);
  --t-num: clamp(44px, 5.5vw, 68px);

  /* Вертикальный ритм — шаг 4px, все отступы кратны ему */
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-14: 56px;
  --sp-18: 72px;

  /* Свет и движение */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --glow: radial-gradient(60% 55% at 50% 40%, rgba(201,169,97,0.20), transparent 70%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; text-decoration: none; }

/* ---------- Появление при скролле ---------- */
/* Каскад: соседние элементы всплывают по очереди с шагом 70 мс.
   Задержку выставляет JS через переменную --i */
/* Кинематографическое появление: наведение фокуса камеры.
   Масштаб и размытие вместе со смещением дают ощущение глубины,
   которого не даёт обычное проявление. */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.97);
  filter: blur(5px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    filter 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
/* после проявления снимаем нагрузку с видеокарты */
.reveal.is-done { will-change: auto; }

/* Тонкая линия прогресса чтения вверху страницы */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  z-index: 200;
  transition: width 0.1s linear;
}
/* Процент прочитанного моноширинным — украшение превращается в прибор */
.progress__value {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.progress__value.is-on { opacity: 0.75; }

/* Зерно поверх тёмных плоскостей: краска, а не пиксель.
   SVG-шум в data-URI — без картинок и без нагрузки на процессор. */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

/* Полное уважение к системной настройке: движения нет вообще */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .progress, .progress__value { display: none; }
  .section__title::before { width: 44px; transition: none; }
  .hero::before, .section--dark::before { animation: none; }
  .btn::after { display: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--t-base);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn { transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
                   transform 0.2s var(--ease), box-shadow 0.25s ease, filter 0.2s ease; }
.btn { position: relative; overflow: hidden; isolation: isolate; }
/* Свечение изнутри: расходится из точки, где курсор коснулся кнопки */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 120% at var(--bx, 50%) var(--by, 50%),
              rgba(255,255,255,0.42), transparent 62%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.45s var(--ease), transform 0.5s var(--ease);
}
.btn:hover::before { opacity: 1; transform: scale(1); }
/* Блик, проходящий по кнопке — отсвет на металле */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 0.85s var(--ease);
}
.btn:hover::after { transform: translateX(340%) skewX(-18deg); }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px -6px var(--gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -10px var(--gold);
}
.btn--ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn--ghost:hover { border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
/* При прокрутке шапка чуть отрывается от страницы */
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 6px 24px -14px rgba(15,33,56,0.45);
}
.nav__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
  height: 74px;
}
/* Логотип — самостоятельный двухстрочный блок.
   Так антиква не пытается встать на одну линию с гротеском ссылок:
   у шрифтов разные вертикальные метрики, и оптически это всегда заметно. */
.nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
  flex: none;
  padding-right: 28px;
  border-right: 1px solid var(--border);
}
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.nav__logo-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-dark);
  line-height: 1;
}
/* Иерархия в шапке: логотип тёмный, пункты приглушены,
   акцент достаётся только активному разделу и кнопке */
.nav__links {
  display: none;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}
/* Подчёркивание вырастает из-под ссылки, а не появляется рывком */
.nav__links a:not(.nav__cta) {
  position: relative;
  padding-bottom: 3px;
  color: var(--muted);
  transition: color 0.2s ease;
}
/* Раздел, который сейчас на экране, подсвечивается акцентом */
.nav__links a.is-current {
  color: var(--gold-dark);
  font-weight: 600;
}
.nav__links a.is-current::after { transform: scaleX(1); }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold-dark); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta { transition: filter 0.2s ease, transform 0.2s ease; }
.nav__cta:hover { filter: brightness(1.35); transform: translateY(-1px); }
.nav__cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  line-height: 1;
  font-weight: 600;
  margin-left: 6px;
}
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); }

.nav__links.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 22px 20px;
  gap: 18px;
  font-size: var(--t-md);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 32px -20px rgba(15,33,56,0.5);
}
.nav__links.is-open .nav__cta { margin-left: 0; padding: 12px 24px; }

/* На узких экранах логотип без разделителя */
@media (max-width: 1159px) {
  .nav__logo { border-right: none; padding-right: 0; }
}

/* Порог поднят: при восьми пунктах на 1000px шапка уже тесная */
@media (min-width: 1160px) {
  .nav__links { display: flex; position: static; background: none; padding: 0; }
  .nav__toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(168deg, #1D3A5E 0%, var(--navy) 55%, var(--navy-deep) 100%);
  color: #fff;
  padding: 44px 0 48px;
  overflow: hidden;
}
/* Дышащий свет: два источника медленно смещаются и меняют яркость.
   Цикл 22 секунды — ниже порога осознанного восприятия.
   Плюс пятно, следующее за курсором с задержкой (переменные --mx/--my из JS). */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(38% 46% at var(--mx, 78%) var(--my, 34%), rgba(201,169,97,0.20), transparent 66%),
    radial-gradient(46% 60% at 78% 34%, rgba(201,169,97,0.13), transparent 68%),
    radial-gradient(70% 90% at 12% 100%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
  animation: breathe 22s ease-in-out infinite;
  transition: background-position 0.9s var(--ease);
  will-change: transform, opacity;
}
@keyframes breathe {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); opacity: 0.9; }
  50%      { transform: scale(1.08) translate3d(1.5%, -1%, 0); opacity: 1; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 25%, transparent 78%);
  pointer-events: none;
}
.hero__inner, .hero__text, .hero__photo { position: relative; z-index: 1; }
.hero__inner { display: grid; gap: 40px; align-items: center; }
.hero__text { min-width: 0; }
.eyebrow {
  font-family: var(--font-mono);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: var(--t-xs);
  font-weight: 600;
  margin: 0 0 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  font-weight: 600;
}
.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: var(--t-md);
  max-width: 560px;
  margin: 0 0 26px;
}
.hero__note { max-width: 480px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note {
  margin: 20px 0 0;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
  max-width: 440px;
}
.hero__photo { position: relative; }
/* Свечение под фотографией — отрывает её от фона */
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -14% -10% -6%;
  background: var(--glow);
  filter: blur(6px);
  pointer-events: none;
}
.hero__photo img {
  position: relative;
  /* показываем кадр целиком, без обрезки: пропорции задаёт сам файл */
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}

@media (min-width: 900px) {
  .hero { padding: 52px 0 52px; }
  .hero__inner { grid-template-columns: 1.3fr 0.7fr; gap: 44px; }
  .hero__photo img { margin-left: auto; max-width: 360px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--sp-14) 0; }
@media (min-width: 900px) { .section { padding: var(--sp-18) 0; } }
.section--dark {
  position: relative;
  /* лёгкий градиент вместо плоской заливки — тёмное перестаёт быть глухим */
  background: linear-gradient(178deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
/* Тёмные секции не плоские: слабый свет сверху даёт объём */
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 46% at 50% 0%, rgba(255,255,255,0.045), transparent 62%);
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

/* На приподнятых карточках фон светлее, поэтому акцент берём на тон ярче —
   иначе мелкий текст терракотой теряет контраст */
.role-card,
.audience-card:not(.audience-card--light),
.format-card--dark,
.cred-detail,
.industries {
  --gold: var(--gold-lift);
}
.section--dark .section__lead { color: rgba(255,255,255,0.65); }
/* третий тон фона — чтобы чередование тёмное/светлое не читалось как зебра */
.section--cream { background: var(--cream); }

/* Световой шов на стыке тёмных секций — засветка на плёнке вместо склейки */
.section--dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.55) 30%, rgba(201,169,97,0.55) 70%, transparent);
  z-index: 2;
}

/* Дыхание тёмных секций: очень медленный сдвиг верхнего света */
.section--dark::before {
  animation: drift 26s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { opacity: 0.85; transform: translate3d(-2%, 0, 0); }
  50%      { opacity: 1;    transform: translate3d(2%, 0, 0); }
}
/* Короткое акцентное правило над каждым заголовком секции —
   сквозной мотив, который сшивает страницу */
.section__title {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 var(--sp-3);
  padding-top: 20px;
}
/* Черта не «есть», а прочерчивается — микрожест автора */
.section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.7s var(--ease) 0.25s;
}
.section__title.is-visible::before,
.reveal.is-visible .section__title::before,
.is-visible > .section__title::before { width: 44px; }
.section__lead {
  color: var(--muted);
  font-size: var(--t-md);
  margin: 0 0 var(--sp-8);
  max-width: 560px;
}

.grid { display: grid; gap: var(--sp-6); }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Видео-знакомство ---------- */
.intro-video { background: var(--cream); }
.intro-video__inner { display: grid; gap: 32px; align-items: center; }
.intro-video__text p { font-size: var(--t-md); color: var(--muted); margin: 0; max-width: 460px; }
.intro-video video {
  width: 100%;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 10px 40px rgba(15,33,56,0.18);
}
@media (min-width: 900px) {
  .intro-video__inner { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}

/* ---------- Боли ---------- */
/* Секция на тёплом фоне со слабым световым пятном —
   иначе полотно белого между двумя тёмными блоками выглядит провалом */
#pains {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
#pains::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(48% 60% at 88% 8%, rgba(201,169,97,0.12), transparent 66%);
  pointer-events: none;
}
#pains > * { position: relative; z-index: 1; }

/* Две колонки без разделительных линий.
   Линии рвались: строки разной длины дают разную высоту строк сетки,
   и границы в соседних колонках переставали совпадать. */
.pains {
  list-style: none;
  margin: 0 0 var(--sp-10);
  padding: 0;
  display: grid;
  gap: 18px;
}
@media (min-width: 820px) {
  .pains { grid-template-columns: 1fr 1fr; gap: 18px 28px; }
}
.pains__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--ink);
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}
.pains__item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
/* Золотая метка-индекс: вертикальный штрих, центрированный по всей высоте
   карточки — не тире, а закладка на полях документа */
.pains__item::before {
  content: "";
  flex: none;
  align-self: stretch;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transition: width 0.25s var(--ease);
}
.pains__item:hover::before { width: 5px; }
/* Вывод — отдельный тёмный блок, а не тот же абзац покрупнее.
   Разница в кегле читается как смена голоса, только если сменилась и среда. */
/* Песочный, а не тёмный: блок остаётся отдельной средой,
   но не проваливается в чёрное посреди светлой секции */
.pains__conclusion {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--border-sand);
  border-left: 4px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 32px 30px;
  overflow: hidden;
}
.pains__conclusion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 86% 0%, rgba(124,95,38,0.08), transparent 66%);
  pointer-events: none;
}
.pains__conclusion p {
  position: relative;
  margin: 0;
  max-width: 780px;
  font-size: var(--t-md);
  color: var(--muted);
}
/* Второй абзац — сам вопрос — набран антиквой и крупнее */
.pains__question {
  margin-top: 14px !important;
  font-family: var(--font-display);
  font-size: var(--t-xl) !important;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink) !important;
}
@media (min-width: 820px) {
  .pains__conclusion { padding: 40px 44px; }
}

/* ---------- Роли ---------- */
/* Крупная цифра антиквой вместо мелкой подписи — даёт странице
   редакционный характер и отличает эти карточки от остальных */
.role-card {
  position: relative;
  padding: 22px 22px 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--navy-light);
  overflow: hidden;
}
.role-card { transition: border-color 0.25s ease, transform 0.25s var(--ease); }
.role-card:hover { border-color: rgba(255,255,255,0.28); transform: translateY(-3px); }
/* Цифра — маленькая маркерная метка над заголовком, а не фоновый гигант:
   так она не спорит с текстом карточки на любой ширине сетки */
.role-card__num {
  display: block;
  position: relative;
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
  pointer-events: none;
}
.role-card__num::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.6;
  transition: width 0.3s var(--ease);
}
.role-card:hover .role-card__num::after { width: 28px; }
.role-card h3 { margin: 0 0 8px; font-size: var(--t-lg); position: relative; }
.role-card p { margin: 0; color: rgba(255,255,255,0.65); font-size: var(--t-sm); position: relative; }

/* ---------- Отрасли ---------- */
.industries {
  margin-top: var(--sp-14);
  padding: 36px 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}
.industries__title { margin: 0 0 8px; font-size: var(--t-lg); color: var(--gold); }
.industries__lead { margin: 0 0 20px; color: rgba(255,255,255,0.65); font-size: var(--t-base); max-width: 620px; }
.industries__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industries__list li {
  border: 1px solid rgba(201,162,39,0.42);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: var(--t-sm);
  font-weight: 500;
}
.industries__note {
  margin: 0;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  max-width: 620px;
}

/* ---------- Кому помогаю ---------- */
.audience-card {
  padding: 26px 22px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--navy-light);
}
.audience-card h3 { margin: 0 0 8px; font-size: var(--t-lg); color: var(--gold); }
.audience-card p { margin: 0; color: rgba(255,255,255,0.65); font-size: var(--t-sm); }

.audience-card--light {
  background: #fff;
  border-color: var(--border);
  border-left: 3px solid var(--gold-dark);
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  transition: border-color 0.2s ease, border-left-width 0.2s var(--ease), transform 0.2s ease;
}
.audience-card--light:hover {
  border-color: var(--gold);
  border-left-width: 5px;
  transform: translateY(-2px);
}
.audience-card--light h3 {
  font-family: var(--font-body);
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  /* два ряда под заголовок у всех карточек — низ описаний встаёт на одну линию */
  min-height: calc(var(--t-md) * 1.3 * 2);
  margin: 0 0 10px;
}
.audience-card--light p { color: var(--muted); margin: 0; }

/* ---------- Личное ---------- */
.personal { background: var(--cream); }
.personal__grid { display: grid; gap: 36px; }
@media (min-width: 900px) {
  .personal__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
}
.personal__text p {
  font-size: var(--t-md);
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 560px;
}
.personal__accent {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  color: var(--ink) !important;
  font-weight: 500;
}
.personal__women {
  font-size: var(--t-base) !important;
  color: var(--muted);
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.personal__topics {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.personal__topics h3 {
  margin: 0 0 18px;
  font-size: var(--t-sm);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-dark);
}
.personal__topics ul { list-style: none; margin: 0; padding: 0; }
.personal__topics li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--border);
  font-size: var(--t-sm);
  color: var(--muted);
}
/* Тот же маркер, что в «Знакомо?» и «Партнёрстве» — короткая вертикаль,
   а не точка или дефис. Один и тот же приём для любого списка на сайте. */
.personal__topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 16px;
  background: var(--gold-dark);
  transition: height 0.3s var(--ease);
}
.personal__topics li:hover::before { height: 26px; }
.personal__topics li:last-child { border-bottom: none; padding-bottom: 0; }
.personal__topics li strong {
  display: block;
  color: var(--ink);
  font-size: var(--t-md);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ---------- Как это устроено у меня ---------- */
.myself__grid { margin-bottom: var(--sp-8); }
.myself-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.myself-card h3 { margin: 0 0 10px; font-size: var(--t-lg); letter-spacing: -0.01em; }
.myself-card p { margin: 0; font-size: var(--t-base); color: var(--muted); }

.values {
  background: var(--sand);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.values__text {
  margin: 0;
  font-size: var(--t-md);
  color: var(--muted);
  max-width: 820px;
}
.values__text strong { color: var(--gold-dark); font-weight: 600; }
.values__mission {
  margin-top: 20px !important;
  padding-top: 20px;
  border-top: 1px solid var(--border-sand);
  color: var(--ink) !important;
  font-size: var(--t-md) !important;
}

/* ---------- Партнёрство ---------- */
.partner { display: grid; gap: 36px; }
@media (min-width: 900px) {
  .partner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; }
}
.partner__lead p {
  font-size: var(--t-md);
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 540px;
}
.partner__lead p:last-child { margin-bottom: 0; }

.partner__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.partner__list li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--border);
  font-size: var(--t-sm);
  color: var(--muted);
}
.partner__list li:last-child { border-bottom: none; }
/* Маркер — короткая вертикаль, а не точка: перекликается с линией прогресса */
.partner__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 2px;
  height: 16px;
  background: var(--gold-dark);
  transition: height 0.3s var(--ease);
}
.partner__list li:hover::before { height: 26px; }
.partner__list li strong {
  display: block;
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.partner__note {
  margin: var(--sp-10) 0 0;
  padding: 24px 26px;
  background: var(--sand);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius);
  font-size: var(--t-base);
  color: var(--muted);
  max-width: 880px;
}

/* ---------- Форматы ---------- */
.format-card {
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.format-card--dark {
  background: var(--navy-light);
  border-color: var(--border-dark);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.format-card--dark:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,0.85);
}
/* Цена подсвечивается акцентом при наведении на карточку */
.format-card--dark .format-card__price {
  font-family: var(--font-mono); transition: color 0.25s ease; }
.format-card--dark:hover .format-card__price {
  font-family: var(--font-mono); color: var(--gold) !important; }
.format-card__tag {
  font-family: var(--font-mono);
  display: inline-block;
  align-self: flex-start;
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.42);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.format-card h3 { margin: 0 0 10px; font-size: var(--t-lg); }
.format-card p { margin: 0 0 20px; font-size: var(--t-sm); flex: 1; color: var(--muted); }
.format-card--dark p { color: rgba(255,255,255,0.65); }
.format-card__price {
  font-family: var(--font-mono);
  font-size: var(--t-xl) !important;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin: 0 0 14px !important;
  flex: none !important;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.format-card__price span {
  display: block;
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0;
  margin-top: 2px;
}
.format-card__link { font-weight: 600; font-size: var(--t-sm); color: var(--gold); }

.payment {
  margin-top: var(--sp-10);
  display: grid;
  gap: 24px;
  padding: 30px 0 0;
  border-top: 1px solid var(--border-dark);
}
@media (min-width: 800px) { .payment { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.payment__item h4 {
  margin: 0 0 8px;
  font-size: var(--t-base);
  color: var(--gold);
  font-weight: 600;
}
.payment__item p { margin: 0; font-size: var(--t-sm); color: rgba(255,255,255,0.62); }
.format-card--dark .format-card__link { color: var(--gold); }

/* ---------- Что вы получите ---------- */
.result { display: grid; gap: 22px; }
@media (min-width: 900px) { .result { grid-template-columns: repeat(3, 1fr); } }
.result-card {
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
/* Тот же паттерн, что у .role-card__num: маленькая метка с чертой,
   а не крупное полупрозрачное число — единая система нумерации по сайту */
.result-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.result-card__num::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.6;
}
.result-card h3 { margin: 0 0 12px; font-size: var(--t-lg); letter-spacing: -0.01em; }
.result-card p { margin: 0; font-size: var(--t-base); color: var(--muted); }

.result__note {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-14);
  max-width: 760px;
}
.result__note p { font-size: var(--t-md); color: var(--muted); margin: 0 0 16px; }
.result__accent {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  color: var(--ink) !important;
  font-weight: 500;
  margin-bottom: 0 !important;
}

/* ---------- Процесс ---------- */
/* Шаги связаны горизонтальной линией с узлами — читается как маршрут,
   а не как четыре независимые колонки в пустом поле */
.steps { display: grid; gap: var(--sp-8); }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-10) var(--sp-8); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-8); } }

.step { position: relative; padding-top: var(--sp-6); }
/* линия-маршрут */
.step::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: calc(var(--sp-8) * -1);
  height: 1px;
  background: var(--border);
}
.step:last-child::before { right: 0; }
/* узел на линии */
.step::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-dark);
  box-shadow: 0 0 0 4px var(--cream);
}
@media (max-width: 699px) {
  .step::before { right: 0; }
}

.step__num {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
}
.step__num::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.6;
}
.step h3 { margin: 0 0 var(--sp-2); font-size: var(--t-md); font-weight: 600; }
.step p { margin: 0; font-size: var(--t-sm); color: var(--muted); }

/* ---------- Образование ---------- */
.creds {
  display: grid;
  gap: 20px;
  margin-bottom: var(--sp-10);
}
@media (min-width: 700px) { .creds { grid-template-columns: repeat(3, 1fr); } }
.cred {
  padding: 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  text-align: center;
}
.cred__value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-num);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.cred__label {
  display: block;
  margin-top: 6px;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
}

.cred-detail {
  max-width: 760px;
  padding: 32px 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--navy-light);
}
.cred-detail h3 { margin: 0 0 4px; font-size: var(--t-lg); color: var(--gold); }
.cred-detail__second { margin-top: 36px !important; }
.cred-detail__org {
  margin: 0 0 14px;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cred-detail p { color: rgba(255,255,255,0.72); font-size: var(--t-base); margin: 0 0 16px; }
.cred-detail h4 {
  margin: 24px 0 12px;
  font-size: var(--t-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}
.cred-list { list-style: none; margin: 0; padding: 0; }
.cred-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.62);
}
.cred-list li span {
  font-family: var(--font-mono);
  grid-row: span 2;
  color: var(--gold);
  font-weight: 700;
  font-size: var(--t-sm);
  padding-top: 2px;
}
.cred-list li em {
  font-style: normal;
  font-weight: 600;
  font-size: var(--t-base);
  color: #fff;
}
.cred-list--plain li { grid-template-columns: 58px 1fr; }
.cred-list--plain li span { grid-row: auto; }

.cred-full { margin-top: var(--sp-6); }
.cred-full summary {
  cursor: pointer;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gold);
  padding: 12px 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cred-full summary::-webkit-details-marker { display: none; }
.cred-full summary::before {
  content: "+ ";
  font-weight: 700;
}
.cred-full[open] summary::before { content: "− "; }
.cred-full[open] summary { color: rgba(255,255,255,0.6); }

.cred-note {
  margin: 24px 0 0;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  max-width: 760px;
}

/* ---------- Промежуточный призыв ---------- */
/* Ставится в двух самых заряженных местах страницы, чтобы дозревший читатель
   не листал до самого низа в поисках кнопки */
.midcta {
  margin-top: var(--sp-14);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}
.midcta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  max-width: 620px;
}
@media (min-width: 760px) {
  .midcta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
  }
  .midcta .btn { flex: none; }
}

/* ---------- Вопросы ---------- */
.faq { display: grid; gap: var(--sp-3); max-width: 860px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}
.faq__item[open] { border-color: var(--gold); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 24px;
  position: relative;
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
/* плюс, который поворачивается в минус */
.faq__item summary::after,
.faq__item summary::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  background: var(--gold-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.faq__item summary::before { width: 13px; height: 2px; margin-top: -1px; }
.faq__item summary::after { width: 2px; height: 13px; margin-top: -6.5px; right: 29.5px; }
.faq__item[open] summary::after { transform: rotate(90deg); opacity: 0; }
.faq__item p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: var(--t-base);
  color: var(--muted);
  max-width: 680px;
}

/* ---------- CTA ---------- */
.cta { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.cta__inner {
  display: grid;
  gap: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 44px 28px;
}
.cta__text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.cta__text p { color: rgba(255,255,255,0.72); margin: 0 0 16px; font-size: var(--t-base); }
.cta__honest {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  font-size: var(--t-sm) !important;
  color: rgba(255,255,255,0.62) !important;
}
.cta__contacts { font-size: var(--t-sm); color: rgba(255,255,255,0.6) !important; margin-bottom: 0 !important; }

.contacts { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.contacts li { display: flex; align-items: baseline; gap: 14px; }
.contacts__label {
  font-family: var(--font-mono);
  flex: 0 0 78px;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.55);
}
.contacts a {
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.contacts a:hover { border-bottom-color: var(--gold); }

.cta__format {
  margin: 22px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--t-sm) !important;
  color: rgba(255,255,255,0.55) !important;
}

.cta__form { display: flex; flex-direction: column; gap: 13px; }
.cta__form input[type="text"],
.cta__form input[type="tel"],
.cta__form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: var(--t-sm);
}
.cta__form input::placeholder,
.cta__form textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta__form input:focus,
.cta__form textarea:focus { outline: none; border-color: var(--gold); }

/* honeypot против спам-ботов — скрыт от людей, виден ботам */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cta__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
}
.cta__consent input { margin-top: 2px; accent-color: var(--gold); }

.cta__form-status { min-height: 20px; font-size: var(--t-sm); color: var(--gold); margin: 0; }

@media (min-width: 900px) {
  .cta__inner { grid-template-columns: 1fr 1fr; padding: 60px; gap: 56px; }
}

/* ---------- Плавающая кнопка Telegram ---------- */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(15,33,56,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.fab:hover { transform: translateY(-2px); filter: brightness(0.92); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 26px 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  font-size: var(--t-sm);
  color: var(--muted);
}
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
@media (min-width: 640px) {
  .footer__inner { flex-direction: row; justify-content: space-between; }
}
