:root {
  --color-bg: #F7FAFC;
  --color-bg-elevated: #FFFFFF;
  --color-bg-soft: #EEF4F8;
  --color-bg-blue-soft: #EAF4FF;
  --color-bg-ice: #F3F8FC;
  --color-text: #0F172A;
  --color-text-soft: #334155;
  --color-text-muted: #64748B;
  --color-text-inverse: #FFFFFF;
  --color-primary: #0B5FFF;
  --color-primary-hover: #084BD1;
  --color-primary-active: #063A9E;
  --color-primary-soft: #E7F0FF;
  --color-accent: #00A7C8;
  --color-accent-soft: #E6F9FC;
  --color-accent-deep: #087D96;
  --color-success: #139A63;
  --color-success-soft: #EAF8F1;
  --color-warning: #B7791F;
  --color-warning-soft: #FFF7E6;
  --color-danger: #C2410C;
  --color-danger-soft: #FFF1EB;
  --color-border: #D9E4EE;
  --color-border-strong: #B8C7D6;
  --color-divider: #E6EDF3;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.14);
  --shadow-primary: 0 16px 36px rgba(11, 95, 255, 0.22);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --container: 1200px;
  --container-wide: 1360px;
  --gutter-desktop: 40px;
  --gutter-tablet: 28px;
  --gutter-mobile: 18px;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-20: 1.25rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-40: 2.5rem;
  --space-48: 3rem;
  --space-64: 4rem;
  --space-80: 5rem;
  --space-96: 6rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 220ms;
  --header-height-desktop: 76px;
  --header-height-mobile: 64px;
  --input-height: 56px;
  --button-height: 56px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(0,167,200,.12), transparent 34rem),
    linear-gradient(180deg, #FFFFFF 0%, var(--color-bg) 42%, #FFFFFF 100%);
  line-height: 1.6;
}
img, video { max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
.container {
  width: min(100% - 2 * var(--gutter-desktop), var(--container));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 252, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 228, 238, .75);
}
.header-inner {
  min-height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
}
.brand img {
  width: 180px;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .94rem;
  font-weight: 650;
}
.main-nav a {
  color: var(--color-text-soft);
  padding: .7rem .85rem;
  border-radius: var(--radius-full);
}
.main-nav a:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}
.main-nav .nav-cta {
  color: var(--color-text-inverse);
  background: var(--color-primary);
  box-shadow: var(--shadow-primary);
}
.main-nav .nav-cta:hover {
  color: var(--color-text-inverse);
  background: var(--color-primary-hover);
}
.nav-toggle {
  appearance: none;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-full);
  padding: .7rem 1rem;
  font-weight: 750;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: var(--gutter-mobile);
}
.site-section {
  padding: var(--space-96) 0;
  position: relative;
}
.site-section:nth-of-type(even) { background: rgba(238, 244, 248, .72); }
.site-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-24);
}
.section-hero {
  padding-top: calc(var(--space-80) + 10px);
  background:
    radial-gradient(circle at 80% 10%, rgba(0,167,200,0.16), transparent 34%),
    linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 48%, #EAF4FF 100%);
}
.section-hero .container {
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: var(--space-48);
}
.section-hero .media-figure {
  grid-column: 2;
  grid-row: 1 / span 10;
}
.section-hero h1,
.policy-page h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.065em;
}
h1, h2, h3 { color: var(--color-text); text-wrap: balance; }
h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
h3 {
  margin: var(--space-24) 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}
