/* NSP — разблокировка активов. Статическая вёрстка лендинга. */

/* ─── Шрифты ─────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Bandera Pro";
  src: url("../fonts/bandera-pro-regular.ttf") format("truetype"), local("Bandera Pro");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bandera Pro";
  src: url("../fonts/bandera-pro-bold.ttf") format("truetype"), local("Bandera Pro");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── Токены ─────────────────────────────────────────────────────────── */

:root {
  --brand: #5F1358;
  --brand-light: #9B3F8F;
  --accent: #ED0677;
  --blue: #3C5DAA;

  --ink: #524457;
  --ink-soft: #4A4150;
  --muted: #756778;

  --line: #E0E0E0;
  --field-line: #D6CFD5;
  --gray: #F2F2F2;
  --lilac: #FAF5F9;

  --display: "Bandera Pro", Verdana, sans-serif;
  --body: Verdana, Geneva, sans-serif;
}

/* ─── База ───────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-light); }

input, textarea, select, button { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
  border-radius: 3px;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brand-light);
  outline-offset: 2px;
}

.page { width: 100%; overflow-x: hidden; }

.wrap { max-width: 1400px; margin: 0 auto; }

/* Горизонтально прокручиваемые полосы (схема, этапы, таймлайн) */
.rail { overflow-x: auto; }
.rail::-webkit-scrollbar { height: 2px; }
.rail::-webkit-scrollbar-thumb { background: var(--brand); }
.rail::-webkit-scrollbar-track { background: var(--line); }

/* ─── Секции ─────────────────────────────────────────────────────────── */

.section,
.section--flush,
.contacts { scroll-margin-top: 128px; }

.section { padding: clamp(44px, 5vw, 72px) clamp(20px, 4vw, 44px); }
.section--tall { padding: clamp(52px, 6vw, 88px) clamp(20px, 4vw, 44px); }
.section--flush { padding: clamp(52px, 6vw, 84px) 0; }

.section--white { background: #FFFFFF; }
.section--gray { background: var(--gray); }
.section--lilac { background: var(--lilac); position: relative; overflow: hidden; }
.section--top-rule { border-top: 3px solid var(--brand); }

.section__head { display: flex; gap: 24px; justify-content: space-between; flex-wrap: wrap; }
.section__head--baseline { align-items: baseline; }
.section__head--end { align-items: flex-end; }

.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0;
}
.section__title--lg { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.13; }
.section__title--20ch { max-width: 20ch; }
.section__title--22ch { max-width: 22ch; }
.section__title--24ch { max-width: 24ch; }
.section__title--26ch { max-width: 26ch; }

.section__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 14px 0 0;
  max-width: 58ch;
}

