/* ========== БРЕНД ========== */
:root {
  --primary: #0A2540;
  --accent: #00D4FF;
  --accent-dark: #00b8e0;
  --bg: #F8F9FB;
  --graphite: #1A1F2E;
  --gray: #6B7280;
  --line: #E5E7EB;
  --white: #ffffff;
  --header-h: 72px;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, .10);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, .18);
}

/* ========== СБРОС ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--graphite);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; }

/* ========== УТИЛИТЫ ========== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--dark { background: var(--primary); color: var(--white); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--primary);
}
.section--dark .section__title { color: var(--white); }
.section__subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.45;
  margin: 0;
}
.section--dark .section__subtitle { color: rgba(255,255,255,.7); }

/* ========== КНОПКИ ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .3px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 212, 255, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 212, 255, .5);
  background: var(--accent-dark);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--accent); }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ========== ШАПКА ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, .6);
  z-index: 100;
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A2540, #00D4FF);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.logo__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .5px;
  color: var(--primary);
}
.nav { display: flex; gap: 28px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite);
  transition: color .15s;
}
.nav__link:hover { color: var(--accent-dark); }
.header__cta { display: flex; align-items: center; gap: 16px; }
.header__phone {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  padding: 0;
  position: relative;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); margin: 5px auto;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 44px) 0 72px;
  background:
    radial-gradient(1200px 600px at 80% 0%, rgba(0, 212, 255, .15), transparent 60%),
    linear-gradient(160deg, #0A2540 0%, #1A1F2E 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 212, 255, .12);
  border: 1px solid rgba(0, 212, 255, .35);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, #66e3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin: 0 0 22px;
  max-width: 580px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0A2540;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, .4) 100%);
}

/* ========== TARGETS — Кому подойдёт ========== */
.targets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.target {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.target:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.target__icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(10,37,64,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.target__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  margin: 0 0 6px;
}
.target__text {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.4;
}

/* ========== PRODUCTS — Продукция ========== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product__img {
  aspect-ratio: 16/10;
  background: var(--primary);
  overflow: hidden;
  position: relative;
}
.product__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product:hover .product__img img { transform: scale(1.05); }
.product__badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(0, 212, 255, .95);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  border-radius: 999px;
  letter-spacing: .5px;
}
.product__body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--primary);
  margin: 0 0 6px;
}
.product__step {
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.product__desc {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 14px;
  flex: 1;
  line-height: 1.45;
}
.product__features {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.product__features span {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  font-weight: 500;
}

/* ========== CASES — Кейсы ========== */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.case__img { aspect-ratio: 4/3; overflow: hidden; }
.case__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.case:hover .case__img img { transform: scale(1.05); }
.case__body { padding: 18px 20px 20px; }
.case__city {
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.case__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.25;
}
.case__meta {
  display: flex; gap: 16px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}
.case__meta span { display: inline-flex; align-items: center; gap: 4px; }
.case__result {
  font-size: 14px;
  color: var(--graphite);
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(0,212,255,.08), rgba(10,37,64,.04));
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  line-height: 1.4;
}

/* ========== ADVANTAGES — Почему мы ========== */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.advantage {
  text-align: center;
  padding: 20px 16px;
}
.advantage__icon {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(0, 212, 255, .12);
  border: 1px solid rgba(0, 212, 255, .25);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.advantage__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--white);
  margin: 0 0 6px;
}
.section--dark .advantage__title { color: var(--white); }
.advantage__text {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0;
  line-height: 1.45;
}

/* ========== PROCESS — Этапы ========== */
.process {
  position: relative;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.process__line {
  position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 212, 255, .2) 100%);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step__num {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,212,255,.2);
}
.step__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  margin: 0 0 6px;
}
.step__time {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}