p { margin: 0; max-width: 850px; color: var(--color-text-soft); }
ul, ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-soft);
  max-width: 900px;
}
li + li { margin-top: .45rem; }
.section-lead, .hero-subtitle {
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  color: var(--color-text-soft);
  max-width: 890px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .55rem;
  padding: .35rem .7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
}
.hero-trust-list,
.section-segments h3,
.section-models h3,
.section-cases h3,
.section-documents ul,
.section-installation-support ol,
.section-not-for-everyone h3 {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
  padding: var(--space-16);
  margin-top: var(--space-8);
}
.hero-trust-list p {
  padding: var(--space-16);
  border-radius: var(--radius-md);
  background: var(--color-bg-ice);
  font-size: .96rem;
}
.btn-primary, .btn-secondary, button.btn-primary {
  display: inline-flex;
  width: fit-content;
  min-height: var(--button-height);
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: var(--radius-full);
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.btn-primary, button.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover, button.btn-primary:hover {
  color: #fff;
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: var(--color-primary-soft);
  transform: translateY(-1px);
}
.media-figure {
  margin: var(--space-16) 0 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.media-figure img, .media-figure video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--color-bg-soft);
}
.media-figure figcaption {
  padding: .8rem 1rem 1rem;
  color: var(--color-text-muted);
  font-size: .92rem;
}
.video-figure video { aspect-ratio: 16 / 9; }
.note, .warning {
  border-radius: var(--radius-lg);
  padding: var(--space-20);
  border: 1px solid;
}
.note {
  background: var(--color-accent-soft);
  border-color: rgba(0,167,200,.25);
  color: var(--color-accent-deep);
}
.warning {
  background: var(--color-warning-soft);
  border-color: rgba(183,121,31,.25);
  color: #7A4B12;
}
.section-segments h3,
.section-models h3,
.section-cases h3,
.section-not-for-everyone h3 {
  padding: var(--space-20) var(--space-24);
  margin-top: var(--space-24);
}
.section-segments h3 + p,
.section-models h3 + p,
.section-cases h3 + p,
.section-not-for-everyone h3 + p {
  padding: 0 var(--space-24) var(--space-24);
  margin-top: calc(var(--space-24) * -1);
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.section-documents ul,
.section-installation-support ol,
.section-calculator ul {
  padding: var(--space-24) var(--space-32);
  background: #fff;
}
.calculator-form, .lead-form, .content-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem, 3vw, 2rem);
  max-width: 1040px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
}
label {
  display: grid;
  gap: .45rem;
  color: var(--color-text);
  font-weight: 750;
}
input, select, textarea {
  width: 100%;
  min-height: var(--input-height);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  padding: .85rem 1rem;
  font: inherit;
  outline: 0;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(11,95,255,.12);
}
.span-2 { grid-column: 1 / -1; }
.consent {
  margin: var(--space-16) 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .75rem;
  font-weight: 500;
  color: var(--color-text-soft);
}
.consent input {
  width: 1.15rem;
  min-height: 1.15rem;
  margin-top: .2rem;
}
.calculator-result, .form-status {
  display: block;
  margin-top: var(--space-16);
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  background: var(--color-bg-ice);
  border: 1px solid var(--color-border);
  color: var(--color-text-soft);
}
.form-status.is-success, .calculator-result.is-success {
  background: var(--color-success-soft);
  color: var(--color-success);
  border-color: rgba(19,154,99,.25);
}
.form-status.is-error, .calculator-result.is-error {
  background: var(--color-danger-soft);
  color: var(--color-danger);
  border-color: rgba(194,65,12,.25);
}
.site-footer {
  padding: var(--space-64) 0;
  background: #071225;
  color: #fff;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: var(--space-32);
}
.footer-brand {
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff !important;
  margin-bottom: var(--space-12);
}
.site-footer h2 {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 var(--space-12);
}
.site-footer div:nth-child(2) {
  display: grid;
  gap: .55rem;
}
.policy-page .content-card {
  max-width: 980px;
}
.policy-page .content-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  margin-top: var(--space-32);
}
@media (max-width: 980px) {
  .container { width: min(100% - 2 * var(--gutter-tablet), var(--container)); }
  .header-inner { min-height: var(--header-height-mobile); }
  .nav-toggle {
    opacity: 1;
    pointer-events: auto;
    position: static;
  }
  .main-nav {
    position: absolute;
    inset: var(--header-height-mobile) var(--gutter-tablet) auto;
    flex-direction: column;
    align-items: stretch;
    padding: .85rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: clip;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height var(--duration-base) var(--ease-out), opacity var(--duration-base), transform var(--duration-base) var(--ease-out);
  }
  .main-nav.is-open {
    max-height: 560px;
    opacity: 1;
    transform: translateY(0);
  }
  .policy-nav {
    position: static;
    max-height: none;
    opacity: 1;
    transform: none;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    background: transparent;
  }
  .section-hero .container { grid-template-columns: 1fr; }
  .section-hero .media-figure { grid-column: auto; grid-row: auto; }
  .hero-trust-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 2 * var(--gutter-mobile), var(--container)); }
  .site-section { padding: var(--space-64) 0; }
  .section-hero { padding-top: var(--space-64); }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .btn-primary, .btn-secondary, button.btn-primary { width: 100%; }
  .brand img { width: 150px; }
  .policy-nav { font-size: .82rem; gap: .2rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}

/* Premium FAQ accordion */
.section-faq .container {
  max-width: 1040px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
  margin-top: var(--space-32);
}

.faq-item {
  overflow: hidden;
  border: 1px solid #D9E4EE;
  border-radius: 12px;
  background: #F7FAFC;
  box-shadow: 0 4px 12px rgba(11, 95, 255, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 167, 200, 0.42);
  box-shadow: 0 10px 28px rgba(11, 95, 255, 0.06);
  background: #FFFFFF;
}

.faq-item.is-open {
  border-color: rgba(0, 167, 200, 0.55);
  background: #FFFFFF;
  box-shadow: 0 14px 34px rgba(11, 95, 255, 0.08);
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: #0F172A;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-trigger:focus-visible {
  outline: 3px solid rgba(0, 167, 200, 0.24);
  outline-offset: -3px;
}

.faq-question {
  display: block;
  min-width: 0;
}

.faq-icon {
  flex: 0 0 auto;
  color: #00A7C8;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content p {
  margin: 0;
  padding: 0 20px 20px;
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-accordion {
    gap: 10px;
  }

  .faq-trigger {
    padding: 18px 16px;
    font-size: 16px;
  }

  .faq-content p {
    padding: 0 16px 18px;
    font-size: 15px;
  }
}

/* Premium B2B product cards, sliders and lightbox */
.section-models .container,
.section-segments .container,
.section-cases .container,
.section-documents .container {
  gap: var(--space-32);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
  margin-top: var(--space-16);
}

.model-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 95, 255, 0.22);
  box-shadow: 0 8px 24px rgba(11, 95, 255, 0.08);
}

.model-card-image {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: clamp(20px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 167, 200, 0.10), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
  border-bottom: 1px solid var(--color-divider);
}

.model-card-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(15, 23, 42, 0.16));
}

.model-card-body {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 28px);
}

.model-badge,
.slider-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: var(--color-accent-soft);
  color: var(--color-accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.model-card h3,
.slider-card h3,
.document-card h3,
.case-card h3,
.section-models .model-card h3,
.section-segments .slider-card h3,
.section-cases .slider-card h3,
.section-documents .slider-card h3 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--color-text);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.model-card p,
.slider-card p,
.model-card h3 + p,
.slider-card h3 + p,
.section-models .model-card h3 + p,
.section-segments .slider-card h3 + p,
.section-cases .slider-card h3 + p,
.section-documents .slider-card h3 + p {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.premium-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: var(--space-16);
}

