﻿:root {
  --bg: #0a101c;
  --bg-elevated: #0f1627;
  --bg-muted: #121a2e;
  --bg-overlay: rgba(255, 255, 255, 0.05);
  --bg-overlay-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f7ff;
  --text-secondary: #bfc7d5;
  --text-muted: #9ca3af;
  --brand-blue: #0070f3;
  --brand-violet: #2015ff;
  --accent-coral: #fa876b;
  --accent-check: #4ade80;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 8px 24px rgba(3, 8, 18, 0.35);
  --shadow-hover: 0 14px 34px rgba(2, 8, 22, 0.52);
  --radius-card: 16px;
  --radius-button: 11px;
  --space-section-desktop: 96px;
  --space-section-tablet: 72px;
  --space-section-mobile: 56px;
  --transition-fast: 200ms ease;
  --section-bg: var(--bg);
  --section-density: 1;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

html { overflow-x: clip; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 18% -8%, rgba(0, 112, 243, 0.26) 0%, rgba(0, 112, 243, 0) 45%),
    radial-gradient(circle at 82% -18%, rgba(32, 21, 255, 0.18) 0%, rgba(32, 21, 255, 0) 42%);
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.25;
  z-index: -1;
}

a { color: #9fd2ff; text-decoration: none; display: block; margin: 4px 0; transition: color var(--transition-fast); }
a:hover { color: #d6ecff; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 16, 28, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.is-scrolled {
  background: rgba(10, 16, 28, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
}

.site-header,
.site-header .nav-wrap {
  overflow: visible;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  margin: 0;
  padding: 8px 10px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 400;
}
.site-nav a:hover {
  color: #b9deff;
  background: rgba(0, 112, 243, 0.16);
}
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: #d7ebff;
  background: rgba(0, 112, 243, 0.18);
  border: 1px solid rgba(0, 112, 243, 0.48);
}

/* Nav dropdown */
.nav-item--dropdown {
  position: relative;
}

/* Невидимый «мост» между кнопкой и панелью — меню не закрывается при переходе курсора */
.nav-item--dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
  z-index: 299;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.nav-dropdown__trigger:hover,
.nav-item--dropdown:focus-within > .nav-dropdown__trigger {
  color: #b9deff;
  background: rgba(0, 112, 243, 0.16);
}

.nav-item--dropdown.is-active > .nav-dropdown__trigger,
.nav-dropdown__trigger[aria-expanded="true"] {
  color: #d7ebff;
  background: rgba(0, 112, 243, 0.18);
  border-color: rgba(0, 112, 243, 0.48);
}

.nav-dropdown__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition-fast);
}

.nav-item--dropdown:hover .nav-dropdown__chevron,
.nav-item--dropdown:focus-within .nav-dropdown__chevron,
.nav-item--dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(225deg) translateY(1px);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 300;
  min-width: 260px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, #161f33 0%, #0d1422 100%);
  box-shadow:
    0 4px 0 rgba(0, 112, 243, 0.12),
    0 22px 56px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: #161f33;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.nav-item--dropdown:hover .nav-dropdown__menu,
.nav-item--dropdown:focus-within .nav-dropdown__menu,
.nav-item--dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu li {
  margin: 0;
}

.nav-dropdown__menu a {
  display: block;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(244, 247, 255, 0.92);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.nav-dropdown__menu a:hover {
  color: #fff;
  background: rgba(0, 112, 243, 0.2);
  border-color: rgba(0, 112, 243, 0.35);
}

.nav-dropdown__menu a.active {
  color: #fff;
  background: rgba(0, 112, 243, 0.24);
  border-color: rgba(0, 112, 243, 0.5);
}

#nav-solutions-menu {
  min-width: 288px;
}

/* Сотрудничество — чуть шире */
.nav-dropdown__menu--dark {
  min-width: 300px;
  padding: 10px 8px 8px;
}

.nav-dropdown__menu--dark::before {
  background: #161f33;
}

.menu-btn {
  display: none;
  min-height: 40px;
  min-width: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-overlay);
  color: #e4efff;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.menu-btn:hover { background: var(--bg-overlay-strong); border-color: rgba(0, 112, 243, 0.5); }

.menu-btn.is-active {
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

@media (min-width: 761px) {
  .site-nav__panel,
  .site-nav__actions {
    display: contents;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 88px) 0 clamp(36px, 5vw, 52px);
  text-align: center;
}

.hero-immersive {
  border-bottom: none;
  background: #0a101c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.hero-bg__orb--left {
  top: -12%;
  left: -8%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  background: radial-gradient(circle, rgba(0, 112, 243, 0.45) 0%, rgba(0, 112, 243, 0) 68%);
}

.hero-bg__orb--right {
  top: -18%;
  right: -10%;
  width: min(480px, 50vw);
  height: min(480px, 50vw);
  background: radial-gradient(circle, rgba(32, 21, 255, 0.38) 0%, rgba(32, 21, 255, 0) 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 48px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 112, 243, 0.45);
  background: rgba(0, 112, 243, 0.1);
  color: #d8ebff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ea0ff;
  box-shadow: 0 0 10px rgba(62, 160, 255, 0.8);
}

.hero h1 {
  margin: 20px 0 16px;
  max-width: 900px;
  font-size: clamp(32px, 5.6vw, 64px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-title-accent {
  background: linear-gradient(90deg, #ffffff 0%, #9fd2ff 55%, #7eb8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0;
  max-width: 640px;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 112, 243, 0.28);
  background: rgba(0, 112, 243, 0.08);
}

.hero-price__label {
  font-size: 14px;
  color: #9eb4d4;
}

.hero-price__value {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #c5e4ff;
}

.hero-actions {
  margin-top: 28px;
}

.btn-hero {
  min-height: 48px;
  padding: 0 26px;
  box-shadow: 0 10px 28px rgba(0, 112, 243, 0.35);
}

.btn-hero:hover {
  box-shadow: 0 12px 30px rgba(0, 112, 243, 0.22);
}

.btn-hero-secondary {
  backdrop-filter: blur(8px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: #b8c8e0;
}

.hero-trust li::before {
  content: "✓";
  font-size: 11px;
  font-weight: 700;
  color: #5eb8ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  padding: clamp(14px, 2vw, 18px);
  border-radius: 20px;
  border: 1px solid rgba(0, 112, 243, 0.22);
  background:
    linear-gradient(180deg, rgba(12, 20, 40, 0.75) 0%, rgba(8, 14, 28, 0.6) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(2, 8, 22, 0.4);
}

.hero-stat {
  padding: clamp(16px, 2vw, 20px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(28, 36, 58, 0.85) 0%, rgba(16, 22, 38, 0.9) 100%);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hero-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 112, 243, 0.35);
}

.hero-stat__value {
  margin: 0 0 6px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #8fc7ff;
}

.hero-stat__label {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #9eb0cc;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 112, 243, 0.38);
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.26) 0%, rgba(32, 21, 255, 0.18) 100%);
  color: #d6ebff;
  font-size: 13px;
}

.actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 20px;
  border-radius: var(--radius-button);
  border: 2px solid var(--brand-blue);
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn:hover {
  background: #ffffff;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { min-height: 50px; padding: 0 24px; font-size: 16px; }

.btn-light {
  background: transparent;
  border-color: rgba(0, 112, 243, 0.56);
  color: #a7d3ff;
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-blue);
}

.hero .actions a {
  margin: 0;
}

.hero-video {
  width: min(100%, 760px);
  margin: 22px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: rgba(3, 9, 20, 0.85);
}

.hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.hero__grid--media {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  justify-items: stretch;
  gap: clamp(22px, 3.5vw, 44px);
}

.hero__grid--media .hero-copy {
  align-items: flex-start;
  text-align: left;
}

.hero__grid--media h1,
.hero__grid--media .hero-lead {
  text-align: left;
}

.hero__grid--media .hero-actions {
  justify-content: flex-start;
}

.hero__grid--media .hero-trust {
  justify-content: flex-start;
}

.hero__grid--media .hero-video {
  margin-top: 0;
  align-self: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.card,
.section,
.article {
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.card {
  padding: 20px;
  background: var(--bg-overlay);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.08);
}
.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.card p { margin: 0; color: var(--text-secondary); }

.section {
  margin: var(--space-section-desktop) auto 0;
  padding: clamp(30px, 4vw, 42px) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  background: linear-gradient(180deg, rgba(12, 22, 43, 0.84), rgba(9, 18, 34, 0.8));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  z-index: 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 auto 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7e9ff;
  border: 1px solid rgba(127, 178, 255, 0.4);
  background: rgba(0, 112, 243, 0.16);
}

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

.section h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(24px, 3.6vw, 40px);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 0 28px;
  text-align: center;
  color: var(--text-secondary);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cols-2 .card h3:not(:first-child) { margin-top: 18px; }
.cols-2 .card p + h3 { margin-top: 18px; }

.page-section {
  margin-top: 0;
  padding: clamp(40px, 5vw, 64px) 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 112, 243, 0.12), transparent 42%),
    linear-gradient(180deg, #0a1224 0%, #0b101c 55%, #0a101c 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-section + .page-section {
  padding-top: clamp(48px, 6vw, 72px);
  border-top: none;
}

.page-section:last-of-type {
  padding-bottom: clamp(28px, 4vw, 40px);
}

.hero + .page-section {
  border-top: none;
}

.hero + .page-section.page-section--advantages {
  padding-top: clamp(40px, 5vw, 56px);
}

.section-head,
.page-section__head {
  max-width: 880px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.section-head__badge,
.page-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 112, 243, 0.55);
  background: rgba(0, 112, 243, 0.08);
  color: #e8f2ff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head__badge::before,
.page-section__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ea0ff;
  box-shadow: 0 0 8px rgba(62, 160, 255, 0.7);
}

.page-section h2,
.section-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.section-head h2:first-child {
  margin-top: 0;
}

.section-head__sub,
.page-section__sub {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
}

.section-cta,
.page-section__cta {
  margin-top: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(8px, 2vw, 16px);
}

.section-cta.actions,
.page-section__cta.actions {
  margin-bottom: clamp(8px, 2vw, 16px);
}

.section-cta.actions a,
.page-section__cta.actions a {
  margin: 0;
}

.section-cta .btn,
.page-section__cta .btn,
.section-cta.actions a {
  box-shadow: 0 8px 22px rgba(0, 112, 243, 0.28);
}

.section-cta .btn:hover,
.page-section__cta .btn:hover {
  box-shadow: 0 10px 24px rgba(0, 112, 243, 0.18);
}

.section-panel {
  padding: clamp(14px, 2vw, 20px);
  border-radius: 20px;
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: linear-gradient(180deg, rgba(12, 20, 40, 0.72) 0%, rgba(8, 14, 28, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(2, 8, 22, 0.45);
}

.cards-grid {
  display: grid;
  gap: 12px;
}

.cards-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.page-section__card {
  margin: 0;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 27, 43, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.page-section__card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 112, 243, 0.35);
  background: rgba(26, 32, 50, 0.95);
  box-shadow: var(--shadow-hover);
}

.page-section__card h2,
.page-section__card h3 {
  margin: 0 0 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.25;
}

.page-section__card h3 {
  font-size: clamp(18px, 2vw, 22px);
}

.page-section__card p {
  margin: 0;
  color: #b8c4d9;
  line-height: 1.55;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.page-section__card--kpi {
  text-align: center;
}

.page-section__card--kpi h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: #8fc7ff;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

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

.feature-card {
  position: relative;
  margin: 0;
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(30, 38, 60, 0.92) 0%, rgba(16, 22, 38, 0.95) 100%);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 112, 243, 0.14), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 112, 243, 0.4);
  box-shadow: 0 12px 28px rgba(0, 112, 243, 0.15);
}

