/* CareerGo · лендинг v2 · брендбук 09.06.2026 */

:root {
  /* Палитра из брендбука */
  --deep: #02331E;       /* тёмный край градиента, плашки */
  --teal: #0C8A72;       /* основной акцент, «Go», кнопки */
  --mint: #46E0C2;       /* светлый блик градиента */
  --ink: #111111;        /* текст «Career», заголовки */
  --paper: #F0EEE7;      /* основной фон — вместо белого */
  --paper-cool: #EBEBEB; /* фон-вариант для ритма */
  --white: #FFFFFF;

  --ink-70: rgba(17,17,17,.70);
  --ink-50: rgba(17,17,17,.50);
  --ink-35: rgba(17,17,17,.35);

  /* Живой изумруд — глубокий по краям, блик в центре */
  --grad: linear-gradient(100deg, #0C8A72 0%, #46E0C2 55%, #0C8A72 100%);
  --grad-go: linear-gradient(100deg, #0C8A72 0%, #0A7A64 55%, #23B894 100%);
  --grad-deep: linear-gradient(135deg, #02331E 0%, #0A5C44 50%, #02331E 100%);

  --mono: 'Inconsolata', ui-monospace, monospace;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============ Утилиты ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow.muted { color: var(--ink-35); }
.on-dark .eyebrow.muted { color: rgba(255,255,255,.4); }

.gtext {
  background: var(--grad-go);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Логотип ============ */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo .word {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  position: relative;
  padding-bottom: 9px;
}
/* линия — только под словом CareerGo (как .wm.line в макете) */
.logo .word::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0.06em;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #0D3D2A 0%, #2E8B68 50%, #45D6B5 100%);
  border-radius: 2px;
}
.logo .word .c { color: #0D3D2A; } /* тёмный зелёный — макет 12.06 */
.logo.on-dark .word .c { color: #fff; }
.logo .word .g {
  font-style: italic;
  color: #31A185; /* средний изумруд — макет 12.06 */
  background: none;
  margin-left: 0.14em; /* видимый пробел Career · Go */
  padding-right: .06em;
}
.logo .loadline { display: none; }
.logo .descriptor {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #173B2D;
  white-space: nowrap;
}
.site-foot .logo .descriptor { color: rgba(255,255,255,.4); }

/* ============ Кнопки ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 140ms ease;
}
.btn.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 6px rgba(12,138,114,.25), 0 12px 32px rgba(12,138,114,.22);
}
.btn.primary:hover { background: #0A7861; transform: translateY(-1px); }
.btn.primary:active { transform: translateY(0); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(17,17,17,.18);
}
.btn.ghost:hover { border-color: var(--teal); color: var(--teal); }
.on-dark .btn.ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.on-dark .btn.ghost:hover { border-color: var(--mint); color: var(--mint); }
.btn.lg { padding: 18px 40px; font-size: 17px; }
.btn.sm { padding: 11px 22px; font-size: 14px; }

/* ============ Header ============ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240,238,231,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(17,17,17,.07);
}
.site-head .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-head .logo .word { font-size: 22px; }
.site-head nav {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-70);
}
.site-head nav a:hover { color: var(--teal); }
.site-head .actions { display: flex; gap: 12px; align-items: center; }
.site-head .login-link { font-size: 14.5px; font-weight: 600; color: var(--ink-70); }
.site-head .login-link:hover { color: var(--teal); }

/* ============ Hero ============ */
.hero {
  background: radial-gradient(110% 90% at 80% -10%, #0A5C44 0%, var(--deep) 55%);
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(70,224,194,.13), transparent);
  pointer-events: none;
}
.hero .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 18px 0 20px;
  padding-bottom: 0.08em;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--mint) 20%, #7FF0DA 60%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  display: inline-block;
  padding-right: 0.05em;
  padding-bottom: 0.05em;
}
.hero .lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero .micro {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* hero mockup — карточка кандидата из брендбука */
.mock {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.45), 0 6px 20px rgba(0,0,0,.3);
  color: var(--ink);
  container-type: inline-size;
}
.mock .bar {
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}
.mock .bar .l {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.mock .bar .l .g { color: var(--mint); font-style: italic; }
.mock .bar .r {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.mock .body {
  display: grid;
  /* fallback для браузеров без container queries */
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
}
/* Карточке просторно (≥520px) — две колонки с балансом */
@container (min-width: 520px) {
  .mock .body { grid-template-columns: minmax(220px, 0.9fr) 1.1fr; }
}
/* Карточке тесно (<520px) — стек, разделитель переезжает вниз */
@container (max-width: 519.9px) {
  .mock .body { grid-template-columns: 1fr; }
  .mock .shortlist {
    border-right: none;
    border-bottom: 1px solid rgba(17,17,17,.08);
  }
}
.mock .shortlist {
  border-right: 1px solid rgba(17,17,17,.08);
  padding: 14px;
  background: #fff;
}
.mock .shortlist .ttl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}
.mock .shortlist .ttl .n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-35);
}
.mock .sl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 9px;
  border-radius: 8px;
  margin-bottom: 3px;
}
.mock .sl-item.active { background: rgba(12,138,114,.08); }
.mock .sl-item .av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-go);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock .sl-item .who { flex: 1; min-width: 0; }
.mock .sl-item .nm {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock .sl-item .pos {
  font-size: 10.5px;
  color: var(--ink-50);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock .sl-item .match {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.mock .profile { padding: 18px; background: var(--paper); }
.mock .profile .top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.mock .profile .top > div:not(.match-lg) { min-width: 0; }
.mock .profile .top .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock .profile .av-lg {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-go);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.mock .profile .nm { font-size: 16px; font-weight: 800; line-height: 1.2; }
.mock .profile .pos { font-size: 12px; color: var(--ink-50); }
.mock .profile .match-lg {
  margin-left: auto;
  text-align: right;
}
.mock .profile .match-lg .v {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.mock .profile .match-lg .t {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-35);
  text-transform: uppercase;
}
.mock .tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.mock .tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: 999px;
  color: var(--ink-70);
  white-space: nowrap;
}
.mock .stage-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-35);
  margin-bottom: 8px;
}
.mock .stage-bars { display: flex; gap: 5px; margin-bottom: 8px; }
.mock .stage-bars .sb {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background: rgba(17,17,17,.1);
}
.mock .stage-bars .sb.on { background: var(--grad); }
.mock .stage-note {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--ink-50);
}
.mock .ai-note {
  margin-top: 14px;
  background: #fff;
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-70);
}
.mock .ai-note b { color: var(--teal); }

