:root {
  --bg: #0b0712;
  --bg-2: #100a1c;
  --surface: #170e29;
  --surface-2: #1e1336;
  --line: rgba(139, 92, 246, 0.18);
  --line-strong: rgba(139, 92, 246, 0.36);
  --brand: #5e17eb;
  --brand-2: #9a45ff;
  --brand-glow: rgba(94, 23, 235, 0.5);
  --signal: #ff7a4d;
  --signal-soft: rgba(255, 122, 77, 0.14);
  --text: #f4f0ff;
  --muted: #a99cc4;
  --muted-2: #7c6f98;
  --display: "Sora", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image: radial-gradient(
    rgba(154, 69, 255, 0.06) 1px,
    transparent 1.5px
  );
  background-size: 5px 5px;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ───── Типографика-хелперы ───── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brand-2);
}

.star {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.12em;
}

/* большое «призрачное» слово/число позади контента */
.ghost {
  position: absolute;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(154, 69, 255, 0.13);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}

/* ───── Кнопки (скошенные, граффити-bracket) ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px 32px;
  border: 2px solid transparent;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.btn .arrow {
  font-family: var(--display);
  font-weight: 800;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--signal);
  color: #140a06;
}

.btn-primary:hover {
  background: #ff8d63;
}

.btn-violet {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--brand-2);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(154, 69, 255, 0.12);
}

/* ───── Навигация ───── */
header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(11, 7, 18, 0.78);
  border-bottom: 2px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand .glyph {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--brand-2);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav .btn {
  padding: 12px 22px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav .nav-cta {
    display: none;
  }
}

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(44px, 7.4vw, 104px);
  margin: 24px 0 26px;
}

.hero h1 .hl {
  color: transparent;
  -webkit-text-stroke: 2px var(--signal);
}

.hero h1 .hl2 {
  background: linear-gradient(120deg, var(--brand-2), var(--signal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust b {
  color: var(--signal);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.glow.g1 {
  width: 540px;
  height: 540px;
  background: var(--brand);
  top: -200px;
  right: -120px;
  opacity: 0.32;
}

.glow.g2 {
  width: 400px;
  height: 400px;
  background: var(--signal);
  bottom: -180px;
  left: -140px;
  opacity: 0.12;
}

/* сигнатура: поток трафика + сетка-фрейм + стикеры площадок */
.hero-vis {
  position: relative;
  height: 430px;
}

.sketch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sketch path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.funnel {
  position: absolute;
  inset: 18px;
  z-index: 1;
}

.funnel svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow {
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
  animation: flow 2.2s linear infinite;
}

@keyframes flow {
  to {
    stroke-dashoffset: -36;
  }
}

.node-pulse {
  transform-origin: center;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    r: 5;
  }

  50% {
    opacity: 1;
    r: 7;
  }
}

/* стикеры площадок (белый квадрат с наклоном) */
.sticker {
  position: absolute;
  background: #fff;
  border-radius: 13px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0712;
  box-shadow: 0 16px 34px -10px rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.sticker.s1 {
  top: -14px;
  left: 24px;
  transform: rotate(-9deg);
}

.sticker.s2 {
  top: 46%;
  left: -16px;
  transform: translateY(-50%) rotate(-7deg);
}

.sticker.s3 {
  bottom: 18px;
  left: -10px;
  transform: rotate(6deg);
}

.sticker svg {
  width: 34px;
  height: 34px;
}

/* мини-метрика стикером (как в референсе слева сверху) */
.stat-chip {
  position: absolute;
  z-index: 4;
  background: var(--surface-2);
  border: 2px solid var(--line-strong);
  padding: 14px 16px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%
  );
}

.stat-chip .v {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 26px;
  color: var(--signal);
  line-height: 1;
}

.stat-chip .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 6px;
  max-width: 130px;
}

.stat-chip.sc1 {
  top: 6px;
  right: -6px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-vis {
    height: 340px;
    order: -1;
    margin-top: 10px;
  }
}

/* ───── Полоса метрик ───── */
.metrics {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--bg-2);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  padding: 40px 26px;
  border-right: 2px solid var(--line);
}

.metric:last-child {
  border-right: none;
}

.metric.pop {
  background: var(--signal);
  color: #140a06;
}

.metric .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric .num.brand {
  color: var(--brand-2);
}

.metric.pop .num {
  color: #140a06;
}

.metric .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 12px;
  line-height: 1.4;
}

.metric.pop .lbl {
  color: rgba(20, 10, 6, 0.7);
}

@media (max-width: 680px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    border-bottom: 2px solid var(--line);
  }

  .metric:nth-child(2) {
    border-right: none;
  }
}

/* ───── Секции ───── */
section {
  position: relative;
  padding: 110px 0;
}

.sec-head {
  max-width: 720px;
  margin-bottom: 54px;
  position: relative;
  z-index: 2;
}

.sec-head h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 72px);
  letter-spacing: -0.03em;
  margin: 18px 0 16px;
  line-height: 0.94;
}

.sec-head h2 .out {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--brand-2);
}

.sec-head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
}

/* ───── Источники трафика ───── */
.sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.source {
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s,
    background 0.25s;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%
  );
}

.source:hover {
  transform: translate(-3px, -3px);
  border-color: var(--brand-2);
  background: var(--surface-2);
}