.feature-card:hover::after { opacity: 1; }

.feature-card--accent {
  border-color: rgba(0, 112, 243, 0.35);
  background: linear-gradient(160deg, rgba(0, 112, 243, 0.22) 0%, rgba(16, 22, 38, 0.95) 100%);
}

.feature-card__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 112, 243, 0.35);
  background: rgba(0, 112, 243, 0.12) center / 22px 22px no-repeat;
}

.feature-card__index {
  flex-shrink: 0;
  width: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5eb8ff;
}

.feature-card--row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-card--row h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2vw, 22px);
}

.feature-card--row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #a8b6d0;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.25;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #a8b6d0;
}

.feature-card__icon--stock { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-14L4 7m8 4v10M4 7v10l8 4'/%3E%3C/svg%3E"); }
.feature-card__icon--crm { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E"); }
.feature-card__icon--analytics { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6m6 0V9a2 2 0 012-2h2a2 2 0 012 2v10m6 0V5a2 2 0 00-2-2h-2a2 2 0 00-2 2v14'/%3E%3C/svg%3E"); }
.feature-card__icon--team { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E"); }
.feature-card__icon--devices { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z'/%3E%3C/svg%3E"); }
.feature-card__icon--cloud { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z'/%3E%3C/svg%3E"); }
.feature-card__icon--support { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E"); }
.feature-card__icon--integrations { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1'/%3E%3C/svg%3E"); }
.feature-card__icon--finance { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8V6m0 12v-2m9-4a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E"); }
.feature-card__icon--menu { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2'/%3E%3C/svg%3E"); }

.hero-immersive,
.page-section--advantages,
.page-section--platform,
.page-section--modules {
  background: #0a101c;
}

.page-section--advantages {
  border-bottom: none;
}

.page-section--platform,
.page-section--modules {
  border-top: none;
  border-bottom: none;
}

.page-section--modules {
  border-bottom: 1px solid var(--border);
}

.page-section--advantages + .page-section--platform,
.page-section--platform + .page-section--modules {
  padding-top: clamp(40px, 5vw, 56px);
}

.platform-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 44px);
  padding-bottom: clamp(24px, 3vw, 32px);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.platform-head__sub {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-card {
  position: relative;
  margin: 0;
  padding: clamp(20px, 2.4vw, 24px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(14, 20, 34, 0.85);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet));
  opacity: 0.65;
  transition: opacity var(--transition-fast);
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 112, 243, 0.45);
  box-shadow: 0 16px 36px rgba(0, 112, 243, 0.14);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card--highlight {
  border-color: rgba(0, 112, 243, 0.35);
  background: linear-gradient(165deg, rgba(0, 112, 243, 0.14) 0%, rgba(14, 20, 34, 0.9) 55%);
}

.platform-card--highlight::before {
  opacity: 1;
}

.platform-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 112, 243, 0.3);
  background: rgba(0, 112, 243, 0.1) center / 24px 24px no-repeat;
}

.platform-card__icon--stock { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-14L4 7m8 4v10M4 7v10l8 4'/%3E%3C/svg%3E"); }
.platform-card__icon--crm { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E"); }
.platform-card__icon--analytics { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6m6 0V9a2 2 0 012-2h2a2 2 0 012 2v10m6 0V5a2 2 0 00-2-2h-2a2 2 0 00-2 2v14'/%3E%3C/svg%3E"); }
.platform-card__icon--team { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E"); }
.platform-card__icon--devices { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z'/%3E%3C/svg%3E"); }
.platform-card__icon--cloud { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z'/%3E%3C/svg%3E"); }
.platform-card__icon--support { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M18.364 5.636l-3.536 3.536m0 5.656l3.536 3.536M9.172 9.172L5.636 5.636m3.536 9.192l-3.536 3.536M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-5 0a4 4 0 11-8 0 4 4 0 018 0z'/%3E%3C/svg%3E"); }
.platform-card__icon--integrations { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1'/%3E%3C/svg%3E"); }

.platform-card h3 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.platform-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #9eb2d0;
}

.advantages-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  gap: 12px;
  align-items: stretch;
}

.advantages-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.advantages-visual {
  min-width: 0;
}

.advantages-visual__frame {
  position: relative;
  height: 100%;
  min-height: 320px;
  margin: 0;
  border-radius: 14px;
  border: 1px dashed rgba(0, 112, 243, 0.35);
  background:
    linear-gradient(160deg, rgba(0, 112, 243, 0.12) 0%, rgba(32, 21, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 22, 38, 0.95) 0%, rgba(10, 16, 28, 0.9) 100%);
  overflow: hidden;
}

.advantages-visual__img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

.advantages-visual__img.is-visible {
  display: block;
}

.advantages-visual__frame:has(.advantages-visual__img.is-visible) .advantages-visual__placeholder {
  display: none;
}

.advantages-visual__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 100%;
  min-height: 320px;
  margin: 0;
  padding: 24px;
  text-align: center;
}

.advantages-visual__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(0, 112, 243, 0.35);
  background: rgba(0, 112, 243, 0.12) center / 28px 28px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238fc7ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.advantages-visual__text {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fa8cc;
}

.page-section--ecosystem {
  background:
    radial-gradient(circle at 10% 80%, rgba(0, 112, 243, 0.1), transparent 42%),
    linear-gradient(180deg, #0b1328 0%, #0a101c 100%);
}

.page-section--process {
  background: linear-gradient(180deg, #0a101c 0%, #0a1224 100%);
}

.page-section--business {
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 112, 243, 0.15), transparent 50%),
    linear-gradient(180deg, #0a1224 0%, #0a101c 100%);
}

.page-section--proof {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 112, 243, 0.16), transparent 48%),
    linear-gradient(180deg, #0b1328 0%, #0a101c 100%);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  padding: clamp(22px, 3vw, 28px) clamp(18px, 2vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(30, 38, 60, 0.92) 0%, rgba(16, 22, 38, 0.95) 100%);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 112, 243, 0.4);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 112, 243, 0.45);
  background: rgba(0, 112, 243, 0.15);
  font-size: 15px;
  font-weight: 600;
  color: #8fc7ff;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  color: #ffffff;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #a8b6d0;
}

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

.business-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  min-height: 130px;
  margin: 0;
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(9, 20, 42, 0.2) 0%, rgba(9, 20, 42, 0.85) 100%),
    linear-gradient(135deg, rgba(0, 112, 243, 0.22) 0%, rgba(32, 21, 255, 0.18) 100%);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.business-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 112, 243, 0.5);
  box-shadow: 0 12px 28px rgba(0, 112, 243, 0.18);
}

.business-grid a.business-card {
  margin: 0;
}

.business-card h3 {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.25;
  color: #f4f8ff;
  letter-spacing: -0.01em;
}

.business-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 112, 243, 0.4);
  background: rgba(0, 112, 243, 0.12);
  font-size: 16px;
  color: #8fc7ff;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.business-card:hover .business-card__arrow {
  background: rgba(0, 112, 243, 0.28);
  transform: translateX(2px);
}

.proof-card {
  text-align: center;
}

.proof-card__value {
  margin: 0 0 4px;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #8fc7ff;
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d0dff5;
}

.section-blog,
.section-search { text-align: center; }

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0 0 clamp(20px, 3vw, 28px);
  overflow: hidden;
  color: var(--text-secondary);
  background: linear-gradient(180deg, #0c1424 0%, #080e18 100%);
  border-top: 1px solid rgba(0, 112, 243, 0.2);
}

.site-footer a {
  color: #a6d4ff;
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.copyright {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.page-hero {
  margin-top: 0;
  padding-top: clamp(56px, 7vw, 84px);
  padding-bottom: clamp(42px, 6vw, 68px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0, 112, 243, 0.22) 0%, rgba(0, 90, 210, 0.14) 100%),
    rgba(255, 255, 255, 0.03);
}

/* Solution landing pages */
.solution-feature .quick-start__steps h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.solution-feature .quick-start__steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.solution-feature .quick-start__aside {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-feature__icon {
  width: 88px;
  height: 88px;
}

.solution-feature__icon svg {
  width: 40px;
  height: 40px;
}

.solution-feature--reverse .quick-start__grid > .quick-start__steps {
  order: 2;
}

.solution-feature--reverse .quick-start__grid > .quick-start__aside {
  order: 1;
}

.compare-section .segment-tabs__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: rgba(15, 22, 39, 0.6);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(0, 112, 243, 0.18);
  color: #f0f4ff;
  font-weight: 600;
  font-size: 15px;
}

.compare-table thead th:first-child {
  width: 26%;
}

.compare-table tbody th {
  color: #c5d4ea;
  font-weight: 500;
  width: 26%;
}

.compare-table__us {
  color: #9fd2ff;
  background: rgba(0, 112, 243, 0.06);
  width: 37%;
}

.compare-table tbody td:last-child {
  color: var(--text-muted);
  width: 37%;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-section__cta {
  margin-top: clamp(28px, 4vw, 40px);
}

.feature-modules .segment-tabs__cta {
  margin-top: clamp(28px, 4vw, 40px);
}

.article {
  margin: var(--space-section-desktop) auto 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.article p,
.article li { color: var(--text-secondary); }
.article h1,
.article h2,
.article h3 {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.01em;
}

main > .container:first-child,
main > section:first-child { margin-top: 0; }

@media (max-width: 960px) {
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-track { grid-template-columns: 1fr; }
  .advantages-layout {
    grid-template-columns: 1fr;
  }

  .advantages-visual__frame,
  .advantages-visual__placeholder {
    min-height: 240px;
  }

  .advantages-visual__img {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 103;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .menu-btn.is-active {
    font-size: 24px;
    font-weight: 300;
    border-color: rgba(0, 112, 243, 0.55);
    background: rgba(0, 112, 243, 0.1);
    color: #e8f2ff;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .site-header {
    z-index: 102;
    border-bottom-color: transparent;
    background: #0a101c;
    backdrop-filter: none;
  }

  body.mobile-nav-open .site-header.is-scrolled {
    box-shadow: none;
  }

  body.mobile-nav-open .logo {
    position: relative;
    z-index: 103;
  }

  .site-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 68px 16px max(16px, env(safe-area-inset-bottom));
    border: none;
    border-radius: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 112, 243, 0.14) 0%, transparent 55%),
      linear-gradient(180deg, #0a101c 0%, #0c1424 100%);
    box-shadow: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__panel {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav__panel > a,
  .site-nav__panel > .nav-item--dropdown {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  }

  .site-nav__panel .nav-lang-switch {
    margin: 12px 18px;
    align-self: flex-start;
  }

  .site-nav__panel > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
      background var(--transition-fast),
      border-color var(--transition-fast),
      color var(--transition-fast);
  }

  .site-nav__panel > a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .site-nav__panel > a.active,
  .site-nav__panel > a[aria-current="page"] {
    color: #fff;
    background: rgba(0, 112, 243, 0.16);
    border-color: rgba(0, 112, 243, 0.38);
    box-shadow: inset 3px 0 0 var(--brand-blue);
  }

  .site-nav__actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.open .site-nav__actions .btn {
    width: 100%;
    min-height: 50px;
    margin: 0;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
  }

  .site-nav.open .site-nav__actions .nav-cta {
    order: -1;
    border-color: var(--brand-blue);
    background: linear-gradient(180deg, #1a8af7 0%, #0070f3 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 112, 243, 0.28);
  }

  .site-nav.open .site-nav__actions .nav-cta:hover {
    background: #fff;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: none;
  }

  .site-nav.open .site-nav__actions .nav-login {
    order: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  .site-nav.open .site-nav__actions .nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    transform: none;
  }

  .nav-item--dropdown::after {
    display: none;
  }

  .site-nav__panel .nav-item--dropdown {
    margin: 0;
  }

  .site-nav__panel .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 16px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
    background: transparent;
  }

  .site-nav__panel .nav-dropdown__trigger:hover,
  .site-nav__panel .nav-item--dropdown.is-active > .nav-dropdown__trigger,
  .site-nav__panel .nav-dropdown__trigger[aria-expanded="true"] {
    color: #fff;
    background: rgba(0, 112, 243, 0.1);
    border: none;
  }

  .site-nav__panel .nav-item--dropdown.is-open .nav-dropdown__trigger {
    background: rgba(0, 112, 243, 0.12);
  }

  .site-nav__panel .nav-item--dropdown:hover .nav-dropdown__menu,
  .site-nav__panel .nav-item--dropdown:focus-within .nav-dropdown__menu {
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    pointer-events: none;
    transform: none;
  }

  .site-nav__panel .nav-dropdown__menu {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    min-width: 0;
    margin: 0;
    padding: 4px 8px 8px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.16);
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.28s ease, visibility 0.28s ease, padding 0.28s ease;
  }

  .site-nav__panel .nav-dropdown__menu::before {
    display: none;
  }

  .site-nav__panel .nav-item--dropdown.is-open .nav-dropdown__menu {
    visibility: visible;
    max-height: 1200px;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    opacity: 1;
    padding: 4px 8px 10px;
  }

  .site-nav__panel .nav-dropdown__menu li {
    display: block;
    margin-top: 4px;
  }

  .site-nav__panel .nav-dropdown__menu li:first-child {
    margin-top: 0;
  }

  .site-nav__panel .nav-dropdown__menu a {
    display: block;
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    white-space: normal;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
  }

  .site-nav__panel .nav-dropdown__menu a:hover,
  .site-nav__panel .nav-dropdown__menu a.active {
    color: #fff;
    background: rgba(0, 112, 243, 0.16);
    border-color: rgba(0, 112, 243, 0.28);
  }

  .site-nav__panel .nav-dropdown__menu--dark {
    background: rgba(0, 0, 0, 0.16);
    border: none;
  }

  .cols-2 { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .cards-grid--4,
  .cards-grid--3 { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: 1fr; }
  .business-card { min-height: 110px; }
  .business-card h3 { font-size: 18px; }
  .hero--split .hero__grid.hero__grid--media { grid-template-columns: 1fr; }
  .hero--split .hero__grid.hero__grid--media .hero-copy { align-items: center; text-align: center; }
  .hero--split .hero__grid.hero__grid--media h1,
  .hero--split .hero__grid.hero__grid--media .hero-lead { text-align: center; }
  .hero--split .hero__grid.hero__grid--media .hero-actions { justify-content: center; }
  .hero--split .hero__grid.hero__grid--media .hero-trust { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: center; }
  .hero-stat__value { font-size: 26px; }

  .section,
  .article { margin-top: var(--space-section-mobile); }

  .kpi-grid { grid-template-columns: 1fr; }
}

/* ========== Landing (index) ========== */

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

.section--dark {
  background: var(--bg);
  --section-bg: var(--bg);
}

.section--elevated {
  background: var(--bg-elevated);
  --section-bg: var(--bg-elevated);
}

.section--muted {
  background:
    radial-gradient(circle at 80% 20%, rgba(32, 21, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #121a2e 0%, #0f1627 100%);
  --section-bg: var(--bg-muted);
}

.section--band {
  background: linear-gradient(
    90deg,
    rgba(0, 112, 243, 0.2) 0%,
    rgba(0, 112, 243, 0.12) 45%,
    rgba(0, 90, 210, 0.18) 100%
  );
  border-block: 1px solid rgba(0, 112, 243, 0.3);
}

.cta-band.section--band {
  background: linear-gradient(
    180deg,
    rgba(0, 112, 243, 0.16) 0%,
    rgba(0, 112, 243, 0.08) 50%,
    rgba(0, 112, 243, 0.14) 100%
  );
}

.cta-band.section--band .btn {
  box-shadow: 0 10px 28px rgba(0, 112, 243, 0.35);
}

.cta-band.section--band .btn:hover {
  box-shadow: 0 12px 30px rgba(0, 112, 243, 0.22);
}

main > section {
  padding: clamp(48px, 6vw, var(--space-section-desktop)) 0;
}

.eyebrow--left { margin-left: 0; margin-right: auto; }

.actions--start { justify-content: flex-start; }

.btn-block { width: 100%; }

.nav-cta { margin-left: 4px; }
.nav-login { margin-left: 4px; }

.nav-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-muted);
}

.nav-lang-switch__btn {
  margin: 0;
  padding: 4px 10px;
  min-height: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-lang-switch__btn:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-lang-switch__btn.is-active,
.nav-lang-switch__btn[aria-pressed="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a.btn,
.site-nav button.btn {
  display: inline-flex;
  margin: 0;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.site-nav a.btn:hover,
.site-nav button.btn:hover { color: var(--brand-blue); }

/* Media slots (placeholder until WebP added) */
.media-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(0, 112, 243, 0.2) 0%, rgba(32, 21, 255, 0.12) 45%, rgba(10, 16, 28, 0.9) 100%);
  min-height: 200px;
}

.media-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 16, 28, 0.5) 100%);
  pointer-events: none;
}

.media-slot__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-slot__img.is-loaded {
  opacity: 1;
}

.media-slot--segment {
  min-height: 320px;
  background: transparent;
}

.media-slot--segment::after {
  display: none;
}

.media-slot--segment .media-slot__img {
  object-fit: contain;
}
.media-slot--device {
  min-height: 220px;
  margin-top: 16px;
  background: transparent;
}

.media-slot--device::after {
  display: none;
}

.media-slot--device .media-slot__img {
  object-fit: contain;
}
.media-slot--phone { width: 140px; min-height: 280px; border-radius: 24px; }
.media-slot--video { min-height: 180px; aspect-ratio: 16/10; }

.media-slot--retail { background: linear-gradient(145deg, rgba(250, 135, 107, 0.15), rgba(0, 112, 243, 0.2)); }
.media-slot--services { background: linear-gradient(145deg, rgba(32, 21, 255, 0.2), rgba(0, 112, 243, 0.15)); }
.media-slot--hourly { background: linear-gradient(145deg, rgba(0, 112, 243, 0.18), rgba(10, 16, 28, 0.9)); }
.media-slot--franchise { background: linear-gradient(145deg, rgba(32, 21, 255, 0.22), rgba(250, 135, 107, 0.1)); }

/* Hero split */
.hero--split {
  text-align: center;
  padding-top: clamp(40px, 6vw, 72px);
}

.hero--split.hero {
  text-align: center;
}

.hero--split .hero-inner { display: none; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hero--split .hero__grid.hero__grid--media {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  justify-items: stretch;
  gap: clamp(22px, 3.5vw, 44px);
}

.hero--split .hero__grid.hero__grid--media .hero-copy {
  align-items: flex-start;
  text-align: left;
}

.hero--split .hero__grid.hero__grid--media h1,
.hero--split .hero__grid.hero__grid--media .hero-lead {
  text-align: left;
}

.hero--split .hero__grid.hero__grid--media .hero-actions {
  justify-content: flex-start;
}

.hero--split .hero__grid.hero__grid--media .hero-video {
  margin-top: 0;
  align-self: center;
}

.hero--split .hero-copy {
  align-items: center;
  max-width: 880px;
  width: 100%;
}

.hero--split h1 {
  text-align: center;
  max-width: 900px;
}

.hero--split .hero-lead {
  text-align: center;
  max-width: 640px;
}

.hero-trust--start { justify-content: flex-start; }

.hero-price__value { color: var(--accent-coral); }

/* Segment tabs */
.segment-tabs__head {
  max-width: 640px;
  margin-bottom: 28px;
}

.segment-tabs__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.segment-tabs__lead {
  margin: 0;
  color: var(--text-secondary);
}

.segment-tabs__strip-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.segment-tabs__strip {
  display: flex;
  gap: 4px;
  min-width: min-content;
  border-bottom: 1px solid var(--border);
}

.segment-tabs__strip button {
  flex-shrink: 0;
  min-height: 44px;
  padding: 12px 18px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.segment-tabs__strip button:hover { color: #fff; }

.segment-tabs__strip button[aria-selected="true"] {
  color: #fff;
  border-bottom-color: var(--brand-blue);
}

.segment-tabs__body { min-height: 320px; }

.segment-tabs__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.segment-tabs__panel[hidden] { display: none; }

.segment-tabs__panel-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
}

/* Checklists */
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-check);
  font-weight: 700;
  font-size: 13px;
}

.checklist--compact { gap: 6px; }
.checklist--muted li::before { color: #5eb8ff; }

.arrow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrow-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}

.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
}

/* Benefits tech */
.benefits-tech__head {
  max-width: 720px;
  margin-bottom: 36px;
}

.benefits-tech__head h2 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.03em;
  font-weight: 500;
}

.benefits-tech__lead {
  margin: 0;
  color: var(--text-secondary);
  max-width: 52ch;
}

.benefits-tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 40px);
}

.benefits-tech__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefits-tech__item--wide {
  grid-column: 1 / -1;
  max-width: 720px;
}

.benefits-tech__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 112, 243, 0.35);
  background: rgba(0, 112, 243, 0.1);
  color: #8fc7ff;
}

.benefits-tech__item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.benefits-tech__item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Quick start */
.quick-start__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.quick-start__steps h2 {
  margin: 0 0 24px;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.03em;
  font-weight: 500;
}

.emoji-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.emoji-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.emoji-steps__icon {
  font-size: 28px;
  line-height: 1;
}

.emoji-steps h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}

.emoji-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.quick-start__check-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
}