/* ============ Секции ============ */
section { padding: clamp(56px, 8vw, 104px) 0; }
section.tight { padding: clamp(40px, 6vw, 72px) 0; }
.sec-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.sec-head p { font-size: clamp(15px, 1.2vw, 17.5px); color: var(--ink-70); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ Проблема → решение ============ */
.pain {
  background: var(--paper-cool);
}
.pain .cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pain .col {
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  position: relative;
}
.pain .col .num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.pain .col h3 { font-size: 18px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.pain .col p { font-size: 14.5px; color: var(--ink-70); }
.pain .col.dark {
  background: var(--deep);
  color: #fff;
}
.pain .col.dark h3 { color: #fff; }
.pain .col.dark p { color: rgba(255,255,255,.75); }
.pain .col.dark .num { color: var(--mint); }

/* ============ Фичи ============ */
.feature .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.feature.flip .wrap > .txt { order: 2; }
.feature.flip .wrap > .vis { order: 1; }
.feature .num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.12em;
}
.feature h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 12px 0 16px;
}
.feature .prob {
  font-size: 15.5px;
  color: var(--ink-70);
  padding: 14px 18px;
  background: var(--paper-cool);
  border-left: 3px solid rgba(17,17,17,.18);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 18px;
}
.feature ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 22px;
}
.feature ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
}
.feature ul li .ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
}
.feature .kicker {
  font-weight: 800;
  font-size: 16.5px;
  margin-bottom: 22px;
}
.feature .kicker .gtext { font-style: normal; }
.feature .cta-inline {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feature .cta-inline:hover { text-decoration: underline; }

/* визуальные мокапы фич */
.vis-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(2,51,30,.12), 0 4px 14px rgba(2,51,30,.06);
}
.vis-card .vc-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-35);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
.vis-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(17,17,17,.07);
  font-size: 13.5px;
}
.vis-row:first-of-type { border-top: none; }
.vis-row .grow { flex: 1; min-width: 0; }
.vis-row .b { font-weight: 700; }
.vis-row .s { color: var(--ink-50); font-size: 12px; }
.vis-row .pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
}
.pill.ok { background: rgba(12,138,114,.12); color: var(--teal); }
.pill.warn { background: rgba(201,138,30,.13); color: #A87412; }
.pill.flag { background: rgba(214,70,61,.12); color: #C23E36; }
.vis-bar-wrap { margin-top: 6px; height: 6px; background: rgba(17,17,17,.08); border-radius: 3px; overflow: hidden; }
.vis-bar { height: 100%; background: var(--grad); border-radius: 3px; }

.vis-funnel { display: flex; flex-direction: column; gap: 10px; }
.vis-funnel .fcol {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vis-funnel .fcol .lbl {
  width: 96px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}
.vis-funnel .fcol .track {
  flex: 1;
  height: 30px;
  background: rgba(17,17,17,.06);
  border-radius: 7px;
  overflow: hidden;
}
.vis-funnel .fcol .fill {
  height: 100%;
  background: var(--grad);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  min-width: 44px;
}

/* источники-чипы */
.src-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.src-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.1);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.src-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

/* ============ Метрики ============ */
.metrics {
  background: var(--deep);
  color: #fff;
}
.metrics .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.metrics .m { border-top: 2px solid; border-image: var(--grad) 1; padding-top: 18px; }
.metrics .m .v {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(100deg, var(--mint), #7FF0DA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metrics .m .t { margin-top: 10px; font-size: 15px; color: rgba(255,255,255,.72); }

/* ============ Для кого ============ */
.who .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.who .card {
  background: #fff;
  border-radius: var(--r);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.who .card .role-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.who .card h3 { font-size: 19px; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.who .card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.who .card ul li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-70);
}
.who .card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  margin-top: 8px;
}
.who .card .last {
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 700;
}

/* ============ Отзывы ============ */
.quotes { background: var(--paper-cool); }
.quotes .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: #fff;
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote .stars { display: flex; gap: 3px; }
.quote .stars svg { width: 16px; height: 16px; }
.quote p { font-size: 14.5px; line-height: 1.6; color: var(--ink-70); flex: 1; }
.quote .who { display: flex; align-items: center; gap: 11px; }
.quote .who .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-go);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.quote .who .nm { font-weight: 700; font-size: 14px; line-height: 1.25; }
.quote .who .rl { font-size: 12px; color: var(--ink-50); }

/* ============ Доп. возможности ============ */
.extra .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.extra .xc {
  background: var(--deep);
  color: #fff;
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.extra .xc::after {
  content: '';
  position: absolute;
  right: -20%;
  bottom: -40%;
  width: 70%;
  height: 100%;
  background: radial-gradient(closest-side, rgba(70,224,194,.14), transparent);
}
.extra .xc h3 { font-size: 19px; font-weight: 800; margin: 12px 0 10px; position: relative; z-index: 1; }
.extra .xc p { font-size: 14.5px; color: rgba(255,255,255,.75); position: relative; z-index: 1; }

/* ============ FAQ ============ */
.faq .list { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform 180ms ease;
}
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 20px; font-size: 15px; color: var(--ink-70); }

/* ============ CTA + форма ============ */
.cta-final {
  background: radial-gradient(110% 100% at 50% 0%, #0A5C44 0%, var(--deep) 60%);
  color: #fff;
}
.cta-final .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.cta-final h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 18px;
}
.cta-final .pts { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }
.cta-final .pts li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,.82);
}
.cta-final .pts li .ic { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }

.lead-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.lead-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.lead-card .sub { font-size: 14px; color: var(--ink-50); margin-bottom: 22px; }
.lead-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(17,17,17,.12);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  outline: none;
  transition: border-color 130ms ease, box-shadow 130ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,138,114,.14);
  background: #fff;
}
.field textarea { min-height: 84px; resize: vertical; }
.lead-card .btn { width: 100%; margin-top: 6px; }
.lead-card .agree {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-50);
  text-align: center;
}
.lead-card .agree a { color: var(--teal); }
.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(12,138,114,.1); color: var(--teal); }
.form-status.err { background: rgba(214,70,61,.1); color: #C23E36; }

/* ============ Footer ============ */
.site-foot {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 44px 0 36px;
}
.site-foot .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-foot .logo .word { font-size: 20px; }
.site-foot .desc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 8px;
}
.site-foot .links { display: flex; gap: 24px; font-size: 14px; }
.site-foot .links a:hover { color: #fff; }
.site-foot .fine {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ Адаптив ============ */
@media (max-width: 1020px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero .mock-wrap { max-width: 640px; }
  .feature .wrap { grid-template-columns: 1fr; gap: 32px; }
  .feature.flip .wrap > .txt { order: 1; }
  .feature.flip .wrap > .vis { order: 2; }
  .pain .cols { grid-template-columns: 1fr; }
  .who .cards { grid-template-columns: 1fr; }
  .quotes .grid { grid-template-columns: 1fr; }
  .extra .grid { grid-template-columns: 1fr; }
  .metrics .grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-final .wrap { grid-template-columns: 1fr; }
  .site-head nav { display: none; }
}
@media (max-width: 560px) {
  .lead-card .row2 { grid-template-columns: 1fr; }
  .btn.lg { width: 100%; padding: 16px 18px; font-size: 16px; white-space: nowrap; }
  .hero .cta-row .btn { width: 100%; }
  .field input, .field select, .field textarea { font-size: 16px; }
}
@media (max-width: 380px) {
  .btn.lg { font-size: 15px; padding: 15px 14px; }
  .btn { white-space: nowrap; }
}


/* ===== Интерактивный мокап + иконки источников ===== */
.mock .sl-item { cursor: pointer; transition: background 130ms ease; }
.mock .sl-item:hover { background: rgba(12,138,114,.05); }
.mock .sl-item:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; }
.mock .profile.flash { animation: mp-flash 420ms ease; }
@keyframes mp-flash {
  0% { opacity: .55; transform: translateY(3px); }
  100% { opacity: 1; transform: none; }
}
.src-ico { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; }


/* ===== Тарифы ===== */
.pricing { background: var(--paper); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: 0 18px 48px rgba(12,138,114,.16);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pc-tier {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.pc-price {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.pc-price .pc-per {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-50);
  margin-left: 6px;
  letter-spacing: 0;
}
.pc-note { font-size: 13px; color: var(--ink-50); margin: 8px 0 16px; min-height: 2.6em; }
.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
.pc-feats li {
  display: flex;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-70);
  align-items: flex-start;
}
.pc-feats li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
}
.pc-btn { width: 100%; }
.price-foot {
  margin-top: 22px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-35);
}
@media (max-width: 1020px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }


/* ===== Логотип в шапке: знак-картинка + дескриптор текстом ===== */
.site-head .logo-img {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.site-head .logo-img img {
  height: 38px; /* слово+линия из оригинала дизайнера */
  width: auto;
  display: block;
}
.site-head .logo-img .descriptor {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A1A;
  white-space: nowrap;
  margin: 0;
}
/* Мобильные: дескриптор скрываем, шапка компактная — всё влезает */
@media (max-width: 760px) {
  .site-head .logo-img .descriptor { display: none; }
  .site-head .logo-img img { height: 30px; }
  .site-head .inner { gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .site-head .actions { gap: 8px; }
  .site-head .login-link { font-size: 13.5px; }
  .site-head .btn.sm { padding: 9px 16px; font-size: 13px; }
}


/* ===== Лого в футере: картинка-выворотка от дизайнера ===== */
.site-foot .footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.site-foot .footer-logo img { height: 34px; width: auto; max-width: 100%; object-fit: contain; object-position: left; display: block; }
.site-foot .footer-logo .descriptor {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
