:root {
  /* Core palette */
  --bg: #f9f9f9;
  --bg-surface: rgba(9, 14, 28, 0.82);
  --bg-card: rgba(12, 18, 36, 0.78);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --primary: #63b3ff;
  --primary-dark: #3a7bd5;
  --accent: #8b5cf6;
  --border: rgba(148, 163, 184, 0.25);
  --glass: blur(12px) saturate(140%);
  --shadow-strong: 0 30px 80px rgba(3, 7, 18, 0.55);
  --gradient: radial-gradient(circle at 16% 18%, rgba(99, 179, 255, 0.28), transparent 50%),
    radial-gradient(circle at 82% 12%, rgba(139, 92, 246, 0.22), transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(15, 23, 42, 0.4), transparent 50%), var(--bg);

  /* Typography */
  --font-main: "Roboto Flex", system-ui, -apple-system, sans-serif;
  --font-alt: "PT Sans", "Roboto Flex", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --font-family-base: var(--font-main);

  /* Semantic colors */
  --color-surface: #091a23;
  --color-navy: #002941;
  --color-primary: #005dd7;
  --color-primary-light: #3d91ff;
  --color-accent: #8b5cf6;
  --color-accent-light: #a78bfa;
  --color-accent-tint: #3d91ff1f;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-text-main: #262323;
  --color-text-muted: #878fa5;
  --color-text-blue: #005dd7;
  --color-text-inverse: #ffffff;
  --color-gray-900: #111827;
  --color-gray-800: #1f2937;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e0e1e8;
  --color-gray-100: #ecedf1;
  --color-gray-50: var(--bg);
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-64: rgba(255, 255, 255, 0.64);
  --white-48: rgba(255, 255, 255, 0.48);
  --white-32: rgba(255, 255, 255, 0.32);
  --white-24: rgba(255, 255, 255, 0.24);
  --white-16: rgba(255, 255, 255, 0.16);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-8: rgba(255, 255, 255, 0.08);

  /* Spacing & radii */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --radius-sm: 4px;
  --radius-md: 14px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-pill: 999px;

  /* Layout alignment */
  --aligned-pad-desktop: max(12px, calc(80px - (100vw - min(1320px, 98vw)) / 2));
  --aligned-pad-mobile: max(12px, calc(20px - (100vw - min(1320px, 98vw)) / 2));

  /* Shadows & motion */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.18);
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Elevation tokens */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;

  /* Aliases */
  --color-primary-900: #091a23;
  --color-primary-800: #002941;
  --color-primary-600: #005dd7;
  --color-primary-400: #3d91ff;
  --color-surface-dark: #0b1530;
  --color-surface-soft: #111f42;
  --color-neutral-100: var(--bg);
  --color-neutral-200: #e0e1e8;
  --color-neutral-400: #878fa5;

  /* Hero overlay gradient */
  --gradient-hero-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.25) 12%,
    rgba(0, 0, 0, 0.23) 14%,
    rgba(0, 0, 0, 0.2) 16%,
    rgba(0, 0, 0, 0.16) 17%,
    rgba(0, 0, 0, 0.12) 18%,
    rgba(0, 0, 0, 0.08) 18.5%,
    rgba(0, 0, 0, 0.05) 19%,
    rgba(0, 0, 0, 0.03) 19.5%,
    rgba(0, 0, 0, 0.01) 19.75%,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0) 56%,
    rgba(0, 0, 0, 0.01) 57%,
    rgba(0, 0, 0, 0.03) 57.5%,
    rgba(0, 0, 0, 0.05) 58%,
    rgba(0, 0, 0, 0.08) 58.5%,
    rgba(0, 0, 0, 0.12) 59%,
    rgba(0, 0, 0, 0.16) 59.25%,
    rgba(0, 0, 0, 0.2) 59.5%,
    rgba(0, 0, 0, 0.25) 59.75%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.35) 60.5%,
    rgba(0, 0, 0, 0.4) 61%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {

  html,
  body {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Roboto Flex', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

/* === UI kit (migrated from ui-kit.css) === */
h1 {
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--color-text-main);
}

h2 {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--color-text-main);
}

h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-text-main);
}

.ui-body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.ui-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ui-btn {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  gap: 16px;
  min-height: 56px;
}

.ui-btn:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-primary-400);
  outline-offset: 2px;
}

.ui-btn--primary {
  background: linear-gradient(120deg, var(--color-primary-600), var(--color-primary-400));
  color: #0f172a;
  box-shadow: var(--shadow-strong);
}

.ui-btn--primary:hover {
  transform: translateY(-1px);
}

.ui-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.4px solid rgba(255, 255, 255, 0.8);
}

.ui-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Utility classes */

.ui-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-nav .ui-nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 10px;
  height: 40px;
  background: var(--color-surface);
  border-radius: 24px;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: 'Roboto Flex', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.ui-nav .ui-nav-link:hover,
.ui-nav .ui-nav-link:focus-visible {
  background: var(--color-surface-dark);
}