/* Remote control */
.remote-control__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.remote-control__copy h2 {
  margin: 0 0 28px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 16ch;
}

.numbered-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.numbered-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.numbered-steps__num {
  flex-shrink: 0;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(0, 112, 243, 0.35);
}

.numbered-steps h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}

.numbered-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.remote-control__phones {
  position: relative;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}

.media-slot--phone-1 { transform: rotate(-8deg) translateX(24px); z-index: 1; }
.media-slot--phone-2 { transform: translateY(-20px); z-index: 3; }
.media-slot--phone-3 { transform: rotate(8deg) translateX(-24px); z-index: 2; }

/* Data trust */
.data-trust__head h2 {
  margin: 12px 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.03em;
  font-weight: 500;
}

.data-trust__lead {
  margin: 0;
  max-width: 52ch;
  color: var(--text-secondary);
}

.data-trust__quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--brand-blue);
  background: rgba(0, 112, 243, 0.08);
  border-radius: 0 12px 12px 0;
  font-size: clamp(17px, 2.5vw, 20px);
  font-style: italic;
  line-height: 1.5;
  color: #e8f0ff;
}

.data-trust__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.data-trust__pillars article {
  padding: 0;
  border: none;
  background: none;
}

.data-trust__pillar-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.data-trust__pillars h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
}