/* ─── Кнопки и ссылки ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-family: var(--body);
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}
.btn--solid { background: var(--brand); color: #fff; }
.btn--solid:hover { background: var(--brand-light); color: #fff; }
.btn--outline { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { background: #E9C9E4; color: var(--brand); }

.btn--xs { padding: 9px 18px; font-size: 13px; }
.btn--sm { padding: 13px 22px; font-size: 14px; font-weight: 700; }
.btn--md { padding: 16px 26px; font-size: 14px; font-weight: 700; max-width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 15px; font-weight: 700; }
.btn--xl { padding: 18px 38px; font-size: 15px; font-weight: 700; }

/* Ловушка для ботов: поле уводится за экран, а не прячется display:none —
   часть спам-скриптов пропускает скрытые поля. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn[disabled] { opacity: 0.65; cursor: default; }
.btn--solid[disabled]:hover { background: var(--brand); }
.btn--outline[disabled]:hover { background: transparent; color: var(--brand); }

.link-quiet {
  font-size: 15px;
  color: var(--brand);
  border-bottom: 1px solid #D9BFD5;
  padding-bottom: 3px;
}
.link-quiet:hover { color: var(--brand-light); border-bottom-color: var(--brand-light); }

.link-plain { border-bottom: 1px solid #DFC9DC; }
.link-brand { color: var(--brand); border-bottom: 1px solid #C9A6C4; }

.ext-arrow { display: inline-block; vertical-align: baseline; margin-left: 5px; flex-shrink: 0; }

.round-btn { width: 48px; height: 48px; border-radius: 999px; font-size: 16px; cursor: pointer; }
.round-btn--ghost { border: 1px solid #DFC9DC; background: transparent; color: var(--brand); }
.round-btn--ghost:hover { background: #fff; border-color: var(--brand); }
.round-btn--solid { border: 1px solid var(--brand); background: var(--brand); color: #fff; }
.round-btn--solid:hover { background: var(--brand-light); border-color: var(--brand-light); }

/* ─── Шапка ──────────────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header__accent { height: 2px; background: linear-gradient(90deg, #3C5DAA, #5F1358 52%, #ED0677); }

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 11px clamp(20px, 4vw, 44px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
}

.header__brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__logo { height: 28px; width: auto; display: block; }
.header__tag {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.3vw, 22px);
  flex-wrap: nowrap;
  justify-content: flex-end;
  font-size: 13px;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header__nav::-webkit-scrollbar { display: none; width: 0; height: 0; }
.header__nav a { color: var(--ink-soft); flex-shrink: 0; white-space: nowrap; }
.header__nav a:hover { color: var(--brand); }

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  font-size: 17px;
  color: var(--brand);
  cursor: pointer;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.header__cta:hover { background: var(--brand-light); border-color: var(--brand-light); color: #fff; }
.header__cta-short { display: none; }

.mobile-menu {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  padding: 8px clamp(20px, 4vw, 44px) 22px;
  max-height: 70vh;
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--brand); }

/* ─── Первый экран ───────────────────────────────────────────────────── */

.hero { background: var(--lilac); color: var(--ink); position: relative; overflow: hidden; }

.hero__glow {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(155, 63, 143, 0.16), rgba(60, 93, 170, 0.10) 46%, rgba(250, 245, 249, 0) 72%);
  pointer-events: none;
}

.hero__top {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(112px, 11vw, 152px) clamp(20px, 4vw, 44px) 0;
}
.hero__lead { max-width: 900px; }

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 74px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}

.hero__subtitle {
  font-family: var(--display);
  font-size: clamp(17px, 1.9vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--brand);
  margin: 22px 0 0;
  max-width: 38ch;
}

.hero__rule {
  height: 3px;
  width: min(340px, 60%);
  background: linear-gradient(90deg, #3C5DAA, #5F1358 52%, #ED0677);
  margin-top: 30px;
  border-radius: 999px;
}

.hero__actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-bottom: clamp(56px, 7vw, 86px);
}
.hero__cta { letter-spacing: 0.01em; }

.hero__stats-outer { position: relative; }
.hero__stats {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px) clamp(52px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.stat { background: #fff; border-radius: 14px; padding: 26px 26px 30px; border-top: 3px solid var(--brand); }
.stat__value {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  color: var(--ink);
}
.stat__label { font-size: 13px; color: var(--muted); margin-top: 9px; line-height: 1.5; }

/* ─── Схема блокировки ───────────────────────────────────────────────── */

.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  padding: 10px 18px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 999px;
  white-space: nowrap;
}
.tab.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }

.chain__rail { margin-top: 26px; padding: 26px 0 14px; }

.chain {
  display: grid;
  grid-template-columns: 185px 80px 200px 80px 185px 120px 200px;
  align-items: stretch;
  justify-content: start;
  min-width: 1050px;
}
.chain--wide {
  grid-template-columns: 185px 80px 200px 80px 185px 120px 200px 80px 185px;
  min-width: 1310px;
}

.chain__node {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
}
.chain__node--dim { background: #EAEAEA; }
.chain__node--dim .chain__name { color: var(--muted); }
.chain__node--license { border-color: var(--brand-light); }

.chain__name { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--ink); overflow-wrap: break-word; }
.chain__sub { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 7px; overflow-wrap: break-word; }

.chain__gap { position: relative; display: flex; align-items: center; justify-content: center; }
.chain__line { width: 100%; height: 0; }
.chain__line--ok { border-top: 2px solid var(--blue); }
.chain__line--broken { border-top: 2px dashed var(--accent); }
.chain__line--license { border-top: 2px dashed var(--brand-light); }