.ui-nav .ui-nav-link[aria-current="page"] {
  background: rgba(61, 145, 255, 0.28);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 93, 215, 0.25);
}

.ui-nav .ui-nav-cta,
.ui-nav-cta.header-cta,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  background: #ffffff !important;
  color: #4a5568;
  box-shadow: var(--shadow-strong);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.hidden-nav {
  display: none;
}

/* ===== FOOTER ===== */

/* ===== ICONS / ILLUSTRATIONS ===== */

/* ===== DIALOGS / POPUPS ===== */

/* ===== FORMS ===== */

.ui-flex {
  display: flex;
}

.ui-gap-4 {
  gap: var(--space-4);
}

.hero-actions-spacing {
  margin-top: var(--space-6);
}

/* ===== DARK THEME SUPPORT ===== */

.page {
  background: var(--bg);
}

.container {
  width: min(1320px, 98vw);
  margin: 0 auto;
}

.aligned-padding,
.container,
.problem-container,
.process-wrapper,
.use-cases-container,
.faq-container,
.features-overview-container,
.contact-block-container,
.pricing-container,
.downloads-container {
  padding-left: var(--aligned-pad-desktop);
  padding-right: var(--aligned-pad-desktop);
}

@media (max-width: 960px) {
  .aligned-padding,
  .container,
  .problem-container,
  .process-wrapper,
  .use-cases-container,
  .faq-container,
  .features-overview-container,
  .contact-block-container,
  .pricing-container,
  .downloads-container {
    padding-left: var(--aligned-pad-mobile);
    padding-right: var(--aligned-pad-mobile);
  }
}

.section {
  padding: 96px 0;
}

.section:first-of-type {
  padding-top: 128px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-title {
  /* Заголовки секций для простых страниц */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(99, 179, 255, 0.25);
  border: 2px solid #fff;
  border-radius: 40px;
  gap: 16px;
  padding: 12px 20px;
  min-height: 56px;
}

.btn-primary:hover {
  transform: none;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--primary);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  z-index: 40;
  background: transparent;
  border: none;
  backdrop-filter: none;
  min-height: 68px;
  box-shadow: none;
  pointer-events: none;
}

.header-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  z-index: 2;
  pointer-events: auto;
  padding-left: calc(196px + 32px);
}


.brand {
  position: absolute;
  left: 80px;
  top: 16px;
  z-index: 41;
}

@media (max-width: 960px) {
  .brand {
    left: 20px;
  }
}

.nav {
  grid-column: 2;
  justify-self: center;
}

.header-right {
  grid-column: 3;
  justify-self: end;
}

.brand img {
  position: absolute;
  width: 140px;
  height: 40px;
  max-width: none;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.nav a {
  font-weight: 600;
  color: #e9f1ff;
  padding: 10px 14px;
  position: relative;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 16px;
  border: none;
  outline: none;
  background: var(--color-surface-dark);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: var(--color-surface-soft);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
  outline: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #f2f5fb;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
  transform: translateY(-1px);
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  grid-column: 3;
  justify-self: end;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text);
}

.menu .burger,
.menu .burger::before,
.menu .burger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu .burger::before,
.menu .burger::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu .burger::before {
  top: -6px;
}

.menu .burger::after {
  top: 6px;
}

.site-header.open .menu .burger {
  background: transparent;
}

.site-header.open .menu .burger::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.open .menu .burger::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1400px) {
  .header-inner {
    gap: 12px;
    padding-left: calc(16px + 177px + 32px);
  }

  .brand img {
    height: 36px;
    width: auto;
  }

  .ui-nav {
    gap: 8px;
  }

  .ui-nav .ui-nav-link {
    padding: 10px 12px;
    font-size: 15px;
    height: 36px;
  }

  .header-right {
    gap: 8px;
  }

  .header-right .header-cta {
    padding: 10px 14px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  #main-nav {
    position: absolute;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(3, 7, 18, 0.95);
    padding: 20px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    display: none;
  }

  .site-header.open #main-nav {
    display: flex;
  }

  #main-nav a {
    display: flex;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    justify-content: center;
  }

  #main-nav .ui-nav-link {
    height: auto;
    min-height: 36px;
    padding: 8px 12px;
  }

  .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 18, 36, 0.7);
  color: #e2e8f0;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  display: inline-flex;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(12, 18, 36, 0.78);
  border: 1px solid rgba(99, 179, 255, 0.16);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.4);
}

.stat-card .label {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.stat-card .value {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #e2e8f0;
}

.hero-sub {
  display: block;
  min-height: auto;
  padding: 96px 0;
  position: relative;
  overflow: visible;
  max-width: none;
  margin: 0;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.85), rgba(7, 12, 28, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Hero backgrounds */
#hero-features {
  background: #040b1c;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

#hero-pricing {
  background: #020712;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

#hero-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('new/features-hero.jpg') right center/cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

#hero-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('pricing-hero.png') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

#hero-features::after {
  content: '';
  position: absolute;
  inset: 0;
  background:var(--gradient-hero-overlay);
  z-index: 1;
  pointer-events: none;
}

#hero-pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
  pointer-events: none;
}