.data-trust__pillars p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.data-trust__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.data-trust__lists h4 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  padding: clamp(36px, 5vw, 52px) 0;
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
}

.cta-band__copy {
  flex: 1 1 280px;
}

.cta-band__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c5e4ff;
}

.cta-band__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cta-band__copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.cta-band__actions { margin: 0; flex-shrink: 0; }

.cta-band__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-band__pills li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: #d0dff5;
}

/* Referral timeline */
.referral-program__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.referral-program__head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.referral-program__head p {
  margin: 0;
  color: var(--text-secondary);
}

.referral-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.referral-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet));
  opacity: 0.5;
}

.referral-timeline li {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.referral-timeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue);
  background: var(--bg-elevated);
  font-weight: 600;
  color: #8fc7ff;
  position: relative;
  z-index: 1;
}

.referral-timeline h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
}

.referral-timeline p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.referral-program__cta {
  text-align: center;
  margin-top: 32px;
}

.referral-program__cta .btn { display: inline-flex; margin: 0; }

/* Support metrics */
.support-stats__head {
  text-align: center;
  margin-bottom: 40px;
}

.support-stats__head h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
}

.support-stats__head p {
  margin: 0;
  color: var(--text-secondary);
}

.support-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-tile {
  text-align: center;
  padding: clamp(24px, 3vw, 36px) 16px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.metric-tile__value {
  margin: 0 0 8px;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent-coral);
}