.slider-viewport {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.slider-track {
  display: flex;
  will-change: transform;
  transition: transform 0.4s ease-in-out;
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2px;
}

.slider-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: stretch;
  min-height: 440px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.slider-image-wrap,
.lightbox-trigger {
  min-width: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(11, 95, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F8FC 100%);
  border: 0;
  padding: 0;
}

.slider-image-wrap img,
.lightbox-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  background: transparent;
}

.lightbox-trigger {
  width: 100%;
  cursor: zoom-in;
}

.lightbox-trigger:focus-visible {
  outline: 4px solid rgba(0, 167, 200, 0.28);
  outline-offset: -4px;
}

.slider-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(24px, 3.2vw, 42px);
}

.document-card {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.document-card .lightbox-trigger img {
  max-height: 620px;
  padding: 18px;
}

.document-card ul,
.section-documents .document-card ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.document-card .warning,
.section-documents .document-card .warning {
  margin: 0;
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  background: var(--color-warning-soft);
  border: 1px solid rgba(183,121,31,.25);
  color: #7A4B12;
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(11, 95, 255, 0.18);
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: 0 10px 26px rgba(11, 95, 255, 0.10);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.22s var(--ease-out), color 0.22s var(--ease-out);
  z-index: 2;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 16px 34px rgba(11, 95, 255, 0.18);
}

.slider-btn:active {
  transform: translateY(0);
}

.slider-btn:focus-visible {
  outline: 4px solid rgba(0, 167, 200, 0.24);
  outline-offset: 3px;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 37, 0.86);
  backdrop-filter: blur(10px);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 1120px);
  margin: 0;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: 0.96rem;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

body.lightbox-lock {
  overflow: hidden;
}

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

  .model-card-image img {
    height: 260px;
  }

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

  .slider-btn {
    position: absolute;
    top: 190px;
  }

  .slider-btn-prev { left: 12px; }
  .slider-btn-next { right: 12px; }

  .slider-card,
  .document-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .slider-image-wrap,
  .lightbox-trigger {
    min-height: 260px;
  }

  .slider-card-body {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .model-card-image {
    min-height: 230px;
  }

  .model-card-image img {
    height: 220px;
  }

  .slider-btn {
    top: 150px;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .slider-image-wrap,
  .lightbox-trigger {
    min-height: 220px;
  }

  .slider-card-body {
    padding: 20px;
  }

  .lightbox-modal {
    padding: 12px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
/* End premium B2B product cards, sliders and lightbox */

/* === H2System Atlas Premium Hero + Typography Patch 2026-07-05 === */
:root {
  --font-base: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-tech: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.68;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
}

.container-wide {
  width: min(100% - 2 * var(--gutter-desktop), var(--container-wide));
  margin-inline: auto;
}

.site-section {
  padding-block: clamp(5.5rem, 8vw, 8rem);
}

h1, h2, h3 {
  font-family: var(--font-base);
  color: var(--color-text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 5vw, 4.75rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.55rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.18;
  font-weight: 750;
  letter-spacing: -0.03em;
}

p, li {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-lead {
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  line-height: 1.62;
  font-weight: 500;
  color: var(--color-text-soft);
  max-width: 880px;
}

.section-hero {
  min-height: calc(100vh - var(--header-height-desktop));
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 167, 200, 0.14), transparent 30%),
    radial-gradient(circle at 3% 24%, rgba(11, 95, 255, 0.10), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 48%, #EAF4FF 100%);
}

.section-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(380px, 2fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 24px;
  padding-block: 12px;
}

.section-hero .eyebrow {
  width: fit-content;
  margin: 0 0 4px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 95, 255, 0.16);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
  color: var(--color-primary);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.section-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3.25rem, 4.45vw, 4.7rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--color-text);
}

.section-hero .hero-subtitle {
  margin: 0;
  max-width: 820px;
  font-size: clamp(1.25rem, 1.55vw, 1.375rem);
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text-soft);
}

.section-hero .hero-description {
  margin: 0;
  max-width: 830px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  min-height: 68px;
  padding: 0 34px;
  border-radius: 12px;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.hero-actions .btn-primary {
  box-shadow: 0 18px 42px rgba(11, 95, 255, 0.26);
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(11, 95, 255, 0.34);
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  border-color: rgba(11, 95, 255, 0.16);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.hero-actions .btn-secondary:hover {
  color: var(--color-primary);
  border-color: rgba(11, 95, 255, 0.32);
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.section-hero .hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section-hero .hero-trust-list p {
  min-height: 100%;
  margin: 0;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(217, 228, 238, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.section-hero .hero-trust-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-text);
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(217, 228, 238, 0.9);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(11,95,255,0.06) 100%),
    radial-gradient(circle at 80% 12%, rgba(0, 167, 200, 0.16), transparent 32%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.calculator-form,
.faq-trigger,
.faq-content p,
.form-control,
input, select, textarea {
  font-size: 1rem;
}

.faq-trigger {
  font-size: 1.125rem;
}

.faq-content p {
  line-height: 1.72;
}

.model-card-body p,
.slider-card-body p,
.document-card p,
.case-card p,
.calculator-result,
.form-grid label {
  font-size: 1.03rem;
  line-height: 1.68;
}

@media (max-width: 1180px) {
  .section-hero .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    min-height: 520px;
  }
  .hero-media img {
    min-height: 520px;
  }
}

@media (max-width: 1023px) {
  .container-wide {
    width: min(100% - 2 * var(--gutter-tablet), var(--container-wide));
  }
  body {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.62;
  }
  .container-wide {
    width: min(100% - 2 * var(--gutter-mobile), var(--container-wide));
  }
  .site-section {
    padding-block: 3.75rem;
  }
  .section-hero {
    min-height: auto;
    padding: 64px 0 56px;
  }
  .section-hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }
  .section-hero .hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.62;
  }
  .section-hero .hero-description {
    font-size: 1rem;
    line-height: 1.65;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-height: 58px;
    padding-inline: 22px;
    font-size: 1rem;
  }
  .section-hero .hero-trust-list {
    grid-template-columns: 1fr;
  }
  .section-hero .hero-trust-list p {
    padding: 16px;
    font-size: 0.96rem;
  }
  .hero-media {
    min-height: 420px;
    border-radius: 22px;
  }
  .hero-media img {
    min-height: 420px;
  }
  .hero-media figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 13px 14px;
    font-size: 0.88rem;
  }
  h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  h3 {
    font-size: 1.38rem;
  }
  .section-lead {
    font-size: 1.06rem;
  }
}

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


/* =========================================================
   H2System Atlas — Premium Skolkovo-style Hero Redesign
   Replace only first screen visuals/typography without touching sections below.
   ========================================================= */

:root {
  --hero-ink: #071225;
  --hero-ink-soft: #26364D;
  --hero-blue: #0B5FFF;
  --hero-cyan: #00A7C8;
  --hero-line: rgba(130, 157, 190, 0.22);
  --hero-glass: rgba(255, 255, 255, 0.72);
}

.site-header {
  background: rgba(247, 250, 252, 0.78);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
  border-bottom: 1px solid rgba(204, 216, 232, 0.72);
}

.header-inner {
  max-width: var(--container-wide);
}

.brand img {
  width: 170px;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.main-nav {
  gap: 4px;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.main-nav a {
  padding: 0.76rem 0.92rem;
  color: #26364D;
}

.main-nav .nav-cta {
  padding-inline: 1.15rem;
  background: linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  box-shadow: 0 18px 34px rgba(11, 95, 255, 0.24);
}

.section-hero.hero-premium {
  position: relative;
  min-height: calc(100svh - var(--header-height-desktop));
  padding: clamp(74px, 8vw, 118px) 0 clamp(58px, 7vw, 92px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(247,250,252,0.92) 43%, rgba(231,245,255,0.92) 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 167, 200, 0.22), transparent 36rem),
    radial-gradient(circle at 6% 34%, rgba(11, 95, 255, 0.12), transparent 30rem),
    #F7FAFC;
}

.section-hero.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.18) 100%),
    radial-gradient(circle at 70% 92%, rgba(11, 95, 255, 0.13), transparent 24rem);
  z-index: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(var(--hero-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.hero-orb-blue {
  width: 520px;
  height: 520px;
  right: -210px;
  top: 16%;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.16), transparent 66%);
}

