:root {
  --ink: #14233b;
  --muted: #607089;
  --line: #dfe6f0;
  --blue: #1268f3;
  --blue-dark: #0755d3;
  --blue-soft: #eef5ff;
  --cyan: #15b8ff;
  --orange: #ff8a2a;
  --white: #fff;
  --page: #f7f9fc;
  --radius: 22px;
  --shadow: 0 16px 48px rgba(26, 56, 96, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.scroll-off,
body.video-modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 76px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: .99;
  font-weight: 800;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.06;
  font-weight: 800;
}
h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.17;
  font-weight: 750;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}
.section-head--mini { max-width: 940px; margin-bottom: 18px; }
.section-head--mini > p:last-child { max-width: 900px; line-height: 1.6; }
.video-grid__hint { margin: 0 0 24px; color: var(--muted); font-size: 15px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(214, 224, 237, .85);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__brand img { width: 164px; height: auto; }
.site-header__brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}
.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-header__nav a {
  color: #273750;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.site-header__nav a:hover { color: var(--blue); }
.site-header__nav .site-header__cta {
  padding: 11px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
}
.site-header__auth { display: none; }
.site-header__burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}
.site-header__burger span,
.site-header__burger span::before,
.site-header__burger span::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}
.site-header__burger span::before { transform: translateY(-6px); }
.site-header__burger span::after { transform: translateY(4px); }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(18, 104, 243, .24);
}
.button--primary:hover { background: var(--blue-dark); }
.button--ghost {
  border-color: #cfd9e8;
  color: var(--ink);
  background: var(--white);
}
.play-icon { color: currentColor; font-size: 13px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(81, 174, 255, .18), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fff 88%);
}
.hero::before {
  position: absolute;
  top: 54px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(18, 104, 243, .13);
  border-radius: 50%;
  content: "";
}
.hero__grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 52px;
}
.hero__copy { position: relative; z-index: 2; padding-bottom: 58px; }
.hero__lead {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.46;
}
.hero__note {
  max-width: 710px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
}
.hero__glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 30px;
  width: 410px;
  height: 410px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 151, 255, .32), rgba(63, 151, 255, 0) 67%);
}
.hero__message {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 54px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(18, 104, 243, .2);
  border-radius: 15px 15px 3px 15px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(28, 61, 105, .12);
  font-size: 14px;
  font-weight: 650;
}
.value-strip {
  position: relative;
  z-index: 4;
  margin-bottom: -42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(30, 58, 94, .09);
}
.value-strip > div {
  min-height: 84px;
  padding: 19px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.value-strip > div + div { border-left: 1px solid var(--line); }
.value-strip strong { font-size: 17px; }
.value-strip span { color: var(--muted); font-size: 14px; }

.capabilities { padding-top: 122px; background: var(--white); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.neira-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.neira-card:hover,
.neira-card:focus-visible {
  transform: translateY(-3px);
  border-color: #a8c9f8;
  box-shadow: var(--shadow);
  outline: none;
}
.neira-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf1f8;
}
.media-poster,
.hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hover-video { z-index: 2; opacity: 0; transition: opacity .22s ease; }
.neira-card.is-video-active .hover-video { opacity: 1; }
.neira-card.is-video-active .media-poster { opacity: 0; }
.neira-card__play {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 20px rgba(16,48,86,.18);
  font-size: 13px;
}
.neira-card.is-video-active .neira-card__play { opacity: 0; }
.neira-card__expand {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 16px;
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 20px rgba(16,48,86,.18);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}
.neira-card__expand:hover { color: var(--blue); }
.neira-card__body {
  min-height: 142px;
  padding: 24px 26px 26px;
}
.neira-card__body p { margin: 0; color: var(--muted); }

.main-video { padding-top: 34px; }
.main-video__card {
  padding: 38px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(125deg, #0754cf 0%, #087bea 60%, #16afea 100%);
}
.main-video__copy h2 { font-size: clamp(32px, 3.3vw, 46px); }
.main-video__copy p:not(.eyebrow) { color: rgba(255,255,255,.82); font-size: 18px; }
.main-video__copy .eyebrow { color: #bce8ff; }
.main-video__copy .button--primary { color: var(--blue); background: var(--white); box-shadow: none; }
.main-video__preview {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 0;
  border: 0;
  border-radius: 19px;
  cursor: pointer;
  background: #0c1c35;
  box-shadow: 0 18px 42px rgba(1,35,91,.25);
}
.main-video__preview img { width: 100%; height: 315px; object-fit: cover; }
.main-video__shade { position: absolute; inset: 0; background: rgba(3,21,48,.25); }
.main-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  font-size: 22px;
  transition: transform .2s ease;
}
.main-video__preview:hover .main-video__play { transform: translate(-50%, -50%) scale(1.08); }

.maxi { background: var(--page); }
.section-head--maxi,
.section-head--tariffs {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 50px;
}
.section-head--maxi h2,
.section-head--tariffs h2 { margin-bottom: 0; }
.section-head--maxi > p,
.section-head--tariffs > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.maxi-slider { position: relative; }
.maxi-slider__top { height: 0; position: relative; z-index: 3; }
.maxi-slider__arrows {
  position: absolute;
  right: 18px;
  top: 18px;
  display: flex;
  gap: 8px;
}
.maxi-slider__arrows button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20,35,59,.12);
  border-radius: 11px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(20,42,75,.1);
}
.maxi-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(28,59,99,.08);
}
.maxi-slider__track::-webkit-scrollbar { display: none; }
.maxi-slide { scroll-snap-align: start; min-width: 0; }
.maxi-slide__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 23px 23px 0 0;
  background: #eef3f8;
  cursor: zoom-in;
}
.maxi-slide__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.maxi-slide__caption {
  min-height: 82px;
  padding: 19px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.maxi-slide__caption strong { min-width: 190px; font-size: 19px; }
.maxi-slide__caption span { color: var(--muted); }
.maxi-slider__dots { min-height: 22px; margin-top: 18px; display: flex; justify-content: center; gap: 7px; }
.neira-maxi-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #bac6d6;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.neira-maxi-slider__dot.is-active { width: 28px; background: var(--blue); }

.advantages { padding-bottom: 90px; }
.advantages__intro { max-width: 930px; margin-bottom: 34px; }
.advantages__intro > p:last-child { margin-bottom: 0; color: #465872; font-size: 19px; line-height: 1.62; }
.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.advantage-card {
  min-height: 276px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.advantage-card__number {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}
.advantage-card p { margin-bottom: 0; color: var(--muted); }
.advantage-card--accent { border-color: var(--blue); color: var(--white); background: var(--blue); }
.advantage-card--accent .advantage-card__number { color: var(--white); background: rgba(255,255,255,.16); }
.advantage-card--accent p { color: rgba(255,255,255,.82); }

.tariffs { border-top: 1px solid var(--line); background: var(--page); }
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(27,58,99,.07);
}
.compare { min-width: 1320px; }
.compare__row {
  display: grid;
  grid-template-columns: minmax(310px, 1.65fr) repeat(6, minmax(145px, .8fr));
  border-bottom: 1px solid var(--line);
}
.compare__row:last-child { border-bottom: 0; }
.compare__feature,
.compare__cell,
.compare__plan {
  min-height: 66px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}
.compare__row > :last-child { border-right: 0; }
.compare__feature { position: sticky; z-index: 2; left: 0; background: var(--white); font-size: 14px; }
.compare__cell { justify-content: center; text-align: center; color: #4d5f77; font-size: 13px; line-height: 1.35; }
.compare__row--head { position: sticky; z-index: 4; top: 0; }
.compare__row--head > * { min-height: 94px; background: #eff5fc; }
.compare__plan { flex-direction: column; justify-content: center; text-align: center; }
.compare__plan strong { font-size: 17px; line-height: 1.15; }
.compare__plan > span {
  margin-bottom: 5px;
  padding: 3px 7px;
  border-radius: 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.compare .is-featured { background: #f0f6ff; }
.compare__row--head .is-featured { color: var(--blue); background: #dceaff; }
.compare__row--ai .compare__feature { color: #064ebd; background: #eff6ff; font-weight: 700; }
.compare__row--ai .compare__cell { background: #f8fbff; }
.compare__row--ai .compare__cell.is-featured { background: #e8f2ff; }
.compare__ai-label {
  flex: 0 0 auto;
  margin-right: 9px;
  padding: 3px 7px;
  border-radius: 7px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}
.compare__yes {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}
.compare__no { color: #acb7c7; font-size: 20px; }
.compare__row--cta > * { min-height: 116px; }
.compare__row--cta .compare__feature { align-items: flex-start; flex-direction: column; justify-content: center; }
.compare__row--cta .compare__feature strong { color: var(--blue); font-size: 25px; }
.compare__row--cta .compare__feature span { color: var(--muted); font-size: 13px; }
.compare__button {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.compare__button:hover { color: var(--white); background: var(--blue); }

.access { color: var(--white); background: #102542; }
.access__card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 60px;
}
.access__copy h2 { font-size: clamp(34px, 4vw, 50px); }
.access__copy > p:last-child { margin-bottom: 0; color: #bdcadb; font-size: 18px; }
.access .eyebrow { color: #6fc7ff; }
.access__form {
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
}
.lead-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lead-form__input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #ccd7e6;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
.lead-form__input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,104,243,.12); }
.lead-form__input.is-error { border-color: #dc3445; }
.lead-form__btn {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  font-weight: 750;
}
.lead-form__checkbox {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #6e7c91;
  font-size: 11px;
  line-height: 1.35;
}
.lead-form__checkbox input { margin-top: 2px; }
.lead-form__checkbox a { color: var(--blue); }
.lead-form__checkbox.checkbox-error { color: #c92f40; }
.lead-form__error { grid-column: 1 / -1; color: #c92f40; font-size: 12px; }

.site-footer { padding: 30px 0; color: #7f8da1; background: #0b1b31; font-size: 13px; }
.site-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.site-footer__inner > div { display: flex; flex-direction: column; }
.site-footer strong { color: var(--white); }

.video-modal[hidden] { display: none; }
.video-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 28px; }
.video-modal__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(7,18,35,.82); cursor: pointer; opacity: 0; transition: opacity .2s ease; }
.video-modal__dialog { position: relative; z-index: 1; width: min(1120px, 92vw); transform: translateY(16px) scale(.98); opacity: 0; transition: transform .22s ease, opacity .22s ease; }
.video-modal.is-open .video-modal__backdrop,
.video-modal.is-open .video-modal__dialog { opacity: 1; }
.video-modal.is-open .video-modal__dialog { transform: translateY(0) scale(1); }
.video-modal__close {
  position: absolute;
  z-index: 2;
  right: -15px;
  top: -15px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.video-modal__frame { position: relative; overflow: hidden; width: 100%; padding-top: 56.25%; border-radius: 20px; background: #000; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__frame video { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; }

.image-zoom-modal,
.webinar-video-modal,
.modal-message {
  position: fixed;
  z-index: 1100;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(7,18,35,.84);
}
.image-zoom-modal__box { max-width: min(1400px, 95vw); max-height: 90vh; overflow: auto; border-radius: 16px; background: var(--white); }
.image-zoom-modal__box img { max-width: none; width: auto; max-height: 88vh; }
.image-zoom-modal__close,
.webinar-video-modal__close {
  position: fixed;
  z-index: 2;
  right: 22px;
  top: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 0;
}
.image-zoom-modal__close::after,
.webinar-video-modal__close::after { content: "×"; font-size: 28px; }
.webinar-video-modal__box { width: min(1120px, 92vw); aspect-ratio: 16/9; border-radius: 18px; background: #000; }
.modal-message__box { max-width: 520px; padding: 34px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }

.rec-cookie {
  position: fixed;
  z-index: 800;
  left: 20px;
  bottom: 20px;
  max-width: 520px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #47566c;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
}
.rec-cookie[hidden] { display: none; }
.rec-cookie__text { flex: 1; }
.rec-cookie__text a { color: var(--blue); }
.rec-cookie__button { padding: 9px 13px; border: 0; border-radius: 8px; color: var(--white); background: var(--blue); cursor: pointer; }

.exit-offer { position: fixed; z-index: 1200; inset: 0; visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease; }
.exit-offer.is-open { visibility: visible; opacity: 1; }
.exit-offer__backdrop { position: absolute; inset: 0; border: 0; background: rgba(7,18,35,.82); }
.exit-offer__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(900px, calc(100% - 40px));
  max-height: 92vh;
  overflow: auto;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
}
.exit-offer__close { position: absolute; z-index: 2; right: 14px; top: 12px; border: 0; background: none; cursor: pointer; font-size: 28px; }
.exit-offer__content { padding: 38px; }
.exit-offer__logo { display: none; }
.exit-offer__eyebrow { margin-bottom: 10px; color: var(--blue); font-weight: 800; text-transform: uppercase; }
.exit-offer__title { max-width: 720px; margin-bottom: 12px; font-size: 36px; line-height: 1.08; }
.exit-offer__subtitle,
.exit-offer__benefits { color: var(--muted); }
.exit-offer__form-wrap { margin-top: 22px; padding: 22px; border-radius: 16px; background: var(--blue-soft); }
.exit-offer__timer-label { color: var(--muted); font-size: 12px; }
.exit-offer__timer { margin: 8px 0 18px; color: var(--blue); font-size: 26px; font-weight: 800; }

@media (max-width: 1020px) {
  .site-header__nav { gap: 16px; }
  .site-header__nav a:not(.site-header__cta) { display: none; }
  .hero__grid { grid-template-columns: 1.1fr .9fr; gap: 16px; }
  .hero__message { right: -8px; }
  .video-grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr 1fr; }
  .advantage-card--accent { grid-column: 1 / -1; min-height: 220px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 620px); }
  .section { padding: 54px 0; }
  h1 { font-size: clamp(38px, 11vw, 52px); }
  h2 { font-size: 34px; }
  .site-header__inner { min-height: 64px; }
  .site-header__brand img { width: 142px; }
  .site-header__brand span { display: none; }
  .site-header__burger { display: block; }
  .site-header__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    padding: 18px 15px 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(30,57,90,.1);
  }
  .site-header.is-open .site-header__nav { display: flex; }
  .site-header__nav a,
  .site-header__nav a:not(.site-header__cta) { display: block; padding: 11px 14px; }
  .site-header__nav .site-header__cta { margin-top: 6px; text-align: center; }
  .hero { padding-top: 56px; }
  .hero__grid { min-height: 0; display: flex; flex-direction: column; }
  .hero__copy { padding-bottom: 10px; }
  .hero__lead { font-size: 18px; }
  .hero__visual { width: 100%; min-height: 400px; }
  .hero__visual img { max-height: 430px; }
  .hero__message { right: 5px; bottom: 30px; max-width: 205px; }
  .value-strip { margin-bottom: -30px; grid-template-columns: 1fr; }
  .value-strip > div { min-height: 70px; padding: 15px 20px; }
  .value-strip > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .capabilities { padding-top: 86px; }
  .neira-card__body { padding: 22px; }
  .main-video { padding-top: 12px; }
  .main-video__card { padding: 26px; grid-template-columns: 1fr; gap: 28px; }
  .main-video__preview,
  .main-video__preview img { min-height: 220px; height: 220px; }
  .section-head--maxi,
  .section-head--tariffs { display: block; }
  .section-head--maxi > p,
  .section-head--tariffs > p { margin-top: 18px; }
  .maxi-slide__media { aspect-ratio: 16 / 9; }
  .maxi-slide__caption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .maxi-slide__caption strong { min-width: 0; }
  .advantages__grid { grid-template-columns: 1fr; }
  .advantage-card,
  .advantage-card--accent { grid-column: auto; min-height: 0; }
  .advantage-card__number { margin-bottom: 26px; }
  .compare-wrap { margin-right: -15px; border-radius: 16px 0 0 16px; }
  .compare__row--head { top: 0; }
  .access__card { grid-template-columns: 1fr; gap: 30px; }
  .lead-form { grid-template-columns: 1fr; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; gap: 14px; }
  .rec-cookie { right: 15px; left: 15px; bottom: 15px; max-width: none; }
  .video-modal { padding: 15px; }
  .video-modal__dialog { width: 100%; }
  .video-modal__close { right: -2px; top: -48px; }
  .exit-offer__content { padding: 30px 22px; }
  .exit-offer__title { font-size: 30px; }
}

@media (max-width: 460px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__visual { min-height: 350px; }
  .hero__message { max-width: 175px; font-size: 12px; }
  .neira-card__expand { right: 12px; bottom: 12px; }
  .main-video__card { padding: 22px; }
  .maxi-slide__media { aspect-ratio: 16 / 9; }
  .access__form { padding: 20px; }
  .rec-cookie { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