.metric-tile__value span {
  font-size: 0.55em;
  color: var(--text-secondary);
}

.support-stats__note {
  text-align: center;
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Video cases */
.video-cases__head {
  margin-bottom: 24px;
}

.video-cases__head h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
}

.video-cases__head p {
  margin: 0;
  color: var(--text-secondary);
}

.video-cases__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4vw 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.video-card {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
}

.video-card__link {
  display: block;
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.video-card__link:hover h3 { color: #9fd2ff; }

.video-card {
  position: relative;
}

.video-card h3 {
  margin: 12px 0 4px;
  font-size: 17px;
  font-weight: 500;
}

.video-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 112, 243, 0.85);
  pointer-events: none;
}

.video-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border: 10px solid transparent;
  border-left: 14px solid #fff;
  margin-left: 2px;
}

.video-card .media-slot::after {
  background: linear-gradient(0deg, rgba(10, 16, 28, 0.7), transparent 50%);
}

/* Lead form — блок перед футером на всех страницах */
.lead-form--site-footer {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.lead-form--site-footer + .site-footer {
  border-top: none;
}

.lead-form--site-footer + .site-footer .footer-glow {
  top: 0;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.lead-form__info h2 {
  margin: 12px 0 12px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.lead-form__info > p {
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.lead-form__panel {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: var(--shadow-soft);
}

.lead-form__panel-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.lead-form__panel-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #64748b;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #0f172a;
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 0;
  border-color: var(--brand-blue);
}

.field__phone-row {
  display: block;
  width: 100%;
}

.field__phone-row select:not(.phone-country-field__native) {
  width: auto;
  min-width: 110px;
  flex-shrink: 0;
}

.field__phone-row input:not(.phone-country-field__row input) {
  flex: 1;
}

/* Phone field with country picker (full-width dropdown) */
.phone-country-field {
  position: relative;
  width: 100%;
}

.phone-country-field__row {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 112, 243, 0.42);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.phone-country-field:focus-within .phone-country-field__row,
.phone-country-field.is-open .phone-country-field__row {
  border-color: rgba(0, 112, 243, 0.72);
  box-shadow: 0 0 0 1px rgba(0, 112, 243, 0.22);
}

.phone-country-field.is-open .phone-country-field__row {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.phone-country-field__code-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: 5.5rem;
  padding: 0 8px 0 10px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #f3f7ff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.phone-country-field__code {
  white-space: nowrap;
  line-height: 1;
}

.phone-country-field__code-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.phone-country-field__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #9eb4d8;
  border-bottom: 2px solid #9eb4d8;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition-fast);
}

.phone-country-field.is-open .phone-country-field__arrow {
  transform: rotate(-135deg) translateY(1px);
}

.phone-country-field__row input[type='tel'] {
  flex: 1 1 auto;
  width: 0;
  min-width: 0;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 12px 10px 12px 8px;
  color: #f3f7ff;
  font-size: 15px;
}

@media (max-width: 480px) {
  .phone-country-field__code-btn {
    max-width: 4.75rem;
    padding: 0 6px 0 8px;
    gap: 3px;
    font-size: 13px;
  }

  .phone-country-field__arrow {
    width: 6px;
    height: 6px;
  }

  .phone-country-field__row input[type='tel'] {
    padding: 12px 8px 12px 6px;
    font-size: 14px;
  }
}

.phone-country-field__row input[type='tel']::placeholder {
  color: rgba(184, 199, 222, 0.55);
}

.phone-country-field__native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.phone-country-field__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border: 1px solid rgba(0, 112, 243, 0.72);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #0b1528 0%, #091222 100%);
  box-shadow: 0 14px 28px rgba(1, 7, 16, 0.45);
  max-height: 220px;
  overflow-y: auto;
}

.phone-country-field:not(.is-open) > .phone-country-field__list,
.phone-country-field__list[hidden] {
  display: none !important;
}

.phone-country-field__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  color: #e8f0ff;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.phone-country-field__option:hover,
.phone-country-field__option.is-active {
  background: rgba(0, 112, 243, 0.88);
  color: #ffffff;
}

.phone-country-field__dial {
  flex-shrink: 0;
  color: inherit;
  font-weight: 500;
}

.field .phone-country-field__row input[type='tel'] {
  min-height: 0;
}

.lead-form__panel .phone-country-field__row {
  border-color: #cbd5e1;
  background: #fff;
}

.lead-form__panel .phone-country-field:focus-within .phone-country-field__row,
.lead-form__panel .phone-country-field.is-open .phone-country-field__row {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 1px rgba(0, 112, 243, 0.12);
}

.lead-form__panel .phone-country-field__code-btn {
  border-right-color: #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
}

.lead-form__panel .phone-country-field__row input[type='tel'] {
  color: #0f172a;
}

.lead-form__panel .phone-country-field__row input[type='tel']::placeholder {
  color: #94a3b8;
}

.lead-form__panel .phone-country-field__list {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.lead-form__panel .phone-country-field__option {
  color: #0f172a;
}

.lead-form__panel .phone-country-field__option:hover,
.lead-form__panel .phone-country-field__option.is-active {
  background: #0070f3;
  color: #fff;
}

.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #475569;
}

.field--checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.field--checkbox a {
  display: inline;
  margin: 0;
  color: var(--brand-blue);
}

.lead-form__success {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 10px;
  background: #dcfce7;
  color: #166534;
  font-size: 14px;
}

.field__optional {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.9em;
}

.lead-form__register-cta {
  margin: 14px 0 0;
  padding: 16px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  text-align: center;
}

.lead-form__register-lead {
  margin: 0 0 12px;
  font-size: 14px;
  color: #0c4a6e;
}

.lead-form__register-cta .btn {
  margin: 0 0 8px;
}

.lead-form__register-redirect {
  margin: 8px 0 0;
  font-size: 12px;
  color: #64748b;
}

.paloma-form__resubmit-hint {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.45;
}

.paloma-form--locked .paloma-form__resubmit-hint {
  display: block;
}

.lead-form__panel .btn {
  margin-top: 4px;
}

/* Footer landing */
.site-footer--landing {
  margin-top: 0;
}

.footer-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 112, 243, 0.65) 50%,
    transparent 100%
  );
  box-shadow: 0 0 40px rgba(0, 112, 243, 0.35);
  pointer-events: none;
}

.site-footer--landing .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  padding: clamp(40px, 5vw, 56px) 0 clamp(28px, 4vw, 36px);
}

.footer-grid--4 {
  grid-template-columns: 1.35fr repeat(3, 1fr);
  align-items: start;
}

.footer-col__title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8f2ff;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo:hover {
  color: #fff;
}

.footer-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand-blue), #0056c7);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.35);
}

.footer-logo__word {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-logo__tld {
  color: #8fc7ff;
  font-weight: 500;
}

.footer-brand__desc {
  margin: 0 0 16px;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.footer-chips li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 112, 243, 0.35);
  background: rgba(0, 112, 243, 0.1);
  font-size: 12px;
  color: #c5e4ff;
}

.footer-store {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-store__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: #d7e9ff !important;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.footer-store__btn:hover {
  border-color: rgba(0, 112, 243, 0.5);
  background: rgba(0, 112, 243, 0.12);
  color: #fff !important;
  transform: translateY(-1px);
}

.footer-cta {
  display: inline-flex;
  margin: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: inline-block;
  padding: 5px 0;
  font-size: 14px;
  color: #b8cce8;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  margin: 0 0 4px;
}

.footer-contact-list__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.footer-contact-list__link:hover {
  background: rgba(0, 112, 243, 0.1);
}

.footer-contact-list__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-contact-list__value {
  font-size: 14px;
  font-weight: 500;
  color: #e8f2ff;
}

.footer-contact-list__link:hover .footer-contact-list__value {
  color: #fff;
}