.chain__badge {
  position: absolute;
  top: calc(50% - 27px);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 4px 8px;
  z-index: 2;
}
.chain__badge--broken { background: var(--accent); }
.chain__badge--license { background: var(--brand-light); }

.chain__court {
  grid-column: 1 / span 7;
  margin-top: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.chain__court-line { position: absolute; left: 0; right: 0; top: 0; height: 0; border-top: 2px dashed var(--brand-light); }
.chain__court-tick { position: absolute; top: 0; width: 0; height: 22px; border-left: 2px dashed var(--brand-light); }
.chain__court-tick--left { left: 0; }
.chain__court-tick--right { right: 0; }
.chain__court-badge {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-light);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}

.chain__note {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 72ch;
  text-wrap: pretty;
}

/* ─── Направления работы ─────────────────────────────────────────────── */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(30px, 3.4vw, 44px);
  align-items: stretch;
}

.product {
  background: #FFFFFF;
  border-radius: 14px;
  padding: clamp(24px, 2.6vw, 34px);
  border-top: 3px solid var(--brand);
  display: flex;
  flex-direction: column;
}
.product__kicker { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.product__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}
.product__scope { font-size: 14px; color: var(--brand); line-height: 1.5; margin-top: 8px; }
.product__text { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 20px 0 0; }
.product__result { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.product__result-text { font-size: 15px; line-height: 1.6; color: var(--ink); margin-top: 9px; }
.product__foot { margin-top: auto; padding-top: 22px; }

/* Аккордеон */
.acc + .acc { margin-top: 18px; }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
}
.acc__btn--brand { color: var(--brand); }
.acc__label { font-size: 14px; font-weight: 700; }
.acc__sign { font-size: 20px; color: var(--brand); line-height: 1; }
.acc__body { margin-top: 16px; }