.hero-intro {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(120px, 16vw, 180px) var(--space-6) clamp(32px, 8vw, 80px);
  display: grid;
  grid-auto-rows: min-content;
  gap: 0;
}

.hero-intro h1 {
  margin: 0;
  margin-top: 4px;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.12;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  align-self: flex-start;
}

.hero-intro .hero-title-break {
  display: inline;
}

@media (min-width: 1025px) {
  .hero-intro .hero-title-break {
    display: block;
  }
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.64);
  align-self: flex-start;
  height: auto;
  margin-bottom: 4px;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: #ffffff;
}

.breadcrumbs span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.86);
}

/* Align downloads/features hero content with logo */
#hero-downloads .hero-intro,
#hero-features .hero-intro,
#hero-pricing .hero-intro {
  padding-left: 80px;
}

@media (max-width: 960px) {

  #hero-downloads .hero-intro,
  #hero-features .hero-intro,
  #hero-pricing .hero-intro {
    padding-left: 20px;
  }
}

@media (max-width: 1024px) {
  #hero-features::before {
    background-position: center;
  }
}

@media (max-width: 720px) {
  .hero-intro {
    padding: 96px 16px 32px;
  }

  #hero-downloads .hero-intro,
  #hero-features .hero-intro,
  #hero-pricing .hero-intro {
    padding-left: 20px;
  }

  .hero-intro h1 {
    font-size: clamp(32px, 7vw, 46px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.hero-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0.65), rgba(5, 8, 18, 0.82));
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 32px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: none;
}

@media (max-height: 800px) {
  .hero-main {
    height: 100vh;
    padding: 20px 0 24px;
  }

  .hero-main.section:first-of-type {
    padding-top: 72px;
  }

  .hero-bg {
    height: 100%;
  }

  .hero-main .hero-content--center {
    padding-top: 32px;
  }

  .hero-content .lead {
    margin-bottom: 20px;
  }
}

/* 404 hero */
.hero-404 {
  height: auto;
  min-height: clamp(520px, 70vh, 820px);
  padding: 0;
  justify-content: center;
}

.hero-404 .hero-bg {
  height: 100%;
}

.hero-404 .hero-bg video {
  height: 100%;
}

.hero-404 .hero-intro {
  padding: clamp(140px, 18vw, 200px) var(--space-6) clamp(72px, 12vw, 120px);
  gap: 16px;
}

.hero-404-content {
  max-width: 720px;
}

.hero-404-code {
  margin: 0;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
}

.hero-404-text {
  margin: 0;
  max-width: 560px;
  color: var(--white-64);
  font-size: clamp(16px, 2vw, 18px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  width: 100%;
  height: 100vh;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08);
  pointer-events: none;
  display: block;
}

.hero-bg img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0;
  text-align: left;
  align-self: flex-start;
}

.hero-main .hero-content {
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.hero-content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 48px;
}

.hero-content--center h1 {
  text-align: left;
  align-self: flex-start;
}

.hero-subline {
  display: block;
  color: #ffffff;
}

.hero-content--center .lead {
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  display: flex;
  flex-flow: wrap;
  align-self: flex-start;
}

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

.hero-accent {
  color: var(--color-primary-400);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.text-primary {
  color: var(--color-primary);
}


.problem-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.problem-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e0e1e8;
  color: #878fa5;
  text-transform: none;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 0;
  align-self: flex-start;
}

.problem-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--color-text-main);
}

.problem-head .text-primary {
  color: #1d4ed8;
}

.problem-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 192px;
}

.problem-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ecf0f6;
}

.card h3 {
  order: 1;
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #1f2937;
}

.problem-card p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 15px;
  line-height: 1.55;
}

.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  order: 2;
}

.problem-icon svg,
.problem-icon img {
  width: 24px;
  height: 24px;
}

.problem-icon svg {
  stroke: var(--color-primary);
}

@media (max-width: 768px) {
  .problem-head {
    margin-bottom: 24px;
  }

  .problem-card {
    min-height: auto;
  }

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

.hero-content .lead {
  margin: 0 0 32px;
  color: #d4e4ff;
  font-size: 19px;
  max-width: 800px;
}


.hero-content--center .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  justify-content: flex-start;
  align-items: flex-start;
}

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

.hero-content--desired {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 48px) clamp(16px, 6vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-cta-outlined {
  border: 1.5px solid #ffffff;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px 3px 3px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.hero-cta-outlined .cta-arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid #ffffff;
  background: #ffffff;
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
  color: #000000;
}

.hero-cta-outlined:hover {
  background: #ffffff;
  color: #000000;
}

.hero-cta-outlined:active {
  transform: translateY(0);
}

.hero-main > .hero-inner {
  position: relative;
  color: white;
}

.hero-bullets {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  width: 100%;
}

.hero-bullets .bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #e8f1ff;
  max-width: 330px;
  line-height: 1.3;
}

