.seo-text a {
  color: #1E5FAF; /* или твой основной цвет */
  text-decoration: none;
  border-bottom: 1px dashed rgba(43, 124, 255, 0.4);
  transition: all 0.2s ease;
}

.seo-text a:hover {
  color: #1E5FAF;
  border-bottom: 1px solid rgba(26, 94, 217, 0.8);
}
.floating-contact__note-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  color: rgba(26, 42, 68, 0.7);
  font-size: 14px;
  cursor: pointer;
}

.floating-contact__note-close:hover {
  color: #1E5FAF;
}

header .btn {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.floating-contact__img {
  width: 35px;
  height: 35px;
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-contact__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-contact.is-open .floating-contact__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #1a2a44;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 95, 175, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 26px rgba(30, 95, 175, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.floating-contact__link:hover {
  transform: translateY(-2px);
  background: rgba(79, 195, 247, 0.14);
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 14px 28px rgba(30, 95, 175, 0.18);
}

.floating-contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 95, 175, 0.16);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.floating-contact__icon:hover {
  transform: translateY(-2px);
  background: rgba(79, 195, 247, 0.14);
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 10px 22px rgba(30, 95, 175, 0.16);
}

.floating-contact__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.floating-contact__text strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a2a44;
}

.floating-contact__text span {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(26, 42, 68, 0.68);
}

.floating-contact__toggle {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.95), rgba(79, 195, 247, 0.95));
  box-shadow: 0 14px 30px rgba(30, 95, 175, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.floating-contact__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.12), transparent 42%);
  pointer-events: none;
}

.floating-contact__toggle:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(30, 95, 175, 0.22);
  background: linear-gradient(135deg, rgba(30, 95, 175, 1), rgba(79, 195, 247, 0.96));
}

.floating-contact__toggle svg {
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
  z-index: 1;
}

.floating-contact__note {
  position: absolute;
  right: 76px;
  bottom: 10px;
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 95, 175, 0.16);
  color: rgba(26, 42, 68, 0.78);
  font-size: 12px;
  line-height: 1.45;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 26px rgba(30, 95, 175, 0.14);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform: translateY(6px);
  pointer-events: none;
  z-index: 2;
}

.floating-contact__note.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-contact.is-open .floating-contact__note {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact__toggle {
    width: 58px;
    height: 58px;
  }

  .floating-contact__note {
    right: 70px;
    max-width: 170px;
    font-size: 11px;
  }

  .floating-contact__link {
    min-height: 44px;
    padding: 0 12px;
  }
}

.seo-text .container {
  max-width: 1000px;
}