.bullets { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.bullets li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.bullets__dot { color: var(--brand-light); font-weight: 700; font-size: 13px; }

.permits { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.permits li { display: grid; grid-template-columns: 14px 1fr; gap: 12px; align-items: start; }
.permits__item--faded { opacity: 0.7; }
.permits__mark { width: 14px; height: 14px; border-radius: 999px; margin-top: 3px; }
.permits__mark--required { background: var(--brand); }
.permits__mark--maybe { border: 1px dashed var(--brand-light); }
.permits__mark--rare { border: 1px dotted #C9BCC8; }
.permits__name { font-size: 14px; font-weight: 700; color: var(--ink); }
.permits__note { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* Короткая заявка внутри карточки направления */
.mini__sent { background: var(--gray); border-radius: 10px; padding: 18px 16px; }
.mini__sent-text { font-size: 14px; line-height: 1.6; color: var(--ink); }
.mini__again {
  margin-top: 12px;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 13px;
  color: var(--brand);
  cursor: pointer;
  border-bottom: 1px solid #D9BFD5;
}
.mini__again:hover { color: var(--brand-light); }
.mini__form { display: grid; gap: 12px; }
.mini__error { font-size: 13px; color: var(--accent); }
.mini__submit { justify-self: start; }
.mini__hint { font-size: 12px; color: var(--muted); line-height: 1.5; }

.threshold {
  margin-top: clamp(24px, 2.8vw, 36px);
  background: #FFFFFF;
  border-radius: 14px;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: baseline;
  flex-wrap: wrap;
}
.threshold__value {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
  margin-top: 12px;
}
.threshold__note { font-size: 15px; color: var(--ink-soft); line-height: 1.6; max-width: 44ch; }

/* ─── Поля форм ──────────────────────────────────────────────────────── */

.field { display: block; }
.field--col { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field__label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.field--col .field__label { font-size: 13px; margin-bottom: 0; }
.field__req { color: var(--muted); }
.field__control {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--field-line);
  border-radius: 8px;
}
.field__control--lg { font-size: 15px; }
.field__control--lg:focus { background: #F6E9F5; }
.field__control--area { resize: vertical; }

/* ─── Сроки по направлениям ──────────────────────────────────────────── */

.process__subhead { margin-top: clamp(26px, 3vw, 38px); }
.process__subtitle { font-size: 16px; font-weight: 700; margin: 0; color: var(--brand); }
.process__rail { margin-top: 26px; padding-bottom: 14px; }

.stages {
  display: grid;
  grid-template-columns: minmax(150px, 2fr) minmax(160px, 3fr) minmax(210px, 8fr) minmax(200px, 6fr) minmax(170px, 4fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: start;
  min-width: 1180px;
}
.stage { min-width: 0; }
.stage__bar { height: 10px; border-radius: 999px; }
.stage__bar--blue { background: var(--blue); }
.stage__bar--brand { background: var(--brand); }
.stage__bar--violet { background: var(--brand-light); }
.stage__bar--accent { background: var(--accent); }
.stage__bar--optional {
  border: 1px dashed var(--accent);
  background: repeating-linear-gradient(90deg, #FADCEB 0 7px, transparent 7px 14px);
}
.stage__kicker { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }
.stage__name { font-size: 15px; font-weight: 700; line-height: 1.35; margin-top: 7px; color: var(--ink); }
.stage__name--muted { color: #7A6C7C; }
.stage__term {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
  margin-top: 8px;
  white-space: nowrap;
}
.stage__term--muted { color: #B06A9E; }
.stage__note { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 8px; }

.process__court { margin-top: clamp(30px, 3.4vw, 44px); padding-top: 24px; border-top: 1px solid var(--line); }
.process__court-row { display: flex; gap: 16px; align-items: baseline; margin-top: 12px; flex-wrap: wrap; }
.process__court-term { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--brand); line-height: 1.1; }
.process__court-note { font-size: 14px; color: var(--ink-soft); line-height: 1.55; max-width: 60ch; }

.disclaimer {
  margin-top: clamp(26px, 3vw, 36px);
  background: var(--gray);
  border-radius: 14px;
  padding: clamp(20px, 2.2vw, 28px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.disclaimer__mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #C9BCC8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}
.disclaimer__title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.disclaimer__text { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-top: 8px; max-width: 78ch; }

/* ─── Роль NSP в практике ────────────────────────────────────────────── */

.timeline__head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.timeline__nav { display: flex; gap: 10px; flex-shrink: 0; }

.timeline__years {
  max-width: 1400px;
  margin: 26px auto 0;
  padding: 0 clamp(20px, 4vw, 44px);
  display: flex;
  gap: 18px;
  align-items: center;
}
.timeline__year { display: flex; align-items: center; gap: 14px; flex: 1 1 0; min-width: 0; }
.timeline__year-label { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--muted); }
.timeline__year-line { flex: 1 1 0; height: 0; border-top: 1px solid #DED6DD; }

.timeline__rail {
  margin-top: 26px;
  display: flex;
  gap: 20px;
  scroll-snap-type: x proximity;
  padding: 0 clamp(20px, 4vw, 44px) 26px;
}

.tcard {
  flex: 0 0 min(330px, 80vw);
  scroll-snap-align: start;
  background: #FFFFFF;
  padding: 26px 26px 30px;
  border-top: 3px solid var(--brand);
  border-radius: 12px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.tcard__date { font-weight: 700; font-size: 15px; letter-spacing: 0.03em; }
.tcard__title { font-family: var(--display); font-size: 18px; font-weight: 700; margin: 16px 0 0; line-height: 1.4; }
.tcard__text { font-size: 14px; line-height: 1.62; margin: 10px 0 0; color: var(--ink-soft); }
.tcard__link {
  font-size: 13px;
  color: var(--brand);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tcard__link:hover { color: var(--brand-light); }

/* ─── Эфиры ──────────────────────────────────────────────────────────── */

.talks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(30px, 3.4vw, 44px);
  align-items: stretch;
}
.talk {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  border-radius: 14px;
  overflow: hidden;
  color: var(--ink);
}
.talk:hover { color: var(--ink); }
.talk__cover { position: relative; display: block; aspect-ratio: 16 / 9; background: var(--brand); overflow: hidden; }
.talk__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.talk__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36, 23, 38, 0) 45%, rgba(36, 23, 38, 0.55) 100%); }
.talk__date {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.talk__body { display: block; padding: clamp(20px, 2.2vw, 28px); }
.talk__title {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.25;
}
.talk__people { display: block; font-size: 14px; color: var(--brand); line-height: 1.55; margin-top: 10px; }
.talk__more { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 14px; }

/* ─── Вопросы и ответы ───────────────────────────────────────────────── */

.faq__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.faq__search {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--brand);
  padding-bottom: 8px;
  flex: 1;
  min-width: 250px;
}
.faq__search-label { color: var(--muted); font-size: 15px; }
.faq__search-input { border: 0; font-size: 15px; flex: 1; background: transparent; color: var(--ink); }

.faq__cats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; }
.faq__cat-btn {
  display: flex;
  gap: 8px;
  align-items: baseline;
  border: 1px solid #DFC9DC;
  background: transparent;
  color: #4A3F4C;
  padding: 9px 18px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 999px;
}
.faq__cat-btn.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.faq__cat-count { font-size: 11px; opacity: 0.66; }

.faq__list { margin-top: 36px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: flex-start;
  text-align: left;
  padding: 24px 0;
  flex-wrap: wrap;
}
.faq__q:hover { opacity: 0.6; }
.faq__cat {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  flex: 0 1 170px;
  min-width: 0;
  padding-top: 5px;
}
.faq__question { font-size: 18px; font-weight: 700; line-height: 1.45; flex: 1; min-width: 200px; color: var(--ink); }
.faq__sign { font-size: 22px; color: var(--brand); line-height: 1; padding-top: 2px; }

.faq__a { display: flex; gap: clamp(14px, 2vw, 28px); padding: 0 0 28px; flex-wrap: wrap; }
.faq__a-gutter { flex: 0 1 170px; min-width: 0; }
.faq__a-text { flex: 1; min-width: 260px; max-width: 72ch; }
.faq__a-text p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; text-wrap: pretty; }

.faq__more { margin-top: 28px; padding: 14px 28px; font-size: 14px; font-weight: 400; }
.faq__empty { font-size: 15px; color: var(--muted); padding: 32px 0; }
.faq__empty a { border-bottom: 1px solid #DFC9DC; }
.faq__disclaimer {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 34px;
  max-width: 80ch;
  font-style: italic;
}

/* ─── Команда ────────────────────────────────────────────────────────── */

.team__intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.team__text { display: grid; gap: 18px; }
.team__text p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; max-width: 64ch; }
.team__site { align-self: flex-start; margin-top: 4px; background: #fff; }

.team__people {
  margin-top: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: clamp(20px, 2.4vw, 30px);
  max-width: 840px;
}
.person__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #E9DCE7;
  border-radius: 12px;
  overflow: hidden;
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  display: block;
  filter: grayscale(1);
}
.person__name { font-size: 15px; font-weight: 700; margin-top: 14px; line-height: 1.35; }
.person__role { font-size: 13px; color: var(--muted); margin-top: 4px; }

.ratings {
  margin-top: clamp(36px, 4.4vw, 58px);
  background: var(--gray);
  border-radius: 14px;
  padding: clamp(22px, 2.4vw, 32px);
}
.ratings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: 20px;
  align-items: center;
}
.ratings__logo {
  width: 100%;
  height: 52px;
  object-fit: contain;
  background: rgba(127, 127, 127, 0.08);
  border-radius: 12px;
}

/* ─── Подробная анкета ───────────────────────────────────────────────── */

.lead {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.lead__text { font-size: 16px; line-height: 1.68; color: var(--ink-soft); margin: 22px 0 0; max-width: 44ch; text-wrap: pretty; }
.lead__points { margin-top: 28px; display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--ink-soft); }
.lead__point { display: flex; gap: 12px; align-items: baseline; }
.lead__dash { color: #C4B0C2; }
.lead__contact { margin-top: 30px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.lead__card { background: #FFFFFF; padding: clamp(24px, 3.4vw, 44px); border-radius: 14px; }
.lead__sent { padding: 36px 0; text-align: center; }
.lead__sent-title { font-family: var(--display); font-weight: 700; font-size: 28px; line-height: 1.2; }
.lead__sent-text { font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin: 14px 0 0; }

.lead__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 20px;
}
.lead__extra { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.lead__extra-kicker {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.lead__extra-grid { display: grid; gap: 22px; }
.lead__checks-title { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.lead__checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 10px 20px;
}
.check { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.check input { accent-color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }
.lead__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 20px;
}
.lead__error {
  margin-top: 26px;
  padding: 13px 16px;
  background: #FDEAF4;
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.lead__actions { margin-top: 26px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.lead__consent { font-size: 13px; color: var(--muted); line-height: 1.5; max-width: 32ch; }
.lead__consent a { border-bottom: 1px solid var(--line); }

/* ─── Банкам и УК ────────────────────────────────────────────────────── */

.partners__glow {
  position: absolute;
  top: -200px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(155, 63, 143, 0.13), rgba(60, 93, 170, 0.08) 46%, rgba(250, 245, 249, 0) 72%);
  pointer-events: none;
}
.partners {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}
.partners__title { margin: 16px 0 0; }
.partners__text { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 18px 0 0; max-width: 52ch; }
.partners__actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 26px; }
.partners__actions .btn { padding: 16px 30px; }
.partners__card { display: grid; gap: 22px; background: #FFFFFF; border-radius: 14px; padding: clamp(22px, 2.4vw, 32px); }
.partners__item-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.partners__item-text { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-top: 8px; }

/* ─── Контакты и подвал ──────────────────────────────────────────────── */

.contacts { background: var(--brand); color: #fff; position: relative; overflow: hidden; }
.contacts__inner { padding: clamp(52px, 6vw, 84px) clamp(20px, 4vw, 44px) 0; }
.contacts__rule {
  height: 3px;
  width: min(260px, 50%);
  background: linear-gradient(90deg, #3C5DAA, #E9C9E4 52%, #ED0677);
  margin-top: 24px;
  border-radius: 999px;
}
.contacts__text { font-size: 16px; line-height: 1.65; color: #E4CFE2; margin: 20px 0 0; max-width: 46ch; }
.contacts__actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.contacts__tg {
  font-size: 15px;
  color: #E4CFE2;
  border-bottom: 1px solid rgba(233, 201, 228, 0.4);
  padding-bottom: 3px;
}
.contacts__tg:hover { color: #fff; border-bottom-color: #fff; }

.contacts__offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.office__city { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #C4A6C0; }
.office__address { font-size: 15px; line-height: 1.7; color: #fff; margin: 16px 0 0; max-width: 34ch; }
.office__line { display: flex; gap: 20px; margin-top: 14px; font-size: 15px; color: #C4A6C0; flex-wrap: wrap; }
.office__line a { color: #C4A6C0; border-bottom: 1px solid rgba(255, 255, 255, 0.24); }
.office__line a:hover { color: #fff; }

.footer { position: relative; z-index: 2; background: var(--brand); margin-top: clamp(40px, 5vw, 64px); }
.footer__inner {
  padding: 24px clamp(20px, 4vw, 44px) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__logo { height: 22px; width: auto; display: block; opacity: 0.9; }
.footer__copy { font-size: 13px; color: #A98BA5; }
.footer__legal { font-size: 13px; color: #A98BA5; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.footer__legal:hover { color: #fff; }

.to-top {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(95, 19, 88, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  z-index: 60;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.to-top:hover { color: #fff; }
.to-top:active { background: rgba(95, 19, 88, 0.85); }

/* ─── Адаптив ────────────────────────────────────────────────────────── */

@media (max-width: 1480px) {
  .header__tag { display: none; }
}

@media (max-width: 1160px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
}

@media (max-width: 1000px) {
  .hero__cta { display: none; }
  .to-top { display: flex; }
}

@media (max-width: 430px) {
  .header__cta { padding: 10px 16px; }
  .header__cta-long { display: none; }
  .header__cta-short { display: inline; }
}