.square {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  background-color: var(--color-text-blue);
  flex: 0 0 12px;
}

.hero-bullets--bar {
  width: 100%;
}

.bullet--right {
  text-align: left;
  margin-left: auto;
  max-width: 350px;
}

/* About */
.about-section {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: none;
  margin: clamp(32px, 5vw, 56px) 0;
  overflow: hidden;
  background: #050a18;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(61, 145, 255, 0.22), transparent 40%),
    radial-gradient(circle at 80% 12%, rgba(15, 23, 42, 0.48), transparent 42%),
    var(--gradient-hero-overlay);
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(140px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(36px, 6vw, 76px) clamp(28px, 6vw, 72px);
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-badge-wrapper {
  align-self: flex-start;
}

.about-content {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  color: #ffffff;
}

.about-heading {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
}

.about-accent {
  color: var(--color-primary-400);
}

.about-text {
  display: grid;
  gap: 12px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.6;
}

.about-text p {
  margin: 0;
}

.about-text .hero-cta-outlined {
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .hero-main {
    padding-top: 56px;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-main.section:first-of-type {
    padding-top: 56px;
  }

  .hero-bg {
    height: 100%;
  }

  .hero-main > .hero-inner {
    padding: 44px 12px 28px;
  }

  .hero-bullets {
    flex-wrap: wrap;
    gap: 16px 20px;
    margin-top: 12px;
  }

  .hero-bullets .bullet {
    flex: 1 1 260px;
    max-width: none;
  }

  .bullet--right {
    flex-basis: 100%;
    margin-left: 0;
  }

  .hero-content--center {
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: clamp(38px, 6.5vw, 60px);
    max-width: 800px;
    min-height: 0;
  }

  .hero-content .lead {
    margin: 0 0 20px;
    font-size: 17px;
  }

  .hero-actions {
    margin-bottom: 16px;
  }

  .hero-content--desired {
    padding: 32px 16px 28px;
    gap: 16px;
  }

  .about-section {
    width: 100%;
    margin: 32px auto;
    border-radius: 28px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: clamp(32px, 6vw, 56px) clamp(18px, 6vw, 42px);
  }

  .about-badge-wrapper {
    order: -1;
  }
}

@media (max-width: 720px) {
  .hero-main {
    padding-top: 64px;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-main.section:first-of-type {
    padding-top: 64px;
  }

  .hero-bg {
    height: 100%;
  }

  .hero-main > .hero-inner {
    padding: 40px 12px 24px;
  }

  .hero-content--center {
    padding-top: 10px;
  }

  .hero-content h1 {
    font-size: clamp(36px, 10vw, 56px);
    max-width: 100%;
    min-height: 120px;
  }

  .hero-content--desired {
    padding: 20px 16px 32px;
  }

  .hero-cta-outlined {
    width: 100%;
    justify-content: center;
  }

  .hero-bullets {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-bullets .bullet {
    max-width: none;
    flex: 0 0 auto;
  }

  .bullet--right {
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
  }

  .about-section {
    border-radius: 24px;
  }

  .about-text {
    font-size: 16px;
  }
}


.hero-visual {
  min-height: 360px;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(99, 179, 255, 0.2), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 179, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('new/network-pattern.jpg') center/cover;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hero-visual--secondary,
.hero-visual--pricing,
.hero-visual--downloads,
.hero-visual--contacts {
  background-size: cover;
  background-position: center;
}

.hero-visual--secondary {
  background-image: url('new/abstract-circle-wave-with-moving-dots-flow-particles-cyber-technology-illustration-3d-rendering.jpg');
}

.hero-visual--pricing {
  background-image: url('new/network-pattern.jpg');
}

.hero-visual--downloads {
  background-image: url('new/wave-pattern.jpg');
}

.hero-visual--contacts {
  background-image: url('new/2152020915-2.jpg');
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--primary);
}

/* Cards */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Process */
.process-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  width: min(1320px, 98vw);
  margin: 0 auto;
  padding: 48px 12px;
}

.process-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #0f172a;
}

.process-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.process-title {
  margin: 0;
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.1;
}

.process-copy p {
  margin: 0;
  color: #475569;
}

.process-copy p+p {
  margin-top: 10px;
}

.process-subtitle-illustration {
  width: 220px;
  max-width: 100%;
  display: block;
  margin: 4px 0 0;
  opacity: 0.95;
  align-self: center;
}

.process-subtitle-illustration .gear {
  transform-box: fill-box;
  transform-origin: center;
}

.gear-spin {
  animation: gear-spin 18s linear infinite;
}

.gear-spin-reverse {
  animation: gear-spin-reverse 22s linear infinite;
}

@keyframes gear-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gear-spin-reverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-scheme-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Scenario tabs */
.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.muted {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.scenario-tabs span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text-muted);
  font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.contact-intro p {
  color: var(--text-muted);
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(99, 179, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  padding: 32px;
  border-radius: 24px;
  background: rgba(8, 13, 31, 0.9);
  border: 1px solid rgba(99, 179, 255, 0.2);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact--secondary .contact-form {
  border-color: rgba(139, 92, 246, 0.25);
}

.contact--solo .contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}


.form-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form .form-field span {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.6);
  color: var(--text);
  font-size: 15px;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(99, 179, 255, 0.2);
}

.contact-form .form-checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form .inline-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.contact-form .inline-alert-error {
  background: rgba(190, 24, 93, 0.12);
  color: #fecdd3;
  border: 1px solid rgba(190, 24, 93, 0.4);
}

.contact-form .inline-alert-success {
  background: rgba(16, 185, 129, 0.12);
  color: #86efac;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.plan-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(11, 17, 32, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card--featured {
  border-color: rgba(99, 179, 255, 0.4);
  background: linear-gradient(140deg, rgba(99, 179, 255, 0.15), rgba(139, 92, 246, 0.18));
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.55);
}

.plan-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.plan-card h3 {
  margin: 0;
  font-size: 32px;
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  flex: 1;
}

.downloads .download-tabs {
  display: inline-flex;
  background: rgba(8, 13, 31, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.downloads .tab {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.downloads .tab[aria-selected="true"] {
  color: #0f172a;
  background: linear-gradient(120deg, var(--primary), var(--accent));
}

.download-panels {
  margin-top: 32px;
}

.download-panel {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 32px;
  background: rgba(8, 13, 31, 0.85);
  display: none;
}

.download-panel.active {
  display: block;
}

.download-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.subtab {
  border: 1px solid rgba(99, 179, 255, 0.4);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
}

.subtab:hover {
  border-color: var(--primary);
}

.download-content pre {
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  padding: 20px;
  color: var(--text);
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

  .hero-main {
    padding-top: 56px;
  }
}

@media (max-width: 1024px) and (max-height: 820px) {
  .hero-main {
    padding-top: 32px;
  }

  .hero-main.section:first-of-type {
    padding-top: 32px;
  }

  .hero-main > .hero-inner {
    padding: 32px 12px 20px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 5.8vw, 54px);
  }

  .hero-content .lead {
    margin: 0 0 16px;
    font-size: 16px;
  }

  .hero-actions {
    margin-bottom: 12px;
  }

  .hero-content--desired {
    padding: 24px 14px 20px;
    gap: 12px;
  }

  .hero-bullets {
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .hero-main {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.checksum-section {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checksum-hash {
  background: rgba(2, 6, 23, 0.8);
  padding: 8px 12px;
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.copy-btn {
  padding: 8px 14px;
  border-radius: 12px;
}

/* FAQ */
.accordion details {
  background: rgba(8, 13, 31, 0.8);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 20px 24px;
  margin-bottom: 16px;
  cursor: pointer;
}

.accordion summary {
  font-weight: 600;
  font-size: 18px;
  list-style: none;
  color: var(--text);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion details[open] summary {
  color: var(--primary);
}

.accordion p {
  margin: 16px 0 0;
  color: var(--text-muted);
}

/* Footer */
.footer-visual-section {
  padding: 32px 0 0;
}

.footer-visual-card {
  width: 100%;
  margin: 0;
  padding: 56px 64px 32px;
  border-radius: 0;
  background: linear-gradient(180deg, #004196 0%, #010b10 100%);
  box-shadow: none;
}

.footer-visual-content {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(200px, 1fr) minmax(200px, 1fr);
  gap: 48px;
  align-items: start;
}

.footer-visual-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-visual-logo {
  width: 168px;
  height: auto;
}

.footer-visual-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.55;
  max-width: 360px;
}

.footer-visual-heading {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-visual-links,
.footer-visual-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-visual-link {
  font-size: 16px;
  color: #ffffff;
  transition: color var(--transition-base);
}

.footer-visual-link:hover,
.footer-visual-link:focus-visible {
  color: rgba(255, 255, 255, 0.7);
}

.footer-visual-phone {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.footer-visual-email {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-visual-bottom-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-visual-bottom a {
  color: inherit;
}

.footer-visual-bottom a:hover,
.footer-visual-bottom a:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 64px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(2, 6, 23, 0.8);
}

.footer {
  /* Простой футер для privacy.html */
  text-align: center;
  padding: 20px;
  background: var(--color-gray-100);
  color: var(--color-gray-600);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 var(--space-4);
}

.footer-links a {
  color: var(--color-neutral-200);
}

.footer-cta p {
  color: var(--color-neutral-200);
  margin: 0 0 var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
}

.footer-cta p {
  color: var(--text-muted);
  margin: 0 0 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .process-wrapper {
    grid-template-columns: 1fr;
    padding: 36px 12px;
  }

  .process-heading {
    gap: 10px;
  }

  .process-subtitle-illustration {
    width: 180px;
  }


  .footer-visual-card {
    padding: 48px 36px 28px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .footer-visual-content {
    grid-template-columns: 1fr;
  }

  .footer-visual-description {
    max-width: none;
  }

  .footer-visual-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-visual-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .section:first-of-type {
    padding-top: 96px;
  }

  .footer-visual-card {
    border-radius: 0;
    box-shadow: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .header-inner {
    padding: 16px 16px;
    padding-left: calc(16px + 177px + 24px);
  }

  .brand {
    top: 16px;
  }

  .header-right .header-cta {
    display: none;
  }
}

/* --- Legacy components (modals, toast, support form) --- */
/* Reuse existing modal / toast styles from previous version */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#auth-modal,
#support-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#auth-modal {
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(8px);
}

#auth-modal.open {
  display: flex;
}

.auth-card {
  background: #0b1120;
  color: var(--text);
  padding: 32px;
  border-radius: 20px;
  width: min(480px, 92vw);
  border: 1px solid rgba(99, 179, 255, 0.2);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.6);
  overflow: hidden;
  transition: height var(--transition-slow);
}

@media (prefers-reduced-motion: reduce) {
  .auth-card {
    transition: none;
  }
}

.auth-tabs,
.auth-tab {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.auth-tabs button,
.auth-tab button {
  flex: 1 1 0;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  min-height: 0;
  min-width: 0;
  text-align: center;
}

.auth-tabs button.active,
.auth-tab button.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}


.auth-fields {
  display: grid;
  gap: 12px;
}

.auth-fields label {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

.auth-fields input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.6);
  color: var(--text);
}

.auth-actions,
.auth-action {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.auth-actions .btn,
.auth-action .btn {
  flex: 1;
  min-width: 0;
}

#auth-error {
  background: rgba(190, 24, 93, 0.2);
  border: 1px solid rgba(190, 24, 93, 0.4);
  color: #fecdd3;
  padding: 10px 14px;
  border-radius: 12px;
}

#auth-error:empty {
  display: none;
}

button.btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text);
  padding: 10px 18px;
}

button.btn.primary {
  border-color: transparent;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #0f172a;
}

#nav-dashboard,
#nav-logout {
  display: none;
}

#support-modal {
  background: rgba(5, 10, 25, 0.85);
  backdrop-filter: blur(24px);
  padding: 32px;
}

#support-modal.open {
  display: flex;
}

.support-card {
  width: min(600px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  background: rgba(5, 10, 25, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(99, 179, 255, 0.25);
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.7);
  padding: 32px;
  color: var(--text);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.modal-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin: 0;
  font-size: 12px;
}

.modal-heading h3 {
  margin: 0;
}

.modal-subtitle {
  margin: 0;
  color: var(--text-muted);
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(71, 85, 105, 0.8);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.form-hint {
  font-size: 14px;
  color: var(--color-gray-500);
  margin-top: var(--space-1);
}

.required {
  color: var(--color-error);
}

.required::after {
  content: '*';
}

.file-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px dashed rgba(96, 165, 250, 0.4);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.7);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.file-input input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-input-icon {
  font-size: 20px;
  opacity: 0.85;
}

.file-input-text {
  color: rgba(203, 213, 225, 0.92);
  font-size: 14px;
}

.file-input:hover {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(15, 23, 42, 0.85);
}

.file-list {
  margin-top: 10px;
  max-height: 140px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(30, 41, 59, 0.9);
  border-radius: 8px;
  font-size: 13px;
}

.file-name {
  flex: 1;
  margin-right: 10px;
  word-break: break-word;
  color: #e2e8f0;
}

.file-size {
  color: rgba(148, 163, 184, 0.9);
  margin-right: 10px;
}

.file-remove {
  color: #fb7185;
  cursor: pointer;
  padding: 2px;
  transition: opacity 0.2s ease;
}

.file-remove:hover {
  opacity: 0.75;
}

.support-alert {
  display: none;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.support-alert-error {
  background: rgba(127, 29, 29, 0.88);
  border: 1px solid rgba(190, 18, 60, 0.6);
  color: #fecaca;
}

.support-alert-success {
  background: rgba(22, 101, 52, 0.88);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #bbf7d0;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
  justify-content: flex-end;
}

.form-actions .btn.primary {
  order: 2;
}

.form-actions .btn.ghost {
  order: 1;
}

.btn.ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.4);
  color: rgba(203, 213, 225, 0.9);
}

.btn.ghost:hover {
  background: rgba(74, 85, 104, 0.22);
}

.loading {
  display: none;
  font-size: 14px;
  color: rgba(203, 213, 225, 0.85);
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(22, 101, 52, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 12px;
  padding: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #bbf7d0;
  font-size: 14px;
  font-weight: 500;
}

.toast-icon {
  font-size: 16px;
  font-weight: bold;
  color: #4ade80;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
}

.toast {
  max-width: calc(100vw - 40px);
}

/* ===== USE CASES SECTION ===== */
.use-cases-section {
  background: var(--color-gray-50);
  padding: 80px 0;
}


.use-cases-header {
  display: grid;
  grid-template-columns: minmax(0, 500px) 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.use-cases-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.use-cases-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--color-text-main);
}

.use-cases-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.use-cases-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.tabs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: min(100%, 560px);
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-gray-200);
  background: #ffffff;
  color: var(--color-text-main);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tab-btn.active {
  background: linear-gradient(135deg, #013f8d 0%, #013050 100%);
  border-color: #013f8d;
  color: #ffffff;
}

.use-cases-grid {
  position: relative;
}

.use-case-panel .card {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  row-gap: 14px;
  padding: 20px 20px 18px;
  height: 100%;
}

.use-case-panel .use-case-icon {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.use-case-panel .use-case-icon img {
  width: 26px;
  height: 26px;
}

.use-case-panel .card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-text-main);
  align-self: center;
}

.use-case-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.use-case-panel.active {
  display: grid;
}

.use-case-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.use-case-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.use-case-panel .use-case-list {
  grid-column: 1 / 3;
  grid-row: 2;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}

.use-case-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 1px;
}

.use-case-list li strong {
  color: var(--color-text-main);
  font-weight: 500;
}

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

@media (max-width: 960px) {
  .use-cases-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-cases-tabs {
    align-items: stretch;
  }

  .tabs-row {
    max-width: none;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .use-case-panel {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #support-modal {
    padding: 24px 14px;
  }

  .support-card {
    padding: 26px 20px;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions button {
    width: 100%;
  }

  .toast {
    top: 70px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* ===== CONTACT BLOCK (Support CTA) ===== */
.contact-block-section {
  padding: 96px 0 120px;
}

.contact-block-container {
  width: min(1760px, 98vw);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
  position: relative;
  flex-wrap: nowrap;
}

.contact-info-card,
.contact-form-card {
  border-radius: 24px;
  min-height: 568px;
  position: relative;
  overflow: hidden;
}

.contact-info-card {
  flex: 1;
  max-width: 870px;
}

.contact-info-content {
  position: absolute;
  inset: 72px 72px auto 72px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: space-between;
  max-width: 726px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-text h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #262323;
}

.contact-info-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #878fa5;
  max-width: 420px;
}

.contact-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-round {
  width: 56px;
  height: 56px;
  border-radius: 56px;
  border: none;
  background: #005dd7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 28px rgba(0, 93, 215, 0.25);
}

.social-round:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 93, 215, 0.28);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.contact-wave-bg {
  position: absolute;
  inset: auto 0 0 0;
  height: 384px;
  background: url('/landing-assets/new/wave-pattern.jpg') center/cover no-repeat;
  opacity: 0.32;
  mix-blend-mode: darken;
  transform: scaleX(-1);
}

.contact-form-card {
  flex: 1;
  max-width: 870px;
  background: linear-gradient(115.23deg, #004196 6.48%, #002c42 100%);
  padding: 72px;
  display: flex;
}

.contact-form-inner {
  width: 100%;
  max-width: 726px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
}

.contact-input-row {
  display: flex;
  gap: 16px;
}

.contact-input,
.contact-textarea {
  display: flex;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px 4px 4px 20px;
  align-items: center;
}

.contact-input input,
.contact-textarea textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Roboto Flex', system-ui, -apple-system, sans-serif;
}

.contact-input input::placeholder,
.contact-textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.contact-input input:focus,
.contact-textarea textarea:focus {
  outline: none;
}

.contact-input {
  min-height: 56px;
}

.contact-input-full {
  width: 100%;
}

.contact-textarea {
  min-height: 132px;
  padding-top: 16px;
  align-items: flex-start;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #878fa5;
  font-size: 16px;
  line-height: 1.2;
}

.contact-checkbox input {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  appearance: none;
  cursor: pointer;
  position: relative;
}

.contact-checkbox input:checked {
  background: #005dd7;
  border-color: #005dd7;
}

.contact-checkbox input:checked::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: #ffffff;
  border-radius: 2px;
}

.contact-submit {
  margin-top: 4px;
  width: 100%;
  min-height: 56px;
  border-radius: 40px;
  border: none;
  background: #ffffff;
  color: #262323;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.contact-submit:active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .contact-block-container {
    flex-direction: column;
    padding-left: var(--aligned-pad-mobile);
    padding-right: var(--aligned-pad-mobile);
  }

  .contact-info-card,
  .contact-form-card {
    max-width: none;
  }

  .contact-info-content {
    inset: 48px 36px auto 36px;
    gap: 32px;
  }

  .contact-info-text h2 {
    font-size: clamp(40px, 6vw, 52px);
  }

  .contact-form-card {
    padding: 56px 42px;
  }

  .contact-input-row {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .contact-block-section {
    padding: 72px 0 96px;
  }

  .contact-info-content {
    inset: 32px 24px auto 24px;
  }

  .contact-form-card {
    padding: 40px 24px;
  }

  .contact-form-inner {
    gap: 14px;
  }

  .contact-checkbox {
    align-items: flex-start;
  }
}

/* ===== FAQ BLOCK ===== */
.faq-section {
  background: #f7f8fb;
  padding: 110px 0 120px;
}

.faq-container {
  width: min(1320px, 98vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.faq-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e0e1e8;
  color: #878fa5;
  text-transform: none;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 0;
  align-self: flex-start;
}

.faq-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: #0f172a;
}

.faq-title-highlight {
  color: #1d4ed8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  background: transparent;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
}

.faq-question {
  flex: 1;
  text-align: left;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #1d4ed8;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: #0051c3;
}

.faq-body {
  padding: 0 20px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.24s ease, opacity 0.18s ease;
  will-change: max-height;
  cursor: default;
}

.faq-item.open .faq-body {
  padding: 0 20px 18px;
  opacity: 1;
}

.faq-body p {
  margin: 0 0 10px;
}

.faq-answer-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.faq-answer-list li {
  color: #4b5563;
}

.faq-samples {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 18px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.45;
}

.faq-sample-line {
  white-space: nowrap;
}

@media (max-width: 960px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-section {
    padding: 88px 0 96px;
  }
}

@media (max-width: 720px) {
  .faq-item {
    font-size: 16px;
    padding: 16px;
  }

  .faq-title {
    font-size: 32px;
  }
}

/* ===== FEATURES PAGE ===== */
.features-overview {
  background: #f5f7fb;
}


.features-overview-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 40px;
}

.features-overview-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-text-main);
}