.source .src-ico {
  width: 54px;
  height: 54px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0712;
  margin-bottom: 22px;
  transform: rotate(-6deg);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.source .src-ico svg {
  width: 30px;
  height: 30px;
}

.source h4 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.source .src-lead {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--signal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.source p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
  margin-bottom: 24px;
}

.source .src-link {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  transition: color 0.2s;
}

.source .src-link .arrow {
  font-family: var(--display);
  font-weight: 800;
  color: var(--brand-2);
  transition: transform 0.2s;
}

.source .src-link:hover {
  color: var(--brand-2);
}

.source .src-link:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 880px) {
  .sources {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ───── Обо мне ───── */
.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.photo-wrap {
  position: relative;
}

.about-photo {
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg);
  border: none;
  filter: grayscale(0.15) contrast(1.05);
}

.about-photo img {
  width: 100%;
  display: block;
}

.photo-frame {
  position: absolute;
  inset: -14px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-2deg);
}

.photo-frame path {
  fill: none;
  stroke: var(--signal);
  stroke-width: 5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.photo-tag {
  position: absolute;
  bottom: -16px;
  right: -10px;
  z-index: 3;
  background: var(--brand-2);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 15px;
  transform: rotate(-2deg);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.about-body h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 14px 0 22px;
}

.about-body p {
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 15.5px;
}

.about-body p strong,
.about-body p b {
  color: var(--text);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 2px solid var(--line-strong);
  color: var(--text);
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .photo-wrap {
    max-width: 360px;
  }
}

/* ───── Кейсы ───── */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.case {
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 26px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s,
    background 0.25s;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%
  );
}

.case:hover {
  transform: translate(-3px, -3px);
  border-color: var(--brand-2);
  background: var(--surface-2);
}

.case .niche {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

.case h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin: 14px 0 12px;
  line-height: 1.15;
}

.case .did {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
  flex: 1;
}

.case .results {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.res {
  flex: 1;
  min-width: 74px;
  background: var(--bg);
  border: 2px solid var(--line);
  padding: 12px 10px;
}

.res .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.res .v.up {
  color: #5be6a0;
}

.res .v.down {
  color: var(--signal);
}

.res .v.x {
  color: var(--brand-2);
}

.res .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 5px;
}

@media (max-width: 900px) {
  .cases {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .cases {
    grid-template-columns: 1fr;
  }
}

/* ───── Процесс (огромные номера) ───── */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
}

.step {
  position: relative;
  padding: 34px 34px 38px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow: hidden;
}

.step .idx {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand-2);
  flex: none;
}

.step h5 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  margin: 4px 0 10px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--muted);
  font-size: 14.5px;
}

@media (max-width: 680px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
  }
}

/* ───── Тарифы ───── */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.plan {
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.25s,
    border-color 0.25s;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%
  );
}

.plan:hover {
  transform: translate(-3px, -3px);
  border-color: var(--brand-2);
}

.plan.featured {
  border-color: var(--signal);
  background:
    radial-gradient(
      120% 70% at 50% 0,
      rgba(94, 23, 235, 0.34),
      transparent 60%
    ),
    var(--surface-2);
}

.plan .badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--signal);
  color: #140a06;
  padding: 6px 14px;
  margin-bottom: 16px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

.plan .pname {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: -0.01em;
}

.plan .pdesc {
  color: var(--muted);
  font-size: 13.5px;
  margin: 10px 0 20px;
  min-height: 54px;
}

.plan .price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.plan .price small {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: block;
  margin-top: 8px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 11px;
  font-size: 14px;
  color: var(--text);
  align-items: flex-start;
  line-height: 1.45;
}

.plan li svg {
  flex: none;
  margin-top: 3px;
}

.plan .btn {
  justify-content: center;
  width: 100%;
}

@media (max-width: 880px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ───── Отзывы ───── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.review {
  background: var(--surface);
  border: 2px solid var(--line);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    0 100%
  );
}

.review .quote {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  color: var(--brand-2);
  line-height: 0.4;
  height: 30px;
  opacity: 0.6;
}

.review .stars {
  color: var(--signal);
  font-size: 14px;
  letter-spacing: 3px;
}

.review p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.7;
  flex: 1;
}

.review .who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.review .ava {
  width: 48px;
  height: 48px;
  flex: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.review .who b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
}

.review .who span {
  font-size: 12px;
  color: var(--muted-2);
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ───── Лид-форма ───── */
.cta-sec {
  padding: 0 0 120px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  background: var(--surface);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 26px),
    calc(100% - 26px) 100%,
    0 100%
  );
}

.cta-left {
  background: linear-gradient(150deg, var(--brand), #7a2bd6);
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-left .ghost {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16);
}

.cta-left .eyebrow {
  color: #fff;
}

.cta-left .eyebrow::before {
  background: #fff;
}

.cta-card h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 3.8vw, 46px);
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin: 18px 0 18px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.cta-card .lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.5px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  z-index: 2;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}

.cta-list li svg {
  flex: none;
}

.cta-right {
  padding: 56px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--line-strong);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 15px;
  transition: border-color 0.2s;
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--signal);
}

.field input.err,
.field textarea.err {
  border-color: var(--signal);
}

.form-note {
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
}

form .btn-primary {
  justify-content: center;
  margin-top: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

.form-success .ok {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 15px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-left,
  .cta-right {
    padding: 36px 28px;
  }
}

/* ───── Подвал ───── */
footer {
  border-top: 2px solid var(--line);
  padding: 54px 0 44px;
  background: var(--bg-2);
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
}

.foot-contacts {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-contacts a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s;
}

.foot-contacts a:hover {
  color: var(--signal);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 44px;
  height: 44px;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: 0.2s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.socials a:hover {
  color: var(--text);
  border-color: var(--signal);
}

.copyright {
  margin-top: 38px;
  color: var(--muted-2);
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}