.seo-text__inner {
  padding: 28px 32px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.seo-text {
  padding: 40px 0 10px;
  background: linear-gradient(180deg, #f5f9ff 0%, #eaf2ff 100%);
}

.seo-text__title {
  margin-bottom: 16px;
  font-size: 26px;
  color: #1a2a44;
  text-align: center;
}

.seo-text p {
  max-width: 900px;
  margin: 0 auto 14px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 900px) {
  .seo-text {
    padding: 28px 0 6px;
  }

  .seo-text__title {
    font-size: 20px;
  }

  .seo-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.cta {
  padding: 60px 0;
  background: linear-gradient(180deg, #f5f9ff 0%, #eaf2ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  padding-top: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  color: #1a2a44;
  text-align: center;
}

.cta-btn {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 900px) {
  .cta {
    padding: 20px 0;
  }

  .cta-title {
    font-size: 24px;
    text-align: center;
  }
}


:root {
  --dark: #f5f9ff;
  --mid: #eaf2ff;
  --light: #ffffff;
  --accent1: #1E5FAF;
  --accent2: #4FC3F7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f5f9ff;
  color: #0b1220;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER — dark glass (v2 style) */
header {
  position: fixed;
  width: 100%;
  top: 0; left: 0;
  z-index: 20;
  padding: 22px 0;
  transition: padding .32s cubic-bezier(0.22,1,0.36,1), background .32s ease, backdrop-filter .32s ease, box-shadow .32s ease;
}
header.is-scrolled {
  padding: 10px 0;
  background: rgba(3,11,26,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 8px 24px rgba(0,0,0,.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  width: 72px; height: 72px;
  object-fit: contain;
  transition: width .32s cubic-bezier(0.22,1,0.36,1), height .32s cubic-bezier(0.22,1,0.36,1);
}
header.is-scrolled .logo img { width: 52px; height: 52px; }
.logo span {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: #fff;
  transition: opacity .28s ease;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 7px 12px;
  font-size: 14px; font-weight: 500;
  color: rgba(238,243,255,.75);
  border-radius: 10px;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.desktop-call { padding: 9px 18px; font-size: 14px; margin-left: 8px; }
.mobile-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #7dd4f5;
  background: rgba(56,189,248,.1);
  transition: background .2s;
  text-decoration: none;
}
.mobile-call svg { width: 18px; height: 18px; }
.mobile-call:hover { background: rgba(56,189,248,.18); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(130deg, #1E5FAF 0%, #2d7fd4 100%);
  color: #fff;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(30,95,175,.38);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .22s cubic-bezier(0.22,1,0.36,1), box-shadow .22s cubic-bezier(0.22,1,0.36,1), filter .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30,95,175,.5);
  filter: brightness(1.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 0 10px;
  cursor: pointer;
  transition: background .2s;
}
.hamburger span {
  display: block;
  height: 2px; width: 100%;
  background: rgba(238,243,255,.8);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(0.22,1,0.36,1), opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3,11,26,.62);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 19;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(0.22,1,0.36,1);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav__link {
  font-size: 22px; font-weight: 600;
  color: rgba(238,243,255,.75);
  padding: 10px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.mobile-nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.mobile-nav__call {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 22px;
  background: linear-gradient(130deg, #1E5FAF, #2d7fd4);
  color: #fff;
  font-size: 17px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(30,95,175,.4);
  text-decoration: none;
}

/* HERO — dark with video bg (v2 style) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #eef3ff;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
}
.hero-content { max-width: 600px; }
.hero h1 {
  font-size: 58px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.08;
  color: #fff; margin-bottom: 20px;
}
.hero-h1-accent {
  background: linear-gradient(100deg, #38bdf8 0%, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: rgba(238,243,255,.58);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 16px;
  border: 1.5px solid rgba(56,189,248,.35);
  background: rgba(56,189,248,.07);
  color: #7dd4f5;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .22s cubic-bezier(0.22,1,0.36,1);
}
.btn-secondary:hover {
  background: rgba(56,189,248,.14);
  border-color: rgba(56,189,248,.55);
  transform: translateY(-2px);
}
.hero-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-sticker {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.28);
  background: rgba(56,189,248,.07);
  color: #7dd4f5;
  font-size: 13px; font-weight: 500;
}
.hero-note {
  font-size: 13px;
  color: rgba(238,243,255,.45);
  margin: 0 0 16px;
  line-height: 1.55;
  max-width: 480px;
}
.hero-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(238,243,255,.75);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: background .2s, transform .22s cubic-bezier(0.22,1,0.36,1);
}
.hero-social a:hover { background: rgba(56,189,248,.15); transform: translateY(-2px); }
.hero-social svg { width: 20px; height: 20px; display: block; }

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,.25);
  background: rgba(56,189,248,.07);
  color: #7dd4f5;
  text-decoration: none;
  animation: bounce-v3 2.4s ease-in-out infinite;
  transition: background .2s;
}
.hero-scroll:hover { background: rgba(56,189,248,.15); }
@keyframes bounce-v3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* Hero video bg */
.hero-visual { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(3,11,26,.88) 0%, rgba(3,11,26,.72) 45%, rgba(3,11,26,.30) 100%);
}
.hero-video--desktop { display: block; }
.hero-video--mobile  { display: none; }

/* Stats strip */
.stats {
  background: #071222;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stats-item:last-child { border-right: none; }
.stats-num { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.stats-suffix { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; color: #38bdf8; }
.stats-item p { font-size: 12px; color: rgba(238,243,255,.58); margin-top: 4px; line-height: 1.4; }

/* Responsive header+hero */
@media (max-width: 768px) {
  .nav-link, .desktop-call { display: none; }
  header.is-scrolled .nav-link { display: none; }
  .mobile-call, .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}
@media (max-width: 900px) {
  .hero-video--desktop { display: none; }
  .hero-video--mobile  { display: block; }
}
@media (max-width: 700px) {
  .hero h1 { font-size: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stats-item:last-child, .stats-item:nth-child(2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 33px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}

.calc-summary-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(30, 95, 175, 0.10);
  border-radius: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
}

.calc-summary-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.calc-summary-success__text {
  color: #1a2a44;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  max-width: 320px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 95, 175, 0.16);
  box-shadow: 0 10px 24px rgba(30, 95, 175, 0.14);
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(30, 95, 175, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 1200;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.98) 100%);
  border: 1px solid rgba(30, 95, 175, 0.16);
  box-shadow: 0 18px 40px rgba(30, 95, 175, 0.14);
  overflow: hidden;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 35%);
  pointer-events: none;
  opacity: 0.8;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 95, 175, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1a2a44;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  z-index: 1;
}

.modal__close:hover {
  transform: rotate(90deg);
  background: rgba(79, 195, 247, 0.14);
  border-color: rgba(30, 95, 175, 0.24);
}

.modal__content {
  position: relative;
  z-index: 1;
}

.modal__title {
  margin: 0 0 10px;
  color: #1a2a44;
  font-size: 28px;
  line-height: 1.1;
}

.modal__text {
  margin: 0 0 22px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.callback-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.callback-form__label {
  color: rgba(26, 42, 68, 0.82);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.callback-form__input,
.callback-form__textarea {
  width: 100%;
  border: 1px solid rgba(30, 95, 175, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #1a2a44;
  padding: 14px 16px;
  font: inherit;
  line-height: 1.4;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

.callback-form__input::placeholder,
.callback-form__textarea::placeholder {
  color: rgba(26, 42, 68, 0.42);
}

.callback-form__input:focus,
.callback-form__textarea:focus {
  border-color: rgba(79, 195, 247, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.08);
}

.callback-form__textarea {
  min-height: 108px;
  resize: vertical;
}

.callback-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.callback-form__checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}

.callback-form__checkbox a {
  color: #1E5FAF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callback-form__submit {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  margin-top: 2px;
}

.callback-form__status {
  min-height: 20px;
  margin: 0;
  color: #1E5FAF;
  font-size: 13px;
  line-height: 1.45;
}

.callback-form__status.is-error {
  color: #c62828;
}

.callback-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(30, 95, 175, 0.10);
  border-radius: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 5;
}

.callback-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.callback-success__text {
  color: #1a2a44;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  max-width: 320px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 95, 175, 0.16);
  box-shadow: 0 10px 24px rgba(30, 95, 175, 0.14);
}

@media (max-width: 900px) {
  .modal {
    padding: 14px;
  }

  .modal__dialog {
    max-width: 100%;
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .modal__title {
    font-size: 24px;
  }

  .modal__text {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .callback-form {
    gap: 12px;
  }

  .callback-form__input,
  .callback-form__textarea {
    padding: 13px 14px;
    border-radius: 14px;
  }
}

.process {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(79, 195, 247, 0.12), transparent 60%);
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(30, 95, 175, 0.12);
  border-bottom: 1px solid rgba(30, 95, 175, 0.12);
}

.process-card {
  position: relative;
  padding: 28px 22px;
  min-height: 200px;
  border-right: 1px solid rgba(30, 95, 175, 0.12);
  background: transparent;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s ease;
}

.process-card:last-child {
  border-right: none;
}

.process-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.process-card:hover {
  background: rgba(30, 95, 175, 0.05);
}

.process-step {
  width: auto;
  height: auto;
  margin-bottom: 14px;
  font-size: 14px;
  color: #1E5FAF;
  background: none;
  border: none;
  box-shadow: none;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1a2a44;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 42, 68, 0.7);
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card {
    border-bottom: 1px solid rgba(30, 95, 175, 0.12);
  }
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    border-right: none;
    border-bottom: 1px solid rgba(30, 95, 175, 0.12);
  }
}

.before-after {
  padding: 25px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.cta {
  padding: 60px 0;
  background: linear-gradient(180deg, #f5f9ff 0%, #eaf2ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  color: #1a2a44;
}

.cta-btn {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 900px) {
  .cta {
    padding: 20px 0;
  }

  .cta-title {
    font-size: 24px;
  }
}


.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.ba-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  display: flex;
  flex-direction: column;
  align-self: start;
  height: auto;
}

.ba-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  --ba-pos: 50%;
  border-bottom: 1px solid rgba(30, 95, 175, 0.16);
}

.ba-img-after,
.ba-img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-overlay .ba-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 4;
  touch-action: none;
}

.ba-badge {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #1a2a44;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ba-badge-left {
  left: 14px;
}

.ba-badge-right {
  right: 14px;
}

.ba-line {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #0b1734;
  border-right: 2px solid #0b1734;
  transform: translateY(-50%) rotate(45deg);
}

.ba-handle::before {
  left: 8px;
  transform: translateY(-50%) rotate(225deg);
}

.ba-handle::after {
  right: 8px;
}

.ba-info {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-info h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #1a2a44;
}

.ba-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(26, 42, 68, 0.72);
}

.ba-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ba-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
  color: #1a2a44;
  font-size: 13px;
  line-height: 1;
}

.ba-result {
  padding-top: 2px;
  color: rgba(26, 42, 68, 0.82);
}

@media (max-width: 900px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }

  .ba-card {
    border-radius: 20px;
  }

  .ba-image {
    height: 220px;
  }

  .ba-info {
    padding: 16px 16px 18px;
    gap: 8px;
  }

  .ba-info h3 {
    font-size: 18px;
  }

  .ba-meta {
    gap: 8px;
  }

  .ba-meta span {
    font-size: 12px;
    padding: 7px 10px;
  }
}

.hero {
  padding-top: 140px;
  padding-bottom: 60px;
}

@media (min-height: 800px) {
  .hero {
    min-height: 80vh;
    align-items: center;
  }
}

.features {
  position: relative;
  padding: 30px 0;
  background:
    radial-gradient(circle at top right, rgba(79, 195, 247, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 46%, #e6f1ff 100%);
  overflow: hidden;
}

.features::before,
.features::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.32;
}

.features::before {
  width: 220px;
  height: 220px;
  top: 70px;
  left: -70px;
  background: rgba(195, 209, 235, 0.18);
}

.features::after {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: 50px;
  background: rgba(55, 65, 92, 0.35);
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-title {
  margin: 0 0 14px;
  font-size: 35px;
  line-height: 1.1;
  color: #1a2a44;
  text-align: center;
}

.features-subtitle {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(26, 42, 68, 0.72);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.08), rgba(79, 195, 247, 0.12));
  border: 1px solid rgba(30, 95, 175, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  overflow: hidden;
  transform: translateY(36px);
  opacity: 0;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease,
    opacity 0.45s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 38%);
  opacity: 0.75;
  pointer-events: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(30, 95, 175, 0.10);
  pointer-events: none;
}

.feature-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.12), rgba(79, 195, 247, 0.16));
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 18px 38px rgba(30, 95, 175, 0.16);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.14), rgba(79, 195, 247, 0.20));
  border: 1px solid rgba(30, 95, 175, 0.18);
  box-shadow: inset 0 1px 0 rgba(79, 195, 247, 0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(30, 95, 175, 0.18);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #1E5FAF;
  display: block;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
  color: #1a2a44;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 42, 68, 0.72);
  max-width: 320px;
}

@media (max-width: 1100px) {
  .features {
    padding: 90px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .features {
    padding: 56px 0;
  }

  .features-title {
    font-size: 25px;
  }

  .features-subtitle {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .feature-card::after {
    border-radius: 19px;
  }

  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .feature-icon svg {
    width: 26px;
    height: 26px;
  }
}

.price-calc {
  position: relative;
  padding: 35px 0 90px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.price-calc::before,
.price-calc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.28;
}

.price-calc::before {
  width: 240px;
  height: 240px;
  top: 80px;
  left: -80px;
  background: rgba(195, 209, 235, 0.16);
}

.price-calc::after {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 40px;
  background: rgba(55, 65, 92, 0.35);
}

.price-calc .container {
  position: relative;
  z-index: 1;
}

.price-calc__head {
  margin-bottom: 34px;
}

.price-calc__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.price-calc__steps,
.calc-summary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.price-calc__steps {
  border-radius: 28px;
  padding: 26px;
}

.calc-wizard {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-wizard__progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-direction: row-reverse;
}

.calc-wizard__step {
  color: rgba(26, 42, 68, 0.72);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.calc-wizard__back {
  border: 1px solid rgba(30, 95, 175, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #1a2a44;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.calc-wizard__back:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 95, 175, 0.24);
  background: rgba(79, 195, 247, 0.14);
  box-shadow: 0 10px 22px rgba(30, 95, 175, 0.14);
}

.calc-wizard__back.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.calc-step-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  overflow: hidden;
}

.calc-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 34%);
  pointer-events: none;
  opacity: 0.8;
}

.calc-step-card__top,
.calc-step-card__options {
  position: relative;
  z-index: 1;
}

.calc-step-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.calc-step-card__num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.14), rgba(79, 195, 247, 0.20));
  border: 1px solid rgba(30, 95, 175, 0.16);
  color: #1E5FAF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.calc-step-card__title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.15;
  color: #1a2a44;
}

.calc-step-card__text {
  margin: 0;
  color: rgba(26, 42, 68, 0.72);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.calc-step-card__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.calc-step-card__footer {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 95, 175, 0.16);
}

.calc-step-card__footer.is-visible {
  display: flex;
}

.calc-step-btn {
  border: 1px solid rgba(30, 95, 175, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #1a2a44;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.calc-step-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 95, 175, 0.24);
  background: rgba(79, 195, 247, 0.14);
}

.calc-step-btn--primary {
  background: linear-gradient(135deg, #1E5FAF, #4FC3F7);
  border-color: rgba(30, 95, 175, 0.24);
  color: #fff;
  box-shadow: 0 12px 24px rgba(30, 95, 175, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.calc-step-btn--primary:hover {
  background: linear-gradient(135deg, #1a52a0, #3ab8f0);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 95, 175, 0.22);
  filter: saturate(1.05);
}

.calc-saved {
  margin-top: 18px;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(30, 95, 175, 0.16);
}

.calc-saved__title {
  margin: 0 0 12px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-saved__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-saved__item {
  border: 1px solid rgba(30, 95, 175, 0.16);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  overflow: hidden;
}

.calc-saved__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: #1a2a44;
  text-align: left;
  cursor: pointer;
}

.calc-saved__toggle strong,
.calc-saved__toggle span {
  display: block;
}

.calc-saved__toggle strong {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.calc-saved__toggle span {
  color: rgba(26, 42, 68, 0.68);
  font-size: 13px;
  line-height: 1.3;
}

.calc-saved__price {
  flex-shrink: 0;
  color: #1E5FAF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.calc-saved__details {
  display: none;
  padding: 0 16px 14px;
  border-top: 1px solid rgba(30, 95, 175, 0.16);
}

.calc-saved__item.is-open .calc-saved__details {
  display: block;
}

.calc-saved__details-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
}

.calc-saved__details-row span {
  color: rgba(26, 42, 68, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.calc-saved__details-row strong {
  color: #1a2a44;
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.calc-saved__delete {
  margin-top: 14px;
  border: 1px solid rgba(201, 75, 75, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #c94b4b;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.calc-saved__delete:hover {
  border-color: rgba(201, 75, 75, 0.24);
  background: rgba(201, 75, 75, 0.08);
}

.calc-saved__empty {
  color: rgba(26, 42, 68, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.calc-saved__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
}

.calc-saved__total span {
  color: rgba(26, 42, 68, 0.68);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-saved__total strong {
  color: #1E5FAF;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.calc-option {
  border: 1px solid rgba(30, 95, 175, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #1a2a44;
  padding: 15px 16px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.calc-option:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 95, 175, 0.24);
  color: #1E5FAF;
  box-shadow: 0 8px 18px rgba(30, 95, 175, 0.10);
}

.calc-option.is-selected {
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.16), rgba(79, 195, 247, 0.20));
  border-color: rgba(30, 95, 175, 0.26);
  color: #1E5FAF;
  box-shadow: 0 10px 20px rgba(30, 95, 175, 0.14);
}

.calc-step-card.is-switching {
  opacity: 0.72;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.price-calc__summary {
  position: sticky;
  top: 96px;
}

.calc-summary {
  border-radius: 28px;
  padding: 26px;
}

.calc-summary__label {
  margin-bottom: 10px;
  color: rgba(26, 42, 68, 0.68);
  font-size: 14px;
  line-height: 1.4;
}

.calc-summary__price {
  margin-bottom: 22px;
  color: #1E5FAF;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.calc-summary__selected {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
}

.calc-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.calc-summary__row span {
  color: rgba(26, 42, 68, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

.calc-summary__row strong {
  color: #1a2a44;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
}

.calc-summary__note {
  margin: 0 0 20px;
  color: rgba(26, 42, 68, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.calc-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-order-inline {
  display: none;
  margin-top: 2px;
}

.calc-order-inline.is-visible {
  display: block;
}

.calc-order-inline__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(26, 42, 68, 0.82);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.calc-order-inline__row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.calc-order-inline__input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(30, 95, 175, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #1a2a44;
  padding: 14px 16px;
  font: inherit;
  line-height: 1.4;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.calc-order-inline__input::placeholder {
  color: rgba(26, 42, 68, 0.42);
}

.calc-order-inline__input:focus {
  border-color: rgba(79, 195, 247, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.08);
}

.calc-order-inline__next {
  flex: 0 0 auto;
  min-width: 132px;
  justify-content: center;
}

.calc-summary__message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #1E5FAF;
  font-size: 13px;
  line-height: 1.45;
}

.calc-summary__message.is-error {
  color: #c62828;
}

/* Glass-стиль для кнопки обратного звонка (нежный) */
.calc-summary__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
  color: #1a2a44;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 20px rgba(30, 95, 175, 0.14);
}

.calc-summary__actions .btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(79, 195, 247, 0.14);
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 10px 22px rgba(30, 95, 175, 0.14);
}

.calc-summary__actions .btn,
.calc-summary__actions .btn-secondary {
  flex: 1 1 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  height: auto;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .price-calc__layout {
    grid-template-columns: 1fr;
  }

  .price-calc__summary {
    position: static;
  }
}

@media (max-width: 900px) {
  .price-calc {
    padding: 28px 0 56px;
  }

  .price-calc__head {
    margin-bottom: 22px;
  }

  .price-calc__layout {
    gap: 16px;
  }

  .price-calc__steps,
  .calc-summary {
    border-radius: 22px;
  }

  .price-calc__steps {
    padding: 16px;
  }

  .calc-wizard {
    gap: 16px;
  }

  .calc-wizard__progress {
    align-items: center;
  }

  .calc-wizard__step {
    font-size: 13px;
  }

  .calc-wizard__back {
    padding: 9px 12px;
    font-size: 12px;
  }

  .calc-step-card {
    min-height: 280px;
    padding: 16px;
    border-radius: 18px;
  }

  .calc-step-card__top {
    gap: 12px;
    margin-bottom: 14px;
  }

  .calc-step-card__num {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 13px;
  }

  .calc-step-card__title {
    font-size: 22px;
  }

  .calc-step-card__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .calc-step-card__options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calc-option {
    width: 100%;
    padding: 11px 12px;
    border-radius: 16px;
    text-align: left;
    font-size: 14px;
  }

  .calc-step-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-step-btn {
    width: 100%;
    justify-content: center;
  }

  .calc-summary {
    padding: 18px;
  }

  .calc-summary__price {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .calc-summary__selected {
    padding: 14px;
    gap: 8px;
    border-radius: 16px;
  }

  .calc-summary__row span,
  .calc-summary__row strong,
  .calc-summary__note {
    font-size: 13px;
  }

  .calc-summary__actions {
    flex-direction: column;
  }

  .calc-order-inline__row {
    flex-direction: column;
  }

  .calc-order-inline__input,
  .calc-order-inline__next {
    width: 100%;
  }

  .calc-summary__actions .btn,
  .calc-summary__actions .btn-secondary {
    flex: 0 0 auto;
    width: 100%;
    min-height: 44px;
    height: auto;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(79, 195, 247, 0.5),
      transparent);
  z-index: 2;
  opacity: 0.6;
}

.calc-summary {
  position: relative;
}



.extras {
  position: relative;
  padding: 38px 0 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.extras::before,
.extras::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.22;
}

.extras::before {
  width: 240px;
  height: 240px;
  top: 30px;
  left: -80px;
  background: rgba(195, 209, 235, 0.16);
}

.extras::after {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: 0;
  background: rgba(55, 65, 92, 0.34);
}

.extras .container {
  position: relative;
  z-index: 1;
}

.extras-lead {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
  color: rgba(26, 42, 68, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.extra-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.08), rgba(79, 195, 247, 0.12));
  border: 1px solid rgba(30, 95, 175, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  overflow: hidden;
  transform: translateY(36px);
  opacity: 0;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease, opacity 0.45s ease;
}

.extra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 38%);
  opacity: 0.72;
  pointer-events: none;
}

.extra-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(30, 95, 175, 0.10);
  pointer-events: none;
}

.extra-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.extra-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.12), rgba(79, 195, 247, 0.16));
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 18px 38px rgba(30, 95, 175, 0.16);
}

.extra-card__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(30, 95, 175, 0.14);
  color: #1E5FAF;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.extra-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  color: #1a2a44;
}

.extra-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.extra-card__hint {
  position: relative;
  z-index: 1;
  color: #1E5FAF;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .extras {
    padding: 28px 0 10px;
  }

  .extras-lead {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .extras-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .extra-card {
    min-height: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .extra-card::after {
    border-radius: 19px;
  }

  .extra-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .extra-card p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 10px;
  }
}

.compare {
  position: relative;
  padding: 42px 0 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  overflow: hidden;
}

.compare::before,
.compare::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.22;
}

.compare::before {
  width: 240px;
  height: 240px;
  top: 40px;
  left: -90px;
  background: rgba(195, 209, 235, 0.14);
}

.compare::after {
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: 0;
  background: rgba(55, 65, 92, 0.3);
}

.compare .container {
  position: relative;
  z-index: 1;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.compare-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.08), rgba(79, 195, 247, 0.12));
  border: 1px solid rgba(30, 95, 175, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  overflow: hidden;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease, opacity 0.45s ease;
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 38%);
  opacity: 0.72;
  pointer-events: none;
}

.compare-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(30, 95, 175, 0.10);
  pointer-events: none;
}

.compare-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.compare-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.12), rgba(79, 195, 247, 0.16));
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 18px 38px rgba(30, 95, 175, 0.16);
}

.compare-card--self {
  border-color: rgba(201, 75, 75, 0.18);
}

.compare-card--pro {
  border-color: rgba(30, 95, 175, 0.18);
}

.compare-card__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.compare-card--self .compare-card__badge {
  color: #c94b4b;
  background: rgba(255, 120, 120, 0.14);
  border: 1px solid rgba(201, 75, 75, 0.16);
}

.compare-card--pro .compare-card__badge {
  color: #1E5FAF;
  background: rgba(79, 195, 247, 0.14);
  border: 1px solid rgba(30, 95, 175, 0.16);
}

.compare-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  color: #1a2a44;
}

.compare-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.compare-card--self .compare-list li::before {
  background: #ff8b8b;
  box-shadow: 0 0 0 6px rgba(255, 139, 139, 0.12);
}

.compare-card--pro .compare-list li::before {
  background: #4fc3f7;
  box-shadow: 0 0 0 6px rgba(79, 195, 247, 0.12);
}

.compare-note {
  max-width: 760px;
  margin: 26px auto 0;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;

  color: #8a5a00;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.32);

  position: relative;
}

.compare-note::before {
  content: "⚠";
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .compare {
    padding: 28px 0 10px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .compare-card {
    padding: 18px;
    border-radius: 20px;
  }

  .compare-card::after {
    border-radius: 19px;
  }

  .compare-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .compare-list li,
  .compare-note {
    font-size: 14px;
    line-height: 1.55;
  }
}


.site-footer {
  position: relative;
  margin-top: 0;
  background:
    radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 26%),
    radial-gradient(circle at top right, rgba(30, 95, 175, 0.08), transparent 24%),
    linear-gradient(180deg, #eef5ff 0%, #e3efff 100%);
  border-top: 1px solid rgba(30, 95, 175, 0.16);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 82%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.45), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) minmax(220px, 0.9fr);
  gap: 22px;
  padding: 38px 0 28px;
}