.footer-address {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-hours {
  font-size: 12px;
  color: #8fa3c4;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-bottom__actions a {
  display: inline;
  font-size: 13px;
  color: #8fa3c4;
  text-decoration: none;
}

.footer-bottom__actions a:hover {
  color: #fff;
}

/* Legacy footer classes */
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-badge {
  display: inline-flex;
  margin: 0;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: #c5e4ff;
}

.site-footer h3:not(.footer-col__title) {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.site-footer p:not(.footer-address):not(.footer-bottom__copy) {
  margin: 6px 0;
  font-size: 14px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Landing responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero--split h1 { max-width: none; }
  .segment-tabs__panel { grid-template-columns: 1fr; }
  .benefits-tech__grid { grid-template-columns: 1fr; }
  .benefits-tech__item--wide { grid-column: auto; }
  .quick-start__grid,
  .remote-control__grid,
  .lead-form__grid,
  .data-trust__pillars,
  .data-trust__lists { grid-template-columns: 1fr; }
  .referral-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .referral-timeline::before { display: none; }
  .support-stats__grid { grid-template-columns: 1fr; }
  .remote-control__phones { min-height: 260px; }
  .media-slot--phone-1,
  .media-slot--phone-3 { transform: none; }
  .media-slot--phone-2 { transform: translateY(-12px); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1100px) {
  .footer-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer-grid--4 { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-trust--start { flex-direction: column; align-items: flex-start; }
  .metric-tile__value { font-size: 40px; }
}

/* Photo-content blocks */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.actions--center { justify-content: center; }

.segment-tabs__head--center,
.benefits-tech__head--center,
.data-trust__head--center,
.video-cases__head--center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.segment-tabs__body--single .segment-tabs__panel--static {
  display: grid;
}

.segment-tabs__cta {
  margin-top: 28px;
}

.advantage-block {
  margin-bottom: 22px;
}

.advantage-block:last-child { margin-bottom: 0; }

.advantage-block__title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c5d4eb;
}

.advantage-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.platform-section__visual { margin-bottom: 24px; }

.media-slot--platform {
  min-height: 280px;
  background: transparent;
}

.media-slot--platform::after {
  display: none;
}

.media-slot--platform .media-slot__img {
  object-fit: contain;
  /* PNG/WebP без альфа: чёрный фон в файле; screen «убирает» чистый #000 на тёмном фоне секции */
  mix-blend-mode: screen;
  filter: contrast(1.03) saturate(1.03);
}

.platform-section__text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.quick-start__steps h2 {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.remote-control__lead {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.remote-control__cta { margin: 0; }

.cta-band__inner--solo { justify-content: center; }

/* Feature modules — bento grid */
.feature-modules {
  position: relative;
}

.feature-modules__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.feature-modules__head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

.module-card {
  --module-accent: var(--brand-blue);
  --module-glow: rgba(0, 112, 243, 0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elevated);
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.module-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--module-glow) 0%, transparent 70%);
  pointer-events: none;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.module-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.module-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  background: var(--module-accent);
  box-shadow: 0 8px 20px var(--module-glow);
}

/* FloatingContacts (paloma365.ru style) */
.FloatingContacts-module__DMmVzG__stack {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.FloatingContacts-module__DMmVzG__button {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(4, 10, 20, 0.42);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.FloatingContacts-module__DMmVzG__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(4, 10, 20, 0.5);
  filter: brightness(1.04);
}

.FloatingContacts-module__DMmVzG__telegram {
  background: linear-gradient(180deg, #2ea7e0 0%, #1f8fd4 100%);
}

.FloatingContacts-module__DMmVzG__whatsapp {
  background: linear-gradient(180deg, #2ad06a 0%, #1fbf58 100%);
}

.FloatingContacts-module__DMmVzG__phone {
  background: linear-gradient(180deg, #4f8cff 0%, #3f75e9 100%);
}

.FloatingContacts-module__DMmVzG__scrollTop {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(10px);
}

.FloatingContacts-module__DMmVzG__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.FloatingContacts-module__DMmVzG__icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(12, 21, 39, 0.97) 0%, rgba(9, 16, 31, 0.96) 100%);
  box-shadow:
    0 18px 44px rgba(1, 7, 16, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-banner--consent {
  left: 0;
  right: 0;
  bottom: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 14, 28, 0.96);
  box-shadow: 0 -8px 28px rgba(1, 7, 16, 0.38);
}

.cookie-banner--consent .cookie-banner__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 10px clamp(12px, 2.5vw, 24px);
  min-height: 52px;
}

.cookie-banner--consent .cookie-banner__text--compact {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #c5d4eb;
}

.cookie-banner--consent .cookie-banner__title-inline {
  color: #f3f7ff;
  font-weight: 600;
}

.cookie-banner--consent .cookie-banner__text--compact a {
  color: #79b8ff;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner--consent .cookie-banner__actions {
  margin-top: 0;
  flex: 0 0 auto;
}

.cookie-banner--consent .cookie-banner__btn {
  min-height: 34px;
  padding: 7px 18px;
  font-size: 14px;
  white-space: nowrap;
}

body.cookie-banner-visible .FloatingContacts-module__DMmVzG__stack {
  bottom: calc(52px + 12px);
}

body.cookie-banner-visible .CookieBanner-module__6xFwxG__settingsFab {
  bottom: calc(52px + 12px);
}

.cookie-banner__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  color: #dbe8ff;
  font-size: 18px;
  line-height: 32px;
  font-family: Arial, sans-serif;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.cookie-banner__close:hover {
  border-color: rgba(121, 184, 255, 0.7);
  background: rgba(121, 184, 255, 0.14);
  color: #f6fbff;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner__title {
  margin: 0 36px 10px 0;
  color: #f3f7ff;
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cookie-banner__text {
  margin: 0;
  color: #b8c7de;
  font-size: 15px;
  line-height: 1.58;
  max-width: 740px;
}

.cookie-banner__text a {
  color: #79b8ff;
  display: inline;
  margin: 0;
  text-decoration: underline;
  border-bottom: none;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner__actions--single .cookie-banner__btn {
  min-width: 140px;
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
}

.cookie-settings-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, 0.72);
  backdrop-filter: blur(4px);
}

.cookie-settings-modal .cookie-banner--settings {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  top: auto;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  max-width: min(520px, calc(100vw - 32px));
  max-height: min(85vh, 640px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cookie-banner--settings .cookie-banner__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: inherit;
  padding: 20px 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cookie-banner--settings .cookie-banner__settings {
  margin-top: 12px;
}

body.cookie-settings-open {
  overflow: hidden;
}

.cookie-banner__btn {
  min-height: 40px;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.cookie-banner__btn--primary {
  background: linear-gradient(180deg, #1e84f5 0%, #0f6fd5 100%);
  border: 1px solid rgba(150, 205, 255, 0.34);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(22, 105, 206, 0.26);
}

.cookie-banner__btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7e3f8;
}

.cookie-banner__settings {
  margin-top: 12px;
  padding: 12px;
  border-top: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.cookie-banner__settings[hidden] {
  display: none !important;
}

.cookie-banner__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d5e2f8;
  font-size: 13px;
}

.cookie-banner__check input {
  width: 16px;
  height: 16px;
}

.cookie-banner__settings-actions {
  margin-top: 2px;
}

.CookieBanner-module__6xFwxG__settingsFab[hidden] {
  display: none !important;
}

.CookieBanner-module__6xFwxG__settingsFab {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 49;
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(145deg, rgba(10, 18, 34, 0.94), rgba(8, 15, 30, 0.9));
  color: #eef5ff;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(1, 7, 16, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.CookieBanner-module__6xFwxG__settingsFab:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 180, 255, 0.9);
  box-shadow: 0 14px 28px rgba(1, 7, 16, 0.55);
}

@media (max-width: 760px) {
  .cookie-banner:not(.cookie-banner--consent) {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
    border-radius: 12px;
  }

  .cookie-banner__title {
    font-size: 20px;
  }

  .cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-banner:not(.cookie-banner--consent) .cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner--consent .cookie-banner__strip {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
    min-height: 0;
  }

  .cookie-banner--consent .cookie-banner__text--compact {
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie-banner--consent .cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }

  body.cookie-banner-visible .FloatingContacts-module__DMmVzG__stack {
    bottom: calc(88px + 12px);
  }

  body.cookie-banner-visible .CookieBanner-module__6xFwxG__settingsFab {
    bottom: calc(88px + 12px);
  }

  .CookieBanner-module__6xFwxG__settingsFab {
    left: 10px;
    bottom: 10px;
  }

  .cookie-settings-modal {
    padding: 0;
    align-items: stretch;
  }

  .cookie-settings-modal .cookie-banner--settings {
    width: 100%;
    max-width: none;
    max-height: none;
    height: 100%;
    border-radius: 0;
    border: none;
  }

  .cookie-banner--settings .cookie-banner__panel {
    flex: 1;
    min-height: 0;
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner--settings .cookie-banner__title {
    margin-right: 40px;
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .FloatingContacts-module__DMmVzG__stack {
    right: 12px;
    bottom: 16px;
  }
}

.module-card__head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f4f7ff;
}

.module-card__list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  flex: 1;
  align-content: start;
}

.module-card__list li {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.35;
  color: #b8c8e0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.module-card__list li:hover {
  color: #eef3ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Ecosystem cards */
.ecosystem .referral-program__head {
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 148px;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 18px;
  border: 1px solid rgba(0, 112, 243, 0.28);
  background:
    linear-gradient(145deg, rgba(0, 112, 243, 0.18) 0%, rgba(0, 112, 243, 0.06) 40%, rgba(15, 22, 39, 0.95) 100%);
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), rgba(0, 112, 243, 0));
}

.ecosystem-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 112, 243, 0.45);
  box-shadow: 0 14px 36px rgba(0, 112, 243, 0.15);
}

.ecosystem-card__copy {
  position: relative;
  z-index: 1;
}

.ecosystem-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f0f4ff;
}

.ecosystem-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.ecosystem-card__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(0, 112, 243, 0.3);
  background: rgba(0, 112, 243, 0.15);
  color: #8ec5ff;
  box-shadow:
    0 0 0 6px rgba(0, 112, 243, 0.08),
    0 10px 28px rgba(0, 112, 243, 0.2);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.ecosystem-card__icon svg {
  width: 36px;
  height: 36px;
}

.ecosystem-card:hover .ecosystem-card__icon {
  color: #b8dcff;
  background: rgba(0, 112, 243, 0.22);
  box-shadow:
    0 0 0 6px rgba(0, 112, 243, 0.12),
    0 12px 32px rgba(0, 112, 243, 0.28);
}

/* Process — timeline */
.process-section .support-stats__head {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.process-section__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process-step;
  position: relative;
}

.process-section__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(16.666% + 28px);
  right: calc(16.666% + 28px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-blue) 0%,
    rgba(0, 112, 243, 0.5) 50%,
    var(--brand-blue) 100%
  );
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 112, 243, 0.45);
  background: var(--bg-elevated);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
  box-shadow:
    0 0 0 6px rgba(0, 112, 243, 0.1),
    0 8px 24px rgba(0, 112, 243, 0.2);
}

.process-step__card {
  width: 100%;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.process-step:hover .process-step__card {
  transform: translateY(-3px);
  border-color: rgba(0, 112, 243, 0.4);
  box-shadow: 0 14px 36px rgba(0, 112, 243, 0.12);
}

.process-step__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #f0f4ff;
}

.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.process-section__cta {
  margin-top: clamp(32px, 4vw, 44px);
}

/* Business segments */
.business-section .video-cases__head--center {
  margin-bottom: clamp(32px, 4vw, 48px);
}

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

.business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.12) 0%,
    rgba(15, 22, 39, 0.95) 55%
  );
  text-decoration: none;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), rgba(0, 112, 243, 0));
}