.features-overview-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.features-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(61, 145, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-text-main);
}

.feature-card p {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 15px;
  line-height: 1.6;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--color-gray-600);
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li {
  margin: 0;
}


/* ===== PRICING PAGE ===== */
#hero-pricing+.pricing-section {
  background: #f9f9f9;
}

.pricing-section {
  background: #f9f9f9;
}


.pricing-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.pricing-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--color-text-main);
}

.plan-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e0e1e8;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.plan-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-gray-600);
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
}

.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #005dd7;
}

.pricing-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 7px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.plan-card--featured {
  background: linear-gradient(180deg, #0a3f85 0%, #0a63c7 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(4, 26, 66, 0.35);
}

.plan-card--featured h3 {
  color: #ffffff;
}

.plan-card--featured .pricing-list {
  color: rgba(255, 255, 255, 0.82);
}

.plan-card--featured .pricing-list li::before {
  background: #3d91ff;
}

.pricing-cta {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #3d91ff;
  color: #005dd7;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-cta--outline:hover {
  background: #005dd7;
  color: #ffffff;
  border-color: #005dd7;
}

.pricing-cta--featured {
  background: #ffffff;
  color: #0a3f85;
  border-color: #ffffff;
}

.pricing-cta--featured:hover {
  background: #e6f0ff;
  color: #0a3f85;
  border-color: #e6f0ff;
}

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

@media (max-width: 720px) {
  .plan-card {
    padding: 24px;
  }

  .pricing-heading h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .pricing-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ===== DOWNLOADS PAGE ===== */
#hero-downloads {
  background: #020712;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

#hero-downloads::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('new/downloads-hero.jpg') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
  opacity: 1;
}

#hero-downloads::after {
  content: '';
  position: absolute;
  inset: 0;
  background:var(--gradient-hero-overlay);
  z-index: 1;
  pointer-events: none;
}