.site-footer__card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.08), rgba(79, 195, 247, 0.12));
  border: 1px solid rgba(30, 95, 175, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(30, 95, 175, 0.12);
  overflow: hidden;
}

.site-footer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 195, 247, 0.10), transparent 38%);
  pointer-events: none;
  opacity: 0.68;
}

.site-footer__card>* {
  position: relative;
  z-index: 1;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.site-footer__brand img {
  width: 62px;
  flex-shrink: 0;
}

.site-footer__brand strong {
  display: block;
  color: #1a2a44;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.site-footer__brand span {
  display: block;
  color: rgba(26, 42, 68, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__text {
  margin: 0 0 18px;
  color: rgba(26, 42, 68, 0.72);
  font-size: 14px;
  line-height: 1.65;
  max-width: 420px;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.28), rgba(79, 195, 247, 0.16));
  border: 1px solid rgba(79, 195, 247, 0.26);
  color: #1a2a44;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(30, 95, 175, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-footer__phone:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 95, 175, 0.28);
  background: linear-gradient(135deg, rgba(30, 95, 175, 0.32), rgba(79, 195, 247, 0.18));
  box-shadow: 0 14px 28px rgba(30, 95, 175, 0.18);
}

.site-footer__heading {
  margin: 0 0 14px;
  color: rgba(26, 42, 68, 0.62);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer__nav {
  display: grid;
  gap: 10px;
}

.site-footer__nav a {
  color: rgba(26, 42, 68, 0.84);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__nav a:hover {
  color: #1E5FAF;
  transform: translateX(4px);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.site-footer__socials a {
  min-width: 50px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 95, 175, 0.16);
  color: #1E5FAF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 18px rgba(30, 95, 175, 0.12);
}

.site-footer__socials a:hover {
  transform: translateY(-2px);
  background: rgba(79, 195, 247, 0.14);
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 10px 22px rgba(30, 95, 175, 0.16);
}

.phone-icon {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.phone-icon:hover {
  transform: translateY(-2px);
  background: rgba(79, 195, 247, 0.14);
  border-color: rgba(30, 95, 175, 0.24);
  box-shadow: 0 10px 22px rgba(30, 95, 175, 0.16);
}

.site-footer__hint {
  margin: 0;
  color: rgba(26, 42, 68, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer__bottom {
  border-top: 1px solid rgba(30, 95, 175, 0.16);
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 18px;
  color: rgba(26, 42, 68, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__card--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0 18px;
  }

  .site-footer__card {
    padding: 18px;
    border-radius: 20px;
  }

  .site-footer__brand img {
    width: 54px;
  }

  .site-footer__phone {
    width: 100%;
    font-size: 17px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 16px;
  }
}

/* ── Promo popup ── */
.promo-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 18, 38, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  z-index: 1300;
}

.promo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 36px 32px 32px;
  border-radius: 28px;
  background: linear-gradient(155deg, #0e1e3a 0%, #162d55 60%, #0a1628 100%);
  border: 1px solid rgba(79, 195, 247, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(79, 195, 247, 0.08) inset;
  overflow: hidden;
  transform: translateY(22px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-modal__dialog::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.promo-modal__dialog::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 95, 175, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.promo-modal.is-open .promo-modal__dialog {
  transform: translateY(0) scale(1);
}

.promo-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(79, 195, 247, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.promo-modal__close:hover {
  background: rgba(79, 195, 247, 0.15);
  color: #fff;
  transform: rotate(90deg);
}

.promo-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 195, 247, 0.20), rgba(30, 95, 175, 0.20));
  border: 1px solid rgba(79, 195, 247, 0.30);
  color: #7dd4f5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.promo-modal__discount {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin: 4px 0 14px;
  background: linear-gradient(120deg, #4fc3f7 0%, #fff 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(79, 195, 247, 0.45));
  letter-spacing: -0.02em;
}

.promo-modal__title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px;
}

.promo-modal__text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: rgba(200, 220, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 14px;
}

.promo-modal__guarantee {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(200, 225, 255, 0.80);
  line-height: 1.5;
  margin: 0 0 8px;
  padding: 8px 12px;
  background: rgba(79, 195, 247, 0.08);
  border-left: 2px solid rgba(79, 195, 247, 0.45);
  border-radius: 0 6px 6px 0;
}

.promo-modal__fine {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: rgba(180, 205, 240, 0.45);
  line-height: 1.5;
  margin: 0 0 24px;
}

.promo-modal__countdown {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(79, 195, 247, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.promo-modal__countdown-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 220, 255, 0.5);
  margin: 0 0 12px;
}

.promo-modal__timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.14);
  border-radius: 10px;
  padding: 10px 6px 8px;
}

.promo-timer__num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.promo-timer__label {
  font-size: 10px;
  color: rgba(200, 220, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.promo-timer__sep {
  font-size: 22px;
  font-weight: 700;
  color: rgba(79, 195, 247, 0.4);
  line-height: 1;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.promo-modal__cta {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #1E5FAF 0%, #2e82d4 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 24px rgba(30, 95, 175, 0.45);
}

.promo-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 95, 175, 0.55);
  filter: brightness(1.08);
}

@media (max-width: 480px) {
  .promo-modal__dialog {
    padding: 28px 20px 24px;
    border-radius: 20px;
  }

  .promo-modal__title {
    font-size: 18px;
  }

  .promo-timer__num {
    font-size: 22px;
  }
}

/* ── Promo banner ── */
.promo-banner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 8px 20px;
  background: linear-gradient(90deg, #122a56 0%, #1E5FAF 50%, #122a56 100%);
  border: none;
  border-bottom: 1px solid rgba(79, 195, 247, 0.18);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: rgba(210, 228, 255, 0.88);
  text-align: center;
  line-height: 1.4;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, filter 0.2s ease;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 195, 247, 0.10) 50%, transparent 100%);
  animation: promo-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.promo-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.promo-banner:hover {
  filter: brightness(1.1);
}

@keyframes promo-shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.promo-banner__gift {
  display: inline-flex;
  align-items: center;
  color: #7dd4f5;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.promo-banner__text {
  position: relative;
  z-index: 1;
}

.promo-banner__text strong {
  color: #fff;
}

.promo-banner__fine {
  opacity: 0.5;
  font-size: 11px;
}

.promo-banner__timer {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px 10px;
  border: 1px solid rgba(79, 195, 247, 0.30);
  border-radius: 999px;
  background: rgba(79, 195, 247, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: #7dd4f5;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

.promo-banner__arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(210, 228, 255, 0.6);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .promo-banner {
    font-size: 12px;
    gap: 8px;
    padding: 7px 12px;
  }

  .promo-banner__text span:not(strong) {
    display: none;
  }

  .promo-banner__arrow {
    display: none;
  }
}

/* ── DEVIL CAR partnership ── */
.partner {
  padding: 64px 0;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(212,163,0,.10) 0%, transparent 70%);
  pointer-events: none;
}
.partner__inner {
  display: flex;
  align-items: center;
  gap: 52px;
}
.partner__left { flex: 1 1 auto; min-width: 0; }
.partner__right { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.partner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(212,163,0,.12);
  border: 1px solid rgba(212,163,0,.30);
  color: #d4a300;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.partner__logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 12px rgba(212,163,0,.25));
}
.partner__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.partner__desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 22px;
}
.partner__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.partner__service {
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(212,163,0,.08);
  border: 1px solid rgba(212,163,0,.22);
  color: rgba(212,163,0,.85);
  font-size: 13px;
  font-weight: 500;
}
.partner__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.partner__contacts a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.partner__contacts a:hover { color: #d4a300; }
.partner__contacts span { display: flex; align-items: center; gap: 6px; }
.partner__coupon-card {
  background: linear-gradient(145deg, #1a1500, #0d0d00);
  border: 1px solid rgba(212,163,0,.30);
  border-radius: 18px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(212,163,0,.08) inset, 0 20px 48px rgba(0,0,0,.5);
  min-width: 200px;
}
.partner__coupon-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(212,163,0,.6);
  margin-bottom: 6px;
}
.partner__coupon-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f5c400 0%, #d4a300 50%, #fff0a0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(212,163,0,.4));
}
.partner__coupon-sub {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
@media (max-width: 860px) {
  .partner__inner { flex-direction: column; gap: 32px; }
  .partner__right { width: 100%; }
  .partner__coupon-card { width: 100%; }
}
@media (max-width: 480px) {
  .partner { padding: 44px 0; }
  .partner__title { font-size: 18px; }
}