.hero-orb-cyan {
  width: 420px;
  height: 420px;
  left: -190px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(0, 167, 200, 0.12), transparent 68%);
}

.section-hero.hero-premium .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 5.4vw, 84px);
  width: min(100% - 2 * var(--gutter-desktop), 1480px);
  margin-inline: auto;
}

.hero-content {
  gap: clamp(18px, 2vw, 26px);
  max-width: 840px;
}

.section-hero.hero-premium .hero-eyebrow,
.section-hero.hero-premium .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 95, 255, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
  color: #0B5FFF;
  font-size: clamp(0.76rem, 0.8vw, 0.86rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-hero.hero-premium .hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00A7C8;
  box-shadow: 0 0 0 6px rgba(0, 167, 200, 0.12);
}

.section-hero.hero-premium h1 {
  max-width: 900px;
  margin: 0;
  color: var(--hero-ink);
  font-size: clamp(3.65rem, 5.55vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: -0.078em;
  font-weight: 850;
  text-wrap: balance;
}

.section-hero.hero-premium .hero-subtitle {
  max-width: 760px;
  margin: 0;
  color: #26364D;
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.5;
  font-weight: 560;
  letter-spacing: -0.018em;
}

.section-hero.hero-premium .hero-description {
  display: none;
}

.hero-actions {
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.section-hero.hero-premium .hero-actions .btn-primary,
.section-hero.hero-premium .hero-actions .btn-secondary {
  min-height: 64px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.section-hero.hero-premium .hero-actions .btn-primary {
  background: linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  box-shadow: 0 20px 44px rgba(11, 95, 255, 0.28), inset 0 1px 0 rgba(255,255,255,0.26);
}

.section-hero.hero-premium .hero-actions .btn-secondary {
  color: #071225;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(160, 176, 198, 0.48);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.section-hero.hero-premium .hero-actions .btn-primary:hover,
.section-hero.hero-premium .hero-actions .btn-secondary:hover {
  transform: translateY(-3px);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(10px, 1.3vw, 18px);
}

.hero-proof-item {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 18px 18px 17px;
  border-radius: 22px;
  border: 1px solid rgba(198, 213, 231, 0.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.66)),
    rgba(255,255,255,0.7);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-proof-item::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.10), transparent 70%);
}

.hero-proof-item span {
  display: block;
  margin-bottom: 18px;
  color: rgba(11, 95, 255, 0.86);
  font-family: var(--font-tech, inherit);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: #071225;
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.hero-proof-item p {
  max-width: none;
  margin: 0;
  color: #4A5A70;
  font-size: 0.91rem;
  line-height: 1.42;
  font-weight: 500;
}

.hero-video-container {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 16px;
  align-self: center;
}

.hero-video-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 54vh, 650px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(25px) saturate(160%);
  -webkit-backdrop-filter: blur(25px) saturate(160%);
  border: 1px solid rgba(255,255,255, 0.15);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.16),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-video-element {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.16) 0%, rgba(7, 18, 37, 0.02) 42%, rgba(7, 18, 37, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 18, 37, 0.04) 0%, rgba(7, 18, 37, 0.22) 54%, rgba(7, 18, 37, 0.76) 100%),
    radial-gradient(circle at 22% 16%, rgba(0, 167, 200, 0.18), transparent 36%);
}