.business-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 112, 243, 0.42);
  box-shadow: 0 16px 40px rgba(0, 112, 243, 0.14);
}

.business-card__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f0f4ff;
}

.business-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  align-content: flex-start;
}

.business-card__tags li {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #c5d4ea;
  background: rgba(0, 112, 243, 0.12);
  border: 1px solid rgba(0, 112, 243, 0.2);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.business-card:hover .business-card__tags li {
  background: rgba(0, 112, 243, 0.2);
  border-color: rgba(0, 112, 243, 0.35);
  color: #e8f0ff;
}

.business-card__link {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-blue);
  transition: color var(--transition-fast);
}

.business-card__link::after {
  content: " →";
}

.business-card:hover .business-card__link {
  color: #9fd2ff;
}

@media (prefers-reduced-motion: reduce) {
  .module-card:hover,
  .ecosystem-card:hover,
  .process-step:hover .process-step__card,
  .business-card:hover { transform: none; }
}

@media (max-width: 960px) {
  .feature-modules__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .ecosystem__grid { grid-template-columns: 1fr; }
  .process-section__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 420px;
    margin-inline: auto;
  }

  .process-section__steps::before {
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      var(--brand-blue) 0%,
      rgba(0, 112, 243, 0.45) 50%,
      var(--brand-blue) 100%
    );
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .process-step__num {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
  .business-section__grid { grid-template-columns: repeat(2, 1fr); }
  .solution-feature--reverse .quick-start__grid > .quick-start__steps,
  .solution-feature--reverse .quick-start__grid > .quick-start__aside {
    order: unset;
  }
}

@media (max-width: 760px) {
  .business-section__grid { grid-template-columns: 1fr; }
  .feature-modules__stage {
    grid-template-columns: 1fr;
  }
  .module-card__list {
    grid-template-columns: 1fr;
  }
}

/* Contacts page */
.contacts-page .contacts-intro {
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 40px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: #a6d4ff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumbs__sep {
  opacity: 0.5;
}

.contacts-intro h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contacts-intro__lead {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.contacts-list__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.contact-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: rgba(15, 22, 39, 0.55);
}

.contact-card--featured {
  border-color: rgba(0, 112, 243, 0.55);
  background: linear-gradient(
    135deg,
    rgba(0, 112, 243, 0.14) 0%,
    rgba(15, 22, 39, 0.7) 100%
  );
  box-shadow: 0 12px 40px rgba(0, 112, 243, 0.12);
}

.contact-card--requisites {
  max-width: 920px;
  margin: 0 auto;
}

.contact-card__country {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8f2ff;
}

.contact-card__details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card__details li {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 12px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.contact-card__label {
  font-weight: 500;
  color: #c5d9f5;
}

.contact-card__details a {
  color: #8fc7ff;
  text-decoration: none;
}

.contact-card__details a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-card__note {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
}

.requisites-section__region {
  margin: -8px 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.requisites-section__body p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.requisites-section__body p:last-child {
  margin-bottom: 0;
}

.lead-form--promo.section--band {
  background: linear-gradient(
    160deg,
    rgba(0, 112, 243, 0.22) 0%,
    rgba(9, 18, 34, 0.95) 45%,
    rgba(0, 90, 210, 0.18) 100%
  );
  border-block: 1px solid rgba(0, 112, 243, 0.28);
}

.lead-form__perks-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #d7e9ff;
}

.lead-form__perks {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.lead-form__perks li {
  margin-bottom: 6px;
}

.lead-form__footnote {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .contact-card__details li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Legal pages */
.legal-page-wrap .contacts-intro h1 {
  max-width: 900px;
}

.legal-page {
  margin-top: 0;
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 920px;
}

.legal-page h2 {
  margin: 32px 0 14px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
}

.legal-page ul,
.legal-page ol {
  margin: 0 0 16px;
  padding-left: 1.35em;
}

.legal-page li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-page li::marker {
  color: #8fc7ff;
}

.legal-page a {
  display: inline;
  margin: 0;
  color: #8fc7ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: #fff;
}

.legal-defs {
  margin: 0 0 20px;
}

.legal-defs dt {
  margin: 14px 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #e8f2ff;
}

.legal-defs dd {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.legal-page__note {
  display: block;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* Cooperation page */
.cooperation-intro__lead {
  max-width: 720px;
}

.cooperation-formats {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.cooperation-grid > .coop-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.cooperation-grid > .coop-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.cooperation-grid > .coop-card:nth-child(5) {
  grid-column: 4 / span 2;
}

a.coop-card--link {
  margin: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.coop-card--link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.coop-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px 22px 22px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.2);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.1) 0%,
    rgba(12, 18, 32, 0.92) 48%,
    rgba(10, 16, 28, 0.98) 100%
  );
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  scroll-margin-top: 88px;
}

.coop-card:hover {
  border-color: rgba(0, 112, 243, 0.45);
  box-shadow: 0 16px 44px rgba(0, 112, 243, 0.14);
  transform: translateY(-3px);
}

.coop-card:target {
  border-color: rgba(0, 112, 243, 0.65);
  box-shadow: 0 0 0 1px rgba(0, 112, 243, 0.35), 0 18px 48px rgba(0, 112, 243, 0.18);
}

.coop-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #1a8fff 0%, var(--brand-blue) 55%, #0056c4 100%);
  box-shadow: 0 6px 18px rgba(0, 112, 243, 0.35);
}

.coop-card__icon--letter {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.coop-card__icon--muted {
  background: linear-gradient(145deg, rgba(0, 112, 243, 0.35) 0%, rgba(0, 112, 243, 0.15) 100%);
  box-shadow: none;
  border: 1px solid rgba(0, 112, 243, 0.35);
}

.coop-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #f2f6ff;
}

.coop-card__desc {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.coop-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-blue);
  text-decoration: none;
  background: none;
  border: none;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.coop-card__more::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.coop-card__more:hover {
  color: #9fd2ff;
  gap: 8px;
}

.coop-card__more:hover::after,
.coop-card--link:hover .coop-card__more::after {
  transform: translateX(2px);
}

.coop-card--link:hover .coop-card__more {
  color: #9fd2ff;
  gap: 8px;
}

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

  .cooperation-grid > .coop-card:nth-child(-n + 5) {
    grid-column: auto;
  }

  .cooperation-grid > .coop-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

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

  .cooperation-grid > .coop-card:nth-child(5) {
    grid-column: auto;
  }

  .coop-card {
    min-height: 0;
  }

  .coop-card:hover {
    transform: none;
  }
}

/* Referral page */
.referral-hero {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.referral-hero h1 {
  margin: 0 0 16px;
  max-width: 640px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
}

.referral-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.referral-hero__lead {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.referral-hero__bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 580px;
}

.referral-hero__bullets li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.referral-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.2);
}

.referral-hero__bullets strong {
  color: #e8f2ff;
}

.referral-hero__actions {
  margin: 0;
}

.referral-audience {
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.35);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.12) 0%,
    rgba(12, 18, 32, 0.85) 100%
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.referral-audience__title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f2f6ff;
}

.referral-audience__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.referral-audience__list li {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.referral-audience__list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #eef3ff;
}