/* ========== FORM — Заявка ========== */
.form-section {
  background: linear-gradient(135deg, #0A2540 0%, #1A1F2E 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,.2) 0%, transparent 70%);
  pointer-events: none;
}
.form-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.form-side h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 14px;
}
.form-side p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 1.5;
}
.form-side__phone {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px dashed rgba(0, 212, 255, .4);
  transition: color .15s;
}
.form-side__phone:hover { color: #66e3ff; }
.form-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-side li {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-side li::before {
  content: '✓';
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.form__row { margin-bottom: 14px; }
.form__row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 6px;
}
.form__row label .req { color: #e63946; }
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--graphite);
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: border-color .15s, background .15s;
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form__row textarea { resize: vertical; min-height: 80px; }
.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-radius: 10px;
  letter-spacing: .3px;
  transition: background .15s, transform .1s;
}
.form__submit:hover { background: var(--accent-dark); }
.form__submit:active { transform: scale(.98); }
.form__submit:disabled { opacity: .5; cursor: not-allowed; }
.form__policy {
  font-size: 12px;
  color: var(--gray);
  margin: 14px 0 0;
  line-height: 1.45;
}
.form__policy a { color: var(--accent-dark); text-decoration: underline; }
.form__msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form__msg--ok { display: block; background: #e7f9ee; color: #166534; }
.form__msg--err { display: block; background: #fdecec; color: #991b1b; }

/* ========== ФИНАЛЬНЫЙ CTA — «Готовы обсудить ваш проект?» ========== */
.cta-final { background: var(--bg); padding-top: 32px; padding-bottom: 64px; }
.cta-final__box {
  background: var(--primary);
  background-image: radial-gradient(circle at 85% -20%, rgba(0,212,255,.18) 0%, transparent 55%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cta-final__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 10px;
}
.cta-final__sub {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  margin: 0 auto 28px;
  max-width: 560px;
}
.cta-final__contacts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 12px 28px;
  margin: 0 auto;
}
.cta-final__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 4px;
  transition: color .15s ease;
}
.cta-final__item:hover { color: var(--accent); }
.cta-final__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
  font-size: 14px;
}
.cta-final__ico--tg { color: #26A5E4; }
.cta-final__ico--wa { color: #25D366; }
.cta-final__ico img { display: block; }
.cta-final__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .3px;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background .15s ease, transform .1s ease;
}
.cta-final__btn:hover { background: var(--accent-dark); }
.cta-final__btn:active { transform: scale(.98); }

/* ========== FOOTER ========== */
.footer {
  background: #06192c;
  color: rgba(255,255,255,.7);
  padding: 40px 0 20px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer__col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__col a { color: rgba(255,255,255,.65); transition: color .15s; }
.footer__col a:hover { color: var(--accent); }
.footer__col p { margin: 0 0 8px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__about { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.6); }
/* ========== МЕССЕНДЖЕРЫ В ФУТЕРЕ ========== */
.messengers {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.msg:hover { transform: translateY(-2px); color: #fff; }
.msg--tg:hover  { background: #26A5E4; }
.msg--wa:hover  { background: #25D366; }
.msg--max:hover { background: rgba(255, 255, 255, .18); }
.msg svg { display: block; }
.msg img { display: block; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ========== АДАПТИВ ========== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .targets__grid,
  .products__grid,
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .process__line { display: none; }
  .form-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-final__contacts { grid-template-columns: repeat(2, auto); gap: 10px 24px; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .header__phone { display: none; }
  .burger { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 24px 18px;
  }
  .nav.nav--open { display: flex; }
  .nav__link {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(229,231,235,.6);
  }
  .nav__link:last-child { border-bottom: 0; }
  .header__cta .btn { padding: 10px 18px; font-size: 14px; }
  .hero { padding: calc(var(--header-h) + 32px) 0 48px; }
  .hero__stats { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .targets__grid, .products__grid, .cases__grid,
  .advantages__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .form { padding: 22px; }
  .to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
  .cta-final__box { padding: 36px 22px; }
  .cta-final__contacts { grid-template-columns: 1fr; justify-items: start; gap: 8px; max-width: 280px; margin-left: auto; margin-right: auto; }
  .cta-final__btn { width: 100%; padding: 14px 22px; }
}

/* Honeypot — скрыто от людей, видно ботам */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Доступность */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
.skip-link {
  position: absolute;
  top: -40px; left: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ========== КНОПКА «НАВЕРХ» ========== */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 212, 255, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s, background .15s;
  z-index: 90;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