.hero-video-topline {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: calc(100% - 56px);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(7, 18, 37, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.84);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.video-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16D48B;
  box-shadow: 0 0 0 6px rgba(22, 212, 139, 0.12), 0 0 18px rgba(22, 212, 139, 0.42);
}

.hero-video-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7, 18, 37, 0.62);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.10);
}

.badge-model {
  display: block;
  color: #60D9F1;
  font-family: var(--font-tech, inherit);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-text {
  display: block;
  max-width: 360px;
  color: #FFFFFF;
  font-size: clamp(1.16rem, 1.45vw, 1.48rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-metric-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-metric-panel > div {
  min-height: 126px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(198, 213, 231, 0.72);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.hero-metric-panel span {
  display: block;
  margin-bottom: 10px;
  color: #071225;
  font-family: var(--font-tech, inherit);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-metric-panel p {
  max-width: none;
  margin: 0;
  color: #4A5A70;
  font-size: 0.94rem;
  line-height: 1.42;
  font-weight: 560;
}

@media (max-width: 1280px) {
  .section-hero.hero-premium .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 44px;
  }

  .section-hero.hero-premium h1 {
    font-size: clamp(3.25rem, 5vw, 5.6rem);
  }
}

@media (max-width: 1080px) {
  .section-hero.hero-premium {
    min-height: auto;
    padding-top: 72px;
  }

  .section-hero.hero-premium .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 920px;
  }

  .section-hero.hero-premium h1,
  .section-hero.hero-premium .hero-subtitle {
    max-width: 900px;
  }

  .hero-video-shell {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .section-hero.hero-premium {
    padding: 44px 0 48px;
  }

  .section-hero.hero-premium .hero-grid {
    width: min(100% - 2 * var(--gutter-mobile), var(--container-wide));
    gap: 30px;
  }

  .section-hero.hero-premium h1 {
    font-size: clamp(2.58rem, 12.5vw, 3.85rem);
    line-height: 0.98;
    letter-spacing: -0.062em;
  }

  .section-hero.hero-premium .hero-subtitle {
    font-size: 1.06rem;
    line-height: 1.55;
  }

  .section-hero.hero-premium .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-hero.hero-premium .hero-actions .btn-primary,
  .section-hero.hero-premium .hero-actions .btn-secondary {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-proof-item {
    min-height: 0;
  }

  .hero-video-shell {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero-video-shell::after {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-video-topline {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .hero-video-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 17px 18px;
    border-radius: 18px;
  }

  .hero-metric-panel {
    grid-template-columns: 1fr;
  }

  .hero-metric-panel > div {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-premium .hero-eyebrow,
  .section-hero.hero-premium .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    padding: 10px 12px;
  }

  .hero-video-shell {
    min-height: 360px;
  }
}

/* =========================================================
   SKOLKOVO / PREMIUM INDUSTRIAL HERO — final override
   Fixes video path/layout and replaces the broken dark square.
========================================================= */

:root {
  --font-main: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-tech: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  background: #F7FAFC;
}

.container-wide {
  width: min(100% - 2 * var(--gutter-desktop), var(--container-wide));
  margin-inline: auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(217, 228, 238, 0.72);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.header-inner {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.main-nav {
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 750;
}

.main-nav a {
  color: #1E2B3F;
  padding: 10px 12px;
}

.main-nav .nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  box-shadow: 0 16px 34px rgba(11, 95, 255, 0.25);
}

.section-hero.hero-premium {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: clamp(64px, 7vw, 104px) 0 clamp(56px, 6vw, 92px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 167, 200, 0.18), transparent 27rem),
    radial-gradient(circle at 8% 28%, rgba(11, 95, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 48%, #EAF4FF 100%);
}

.section-hero.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(11, 95, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 62% 42%, #000 0%, rgba(0,0,0,0.54) 42%, transparent 76%);
}

.section-hero.hero-premium::after {
  content: "";
  position: absolute;
  top: 14%;
  right: -8%;
  width: 42vw;
  height: 42vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 167, 200, 0.13), transparent 68%);
  filter: blur(12px);
}

.section-hero.hero-premium .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  align-items: center;
  gap: clamp(54px, 6.4vw, 104px);
}

.section-hero.hero-premium .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 26px);
  min-width: 0;
  padding: 0;
}

.section-hero.hero-premium .hero-eyebrow,
.section-hero.hero-premium .eyebrow {
  width: fit-content;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(11, 95, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(11, 95, 255, 0.06);
  color: #0B5FFF;
  font-family: var(--font-tech);
  font-size: clamp(0.72rem, 0.78vw, 0.84rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.section-hero.hero-premium h1 {
  margin: 0;
  max-width: 900px;
  color: #071225;
  font-size: clamp(4.35rem, 6.9vw, 8.15rem);
  line-height: 0.88;
  font-weight: 850;
  letter-spacing: -0.082em;
  text-wrap: balance;
}

.section-hero.hero-premium .hero-subtitle {
  margin: 0;
  max-width: 780px;
  color: #304158;
  font-size: clamp(1.22rem, 1.43vw, 1.48rem);
  line-height: 1.52;
  font-weight: 570;
}

.hero-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(184, 199, 214, 0.72);
  background: rgba(255, 255, 255, 0.68);
  color: #42536A;
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-hero.hero-premium .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 2px 0 0;
}

.section-hero.hero-premium .hero-actions .btn-primary,
.section-hero.hero-premium .hero-actions .btn-secondary {
  min-height: 62px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.section-hero.hero-premium .hero-actions .btn-primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  box-shadow: 0 22px 48px rgba(11, 95, 255, 0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}

.section-hero.hero-premium .hero-actions .btn-secondary {
  color: #071225;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(160, 176, 198, 0.56);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.hero-proof-item {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 18px 18px 17px;
  border-radius: 22px;
  border: 1px solid rgba(198, 213, 231, 0.78);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.66));
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-proof-item::after {
  content: "";
  position: absolute;
  inset: auto -34px -44px auto;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.11), transparent 70%);
}

.hero-proof-item span {
  display: block;
  margin-bottom: 17px;
  color: rgba(11, 95, 255, 0.86);
  font-family: var(--font-tech);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-proof-item strong {
  display: block;
  margin: 0 0 8px;
  color: #071225;
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.hero-proof-item p {
  max-width: none;
  margin: 0;
  color: #4A5A70;
  font-size: 0.91rem;
  line-height: 1.42;
  font-weight: 510;
}

.hero-video-container {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 14px;
  align-self: center;
}

.hero-video-shell {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, #0B1324, #172033), #0F172A;
  box-shadow:
    0 42px 110px rgba(15, 23, 42, 0.24),
    0 18px 42px rgba(11, 95, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
  transform: translateZ(0);
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), inset 0 1px 0 rgba(255,255,255,0.30);
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-video-element {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.16) 0%, rgba(7, 18, 37, 0.02) 42%, rgba(7, 18, 37, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 18, 37, 0.04) 0%, rgba(7, 18, 37, 0.22) 54%, rgba(7, 18, 37, 0.76) 100%),
    radial-gradient(circle at 22% 16%, rgba(0, 167, 200, 0.18), transparent 36%);
}

.hero-video-topline {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: calc(100% - 56px);
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(7, 18, 37, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.84);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.video-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16D48B;
  box-shadow: 0 0 0 6px rgba(22, 212, 139, 0.12), 0 0 18px rgba(22, 212, 139, 0.42);
}

.hero-video-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7, 18, 37, 0.62);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.10);
}

.badge-model {
  display: block;
  color: #60D9F1;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge-text {
  display: block;
  max-width: 460px;
  color: #FFFFFF;
  font-size: clamp(1.16rem, 1.45vw, 1.48rem);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.hero-metric-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-metric-panel > div {
  min-height: 126px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(198, 213, 231, 0.72);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.hero-metric-panel span {
  display: block;
  margin-bottom: 10px;
  color: #071225;
  font-family: var(--font-tech);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 0.95;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.hero-metric-panel p {
  max-width: none;
  margin: 0;
  color: #4A5A70;
  font-size: 0.94rem;
  line-height: 1.42;
  font-weight: 560;
}

@media (max-width: 1280px) {
  .section-hero.hero-premium .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    gap: 44px;
  }

  .section-hero.hero-premium h1 {
    font-size: clamp(3.72rem, 6.2vw, 6.3rem);
  }
}

@media (max-width: 1080px) {
  .container-wide {
    width: min(100% - 2 * var(--gutter-tablet), var(--container-wide));
  }

  .section-hero.hero-premium {
    min-height: auto;
    padding-top: 72px;
  }

  .section-hero.hero-premium .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-hero.hero-premium h1,
  .section-hero.hero-premium .hero-subtitle {
    max-width: 900px;
  }

  .hero-video-shell {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .container-wide {
    width: min(100% - 2 * var(--gutter-mobile), var(--container-wide));
  }

  .section-hero.hero-premium {
    padding: 44px 0 48px;
  }

  .section-hero.hero-premium .hero-grid {
    gap: 30px;
  }

  .section-hero.hero-premium h1 {
    font-size: clamp(2.72rem, 12.8vw, 4rem);
    line-height: 0.94;
    letter-spacing: -0.066em;
  }

  .section-hero.hero-premium .hero-subtitle {
    font-size: 1.06rem;
    line-height: 1.55;
  }

  .hero-meta-line span {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .section-hero.hero-premium .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-hero.hero-premium .hero-actions .btn-primary,
  .section-hero.hero-premium .hero-actions .btn-secondary {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
  }

  .hero-proof-row,
  .hero-metric-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof-item,
  .hero-metric-panel > div {
    min-height: 0;
  }

  .hero-video-shell {
    aspect-ratio: 4 / 5;
    border-radius: 26px;
  }

  .hero-video-shell::after {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-video-topline {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .hero-video-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 17px 18px;
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .section-hero.hero-premium .hero-eyebrow,
  .section-hero.hero-premium .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    padding: 10px 12px;
  }
}
/* ================================
   CONTACTS PREMIUM BLOCK
================================ */

.section-contacts .container {
  gap: clamp(24px, 3vw, 40px);
}

.contacts-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
  overflow: hidden;

  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,252,0.96));
  border: 1px solid rgba(217, 228, 238, 0.95);
  border-radius: 22px;
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.85);

  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 80px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.13), transparent 70%);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
}

.contact-card:hover {
  color: var(--color-text);
  transform: translateY(-3px);
  border-color: rgba(11, 95, 255, 0.28);
  background: #ffffff;
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.11),
    0 12px 26px rgba(11, 95, 255, 0.08);
}

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