.downloads {
  background: #f9f9f9;
}


.downloads-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.downloads-heading-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.downloads-heading-text h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--color-text-main);
}

.downloads-heading-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.download-list {
  display: grid;
  gap: 16px;
}

.download-item {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.download-item:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.download-header {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.download-header:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.download-os-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 93, 215, 0.12);
  color: #005dd7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-os-icon svg {
  width: 22px;
  height: 22px;
}

.download-os-label {
  font-size: 20px;
  font-weight: 500;
  color: #262323;
}

.download-toggle {
  margin-left: auto;
  width: 36px;
  height: 36px;
  background: #1d4ed8;
  border-radius: 12px;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.download-item.open .download-toggle {
  background: #0051c3;
}

.download-body {
  border-top: 1px solid transparent;
  padding: 0 32px;
  display: grid;
  gap: 20px;
  background: #ffffff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.24s ease, opacity 0.18s ease;
  will-change: max-height;
}

.download-body[hidden] {
  display: none;
}

.download-item.open .download-body {
  padding: 24px 32px 32px;
  border-top-color: #e5e7eb;
  opacity: 1;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.download-btn {
  min-height: 48px;
  gap: 8px;
}

.download-btn-label {
  font-weight: 600;
}

.download-checksum {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}

.download-checksum:hover {
  color: var(--color-primary-400);
}

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

.download-command {
  margin: 0;
}

.download-copy {
  align-self: flex-start;
}

.download-body .subtab.active,
.download-body .subtab[aria-pressed="true"] {
  color: #0f172a;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  border-color: transparent;
}

@media (max-width: 1024px) {
  #hero-downloads::before {
    background-position: center;
  }
}

@media (max-width: 960px) {
  .downloads-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .features-overview-header {
    margin-bottom: 32px;
  }

  .feature-card {
    padding: 20px;
  }
}

@media (max-width: 720px) {

  #hero-downloads,
  #hero-pricing {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .download-header,
  .download-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .downloads-heading-text p {
    font-size: 16px;
  }
}