.referral-process {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.referral-process__head {
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}

.referral-process__head h2 {
  text-align: center;
}

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

.referral-step {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.08) 0%,
    rgba(15, 22, 39, 0.6) 100%
  );
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.referral-step:hover {
  border-color: rgba(0, 112, 243, 0.42);
  box-shadow: 0 14px 36px rgba(0, 112, 243, 0.12);
  transform: translateY(-2px);
}

.referral-step__num {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
}

.referral-step__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #f0f4ff;
}

.referral-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.referral-terms {
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.referral-terms__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.referral-terms__main h2 {
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(22px, 3vw, 32px);
}

.referral-terms__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.referral-terms__list li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.referral-terms__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
}

.referral-terms__list strong {
  color: #e8f2ff;
}

.referral-cta-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.45);
  background: linear-gradient(
    145deg,
    rgba(0, 112, 243, 0.2) 0%,
    rgba(10, 16, 28, 0.95) 100%
  );
  box-shadow: 0 16px 48px rgba(0, 112, 243, 0.15);
}

.referral-cta-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.referral-cta-card__text {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.referral-cta-card__btn {
  width: 100%;
}

.btn--light {
  color: #0a101c;
  background: #f4f7ff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.btn--light:hover {
  color: #0a101c;
  background: #fff;
  border-color: #fff;
}

.lead-form__section-label {
  margin: 8px 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fa3c4;
}

.lead-form__panel textarea {
  width: 100%;
  min-height: 88px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(10, 16, 28, 0.5);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  resize: vertical;
}

.lead-form__panel textarea:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 1px;
  border-color: rgba(0, 112, 243, 0.5);
}

@media (max-width: 960px) {
  .referral-hero__grid,
  .referral-terms__grid {
    grid-template-columns: 1fr;
  }

  .referral-steps {
    grid-template-columns: 1fr;
  }

  .referral-terms__main h2 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .referral-step:hover {
    transform: none;
  }
}

/* Partner-integrator page */
.integrator-section {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

.integrator-section .referral-process__head {
  max-width: 720px;
}

.integrator-grid {
  display: grid;
  gap: 16px;
}

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

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

.integrator-card {
  padding: 22px 20px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.22);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.08) 0%,
    rgba(12, 18, 32, 0.75) 100%
  );
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.integrator-card:hover {
  border-color: rgba(0, 112, 243, 0.42);
  box-shadow: 0 12px 36px rgba(0, 112, 243, 0.12);
  transform: translateY(-2px);
}

.integrator-card__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #f0f4ff;
}

.integrator-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.integrator-ready__lead {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.integrator-page .referral-terms__main h2 {
  text-align: left;
}

@media (max-width: 960px) {
  .integrator-grid--3,
  .integrator-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integrator-page .referral-terms__main h2 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .integrator-grid--3,
  .integrator-grid--4 {
    grid-template-columns: 1fr;
  }

  .integrator-card:hover {
    transform: none;
  }
}

/* Influencer page */
.influencer-dual {
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.influencer-dual__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.influencer-dual__main h2 {
  margin: 0 0 20px;
  text-align: left;
  font-size: clamp(22px, 3vw, 32px);
}

.influencer-dual__aside {
  margin: 0;
}

.influencer-guide {
  padding-top: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(48px, 7vw, 72px);
}

.influencer-guide__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 380px);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.influencer-guide__main h2 {
  margin: 0 0 14px;
  text-align: left;
  font-size: clamp(22px, 3vw, 30px);
}

.influencer-guide__lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.influencer-steps {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.influencer-steps li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.influencer-steps strong {
  color: #e8f2ff;
}

.influencer-guide__aside {
  margin: 0;
}

.influencer-guide__alt {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .influencer-dual__grid,
  .influencer-guide__grid {
    grid-template-columns: 1fr;
  }

  .influencer-dual__main h2,
  .influencer-guide__main h2 {
    text-align: center;
  }
}

/* Client referral page */
.client-bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.client-bonus-card {
  padding: 24px 22px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 112, 243, 0.28);
  background: linear-gradient(
    165deg,
    rgba(0, 112, 243, 0.1) 0%,
    rgba(10, 16, 28, 0.9) 100%
  );
}

.client-bonus-card__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa3c4;
}

.client-bonus-card__value {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f0f4ff;
}

.client-bonus-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.client-referral-page .influencer-dual__main {
  max-width: 640px;
}

.client-referral-page #client-ref-when-title {
  margin: 0 0 20px;
  text-align: left;
  font-size: clamp(22px, 3vw, 32px);
}

.client-ref-when__list {
  max-width: 720px;
}

.client-ref-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 112, 243, 0.2);
  background: rgba(0, 112, 243, 0.08);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.client-ref-note strong {
  color: #e8f2ff;
}

@media (max-width: 700px) {
  .client-bonus-grid {
    grid-template-columns: 1fr;
  }

  .client-referral-page #client-ref-when-title {
    text-align: center;
  }
}

/* Paloma popup forms (referral program) */
.paloma-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px;
}

.paloma-modal[hidden] {
  display: none;
}

.paloma-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.paloma-modal__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 48rem;
  margin: auto;
}

.paloma-modal__card {
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 900px);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a101c;
  box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.75);
}

.paloma-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 12px;
  flex-shrink: 0;
}

.paloma-modal__title {
  margin: 0;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #f0f4ff;
}

.paloma-modal__header--stack {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 8px;
}

.paloma-modal__header--stack .paloma-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
}

.paloma-modal__header--stack .paloma-modal__title {
  text-transform: none;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-right: 40px;
}

.paloma-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fa3c4;
}

.paloma-modal__lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.paloma-modal--single .paloma-modal__card {
  max-height: min(85vh, 720px);
}

.paloma-modal__footer--single .btn-block {
  width: 100%;
}

.paloma-field__select,
.paloma-field select.paloma-field__country {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #f0f4ff;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.paloma-field__select:focus,
.paloma-field select.paloma-field__country:focus {
  outline: none;
  border-color: rgba(0, 112, 243, 0.55);
}

.paloma-modal__header--stack {
  position: relative;
}

.paloma-modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin: -4px -8px 0 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #8fa3c4;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.paloma-modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.paloma-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 8px;
}

.paloma-modal__intro-list {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.paloma-modal__intro-list li + li {
  margin-top: 6px;
}

.paloma-modal__warn {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #f87171;
}

.paloma-modal__warn--soft {
  color: #fbbf24;
}

.paloma-modal__step-title {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 112, 243, 0.25);
  background: rgba(0, 112, 243, 0.08);
  font-size: 15px;
  font-weight: 600;
  color: #e8f2ff;
}

.paloma-field {
  display: block;
  margin-bottom: 18px;
}

.paloma-field__label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #f0f4ff;
}

.paloma-field__req {
  color: #f87171;
}

.paloma-field__hint {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #8fa3c4;
}

.paloma-field input[type="text"],
.paloma-field input[type="tel"],
.paloma-field input[type="url"],
.paloma-field textarea,
.paloma-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #f0f4ff;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.15s;
}

.paloma-field textarea {
  resize: vertical;
  min-height: 100px;
}

.paloma-field input:focus,
.paloma-field textarea:focus,
.paloma-field select:focus {
  outline: none;
  border-color: rgba(0, 112, 243, 0.55);
}

.paloma-field input:invalid:not(:placeholder-shown),
.paloma-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(248, 113, 113, 0.5);
}

.paloma-field__phone-row {
  display: block;
  width: 100%;
}

.paloma-field__phone-row select:not(.phone-country-field__native) {
  font-size: 12px;
  padding-left: 10px;
  padding-right: 8px;
}

.paloma-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  cursor: pointer;
}

.paloma-field--checkbox input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0070f3;
}

.paloma-field--checkbox a {
  color: #60a5fa;
}

.paloma-modal__footer {
  flex-shrink: 0;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.paloma-modal__step-indicator {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  color: #8fa3c4;
}

.paloma-modal__footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.paloma-modal__footer-actions [hidden],
.paloma-modal__footer-actions .is-step-hidden {
  display: none !important;
}

.paloma-modal__back {
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #c5d4ef;
}

.paloma-modal__back:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.paloma-modal__legal {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: #6b7d9a;
}

.paloma-modal__legal a {
  color: #8fa3c4;
  text-decoration: underline;
}

.paloma-modal__success {
  padding: 24px 0 16px;
  text-align: center;
}

.paloma-modal__success-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #f0f4ff;
}

.paloma-modal__success p {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.paloma-modal.is-success .paloma-modal__intro,
.paloma-modal.is-success .paloma-modal__form .paloma-modal__step,
.paloma-modal.is-success .paloma-modal__footer {
  display: none;
}

.paloma-modal.is-success .paloma-modal__success {
  display: block !important;
}

body.paloma-modal-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .paloma-modal {
    align-items: center;
    padding: 40px 16px;
  }
}

@media (max-width: 520px) {
  .paloma-modal__footer-actions .btn-lg {
    width: 100%;
  }

  .paloma-modal__back {
    width: 100%;
    margin-right: 0;
    order: 2;
  }
}