.contact-card-primary {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 167, 200, 0.18), transparent 36%),
    linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  border-color: rgba(11, 95, 255, 0.35);
  color: #ffffff;
  box-shadow:
    0 22px 50px rgba(11, 95, 255, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.contact-card-primary:hover {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 167, 200, 0.24), transparent 36%),
    linear-gradient(135deg, #084BD1 0%, #063A9E 100%);
}

.contact-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;

  border-radius: 16px;
  background: rgba(11, 95, 255, 0.09);
  color: var(--color-primary);
}

.contact-card-primary .contact-icon {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.contact-icon-vk {
  background: rgba(0, 119, 255, 0.1);
  color: #0077ff;
}

.contact-icon-max {
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: rgba(0, 167, 200, 0.12);
  color: var(--color-accent-deep);
}

.contact-card span:last-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.contact-card small {
  display: block;
  overflow-wrap: anywhere;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 650;
}

.contact-card-primary small {
  color: rgba(255,255,255,0.78);
}

@media (max-width: 1180px) {
  .contacts-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .contact-card {
    min-height: 88px;
  }
}

@media (max-width: 560px) {
  .contacts-panel {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-radius: 18px;
  }
}
/* ================================
   FIXED PREMIUM HEADER
================================ */

.site-header .header-inner {
  width: min(100% - 2 * var(--gutter-desktop), var(--container-wide));
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex: 0 0 auto;
}

.site-header .brand img {
  width: 148px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header .main-nav {
  position: static;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.6vw, 12px);
  min-width: 0;
  max-width: 100%;
  font-size: clamp(0.82rem, 0.72vw, 0.94rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.site-header .main-nav a {
  color: #1E2B3F;
  padding: 10px clamp(8px, 0.75vw, 13px);
  border-radius: 999px;
}

.site-header .main-nav a:hover {
  color: var(--color-primary);
  background: rgba(11, 95, 255, 0.08);
}

.site-header .main-nav .nav-cta-mobile {
  display: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 12px 7px 8px;

  color: #0F172A;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(217, 228, 238, 0.92);
  border-radius: 999px;

  font-size: 0.86rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.02em;

  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 220ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.header-contact:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
  border-color: rgba(11, 95, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.09),
    0 8px 20px rgba(11, 95, 255, 0.08);
}

.header-contact-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--color-primary);
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 167, 200, 0.22), transparent 56%),
    rgba(11, 95, 255, 0.08);
}

.header-contact-phone .header-contact-icon {
  color: #FFFFFF;
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 167, 200, 0.62), transparent 56%),
    linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  box-shadow: 0 8px 18px rgba(11, 95, 255, 0.22);
}

.header-contact-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.header-contact-text {
  display: inline-block;
  transform: translateY(-0.5px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;

  color: #FFFFFF;
  background: linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%);
  box-shadow: 0 16px 34px rgba(11, 95, 255, 0.25);

  font-size: 0.9rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;

  transition:
    transform 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.header-cta:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #084BD1 0%, #063A9E 100%);
  box-shadow: 0 20px 42px rgba(11, 95, 255, 0.32);
}

.site-header .nav-toggle {
  display: none;
}
/* =====================================================
   FINAL MOBILE HEADER FIX — DO NOT PLACE ANY HEADER CSS BELOW
===================================================== */

@media (max-width: 980px) {
  .site-header {
    overflow: visible;
  }

  .site-header .header-inner {
    width: calc(100% - 24px) !important;
    min-height: 64px !important;
    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .site-header .brand {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .site-header .brand img {
    width: 92px !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .header-right,
  .header-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    min-width: 0 !important;
    margin-left: auto !important;
  }

  .header-contacts {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    min-width: 0 !important;
  }

  .header-contact-email,
  .header-cta,
  .site-header .nav-cta,
  .main-nav .nav-cta {
    display: none !important;
  }

  .header-contact-phone {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;

    max-width: 148px !important;
    min-height: 36px !important;
    padding: 6px 9px 6px 6px !important;
    gap: 6px !important;

    border-radius: 999px !important;
    white-space: nowrap !important;
    overflow: hidden !important;

    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: -0.04em !important;
  }

  .header-contact-phone .header-contact-icon,
  .header-contact-icon {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }

  .header-contact-phone .header-contact-icon svg,
  .header-contact-icon svg {
    width: 13px !important;
    height: 13px !important;
  }

  .header-contact-phone .header-contact-text {
    display: inline-block !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  .site-header .nav-toggle {
    position: static !important;
    flex: 0 0 38px !important;

    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;

    display: inline-grid !important;
    place-items: center !important;

    opacity: 1 !important;
    pointer-events: auto !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 999px !important;
    font-size: 0 !important;
  }

  .site-header .nav-toggle::before {
    content: "☰" !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .site-header .main-nav {
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    top: 64px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    width: auto !important;
    max-width: none !important;

    background: #ffffff !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--shadow-lg) !important;

    padding: 10px !important;

    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-8px) !important;
  }

  .site-header .main-nav.is-open {
    max-height: 560px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .site-header .main-nav a {
    padding: 13px 14px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 390px) {
  .site-header .header-inner {
    width: calc(100% - 18px) !important;
    gap: 5px !important;
  }

  .site-header .brand img {
    width: 82px !important;
  }

  .header-contact-phone {
    max-width: 136px !important;
    padding-right: 7px !important;
    font-size: 11px !important;
  }

  .header-contact-phone .header-contact-icon,
  .header-contact-icon {
    width: 22px !important;
    height: 22px !important;
    flex-basis: 22px !important;
  }

  .site-header .nav-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    flex-basis: 36px !important;
  }
}
/* =====================================================
   POLICY PAGE HEADER FIX
   Отдельная шапка для policy.html, чтобы её не ломали стили главной
===================================================== */

.policy-page .policy-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(247, 250, 252, 0.92);
  border-bottom: 1px solid rgba(217, 228, 238, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.policy-page .policy-header .header-inner {
  width: min(100% - 80px, 1360px) !important;
  min-height: 92px !important;
  margin-inline: auto !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;

  grid-template-columns: none !important;
}

.policy-page .policy-header .brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

.policy-page .policy-header .brand img {
  width: 118px !important;
  height: auto !important;
  max-height: 54px !important;
  object-fit: contain !important;

  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.policy-page .policy-header .policy-nav,
.policy-page .policy-header .main-nav {
  position: static !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;

  gap: 12px !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  max-height: none !important;
  overflow: visible !important;

  white-space: nowrap !important;
}

.policy-page .policy-header .policy-nav a,
.policy-page .policy-header .main-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 44px !important;
  padding: 12px 18px !important;

  border-radius: 999px !important;

  color: #0F172A !important;
  background: transparent !important;

  font-size: 0.96rem !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  letter-spacing: -0.02em !important;

  box-shadow: none !important;
}

.policy-page .policy-header .policy-nav a:hover,
.policy-page .policy-header .main-nav a:hover {
  color: var(--color-primary) !important;
  background: rgba(11, 95, 255, 0.08) !important;
}

.policy-page .policy-header .policy-nav .nav-cta,
.policy-page .policy-header .main-nav .nav-cta,
.policy-page .policy-header .policy-nav a[href="index.html"],
.policy-page .policy-header .main-nav a[href="index.html"] {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0B5FFF 0%, #084BD1 100%) !important;
  box-shadow: 0 16px 36px rgba(11, 95, 255, 0.24) !important;
}

.policy-page .policy-header .policy-nav .nav-cta:hover,
.policy-page .policy-header .main-nav .nav-cta:hover,
.policy-page .policy-header .policy-nav a[href="index.html"]:hover,
.policy-page .policy-header .main-nav a[href="index.html"]:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #084BD1 0%, #063A9E 100%) !important;
}

.policy-page .policy-header .nav-toggle,
.policy-page .policy-header .header-actions,
.policy-page .policy-header .header-contact,
.policy-page .policy-header .header-contacts,
.policy-page .policy-header .header-cta {
  display: none !important;
}
@media (max-width: 760px) {
  .policy-page .policy-header .header-inner {
    width: calc(100% - 28px) !important;
    min-height: 68px !important;
    gap: 12px !important;
  }

  .policy-page .policy-header .brand img {
    width: 92px !important;
    max-height: 42px !important;
  }

  .policy-page .policy-header .policy-nav,
  .policy-page .policy-header .main-nav {
    gap: 6px !important;
  }

  .policy-page .policy-header .policy-nav a,
  .policy-page .policy-header .main-nav a {
    min-height: 38px !important;
    padding: 10px 12px !important;
    font-size: 0.78rem !important;
  }

  .policy-page .policy-header .policy-nav a[href="#lead-form"],
  .policy-page .policy-header .main-nav a[href="#lead-form"] {
    display: none !important;
  }
}

@media (max-width: 430px) {
  .policy-page .policy-header .header-inner {
    width: calc(100% - 20px) !important;
  }

  .policy-page .policy-header .brand img {
    width: 78px !important;
  }

  .policy-page .policy-header .policy-nav a,
  .policy-page .policy-header .main-nav a {
    padding: 9px 10px !important;
    font-size: 0.72rem !important;
  }
}
/* ==========================================================================
   ИСПРАВЛЕНИЯ ТОЛЬКО ДЛЯ СТРАНИЦЫ ПОЛИТИКИ И ШАПКИ
   ========================================================================== */

/* 1. АККУРАТНАЯ ИНТЕГРАЦИЯ ЛОГОТИПА И ВЫРАВНИВАНИЕ МЕНЮ В ШАПКЕ */
header, .nav-header, .navbar {
    display: flex !important;
    align-items: center !important; /* Выравнивает логотип и ссылки строго по одной линии */
    justify-content: space-between !important;
    padding: 15px 40px !important; /* Уменьшаем внутренние отступы для аккуратности */
}

/* Принудительно делаем логотип аккуратным, чтобы он не улетал вверх */
header img, .logo img, .nav-header img {
    height: 38px !important; /* Идеальная высота для B2B логотипа */
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Выравниваем ссылки в меню, чтобы они стояли ровно по центру относительно логотипа */
header nav, .nav-links {
    display: flex !important;
    align-items: center !important;
}


/* 2. РЕДИЗАЙН ШРИФТОВ СТРОГО НА СТРАНИЦЕ ПОЛИТИКИ (POLICY.HTML) */

/* Меняем уродливый шрифт в политике на чистый системный (как у Apple/Yandex) */
.policy-page, .policy-page body, .policy-page p, .policy-page h1, .policy-page h2, .policy-page h3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Уменьшаем гигантский заголовок политики */
.policy-page h1 {
    font-size: 34px !important; 
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #1A202C !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

/* Делаем красивую бирюзовую подсветку для тега "ПЕРСОНАЛЬНЫЕ ДАННЫЕ" */
.policy-page span.personal-data-tag, 
.policy-page .badge,
.policy-page span:first-of-type {
    display: inline-block !important;
    background-color: rgba(0, 167, 200, 0.08) !important; /* Нежный бирюзовый фон */
    color: #00A7C8 !important; /* Фирменный бирюзовый цвет текста */
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(0, 167, 200, 0.15) !important;
}

/* Уменьшаем обычный юридический текст, чтобы он не был конским */
.policy-page p, .policy-page li {
    font-size: 16px !important; /* Стандартный размер для документов */
    line-height: 1.6 !important; /* Добавляем воздух между строками */
    color: #4A5568 !important; /* Благородный темно-серый графит */
    margin-bottom: 14px !important;
    font-weight: 400 !important;
}

/* Подзаголовки разделов (например, 1. Общие положения) */
.policy-page h2, .policy-page h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1A202C !important;
    margin-top: 35px !important;
    margin-bottom: 15px !important;
}
