:root {
  --bg: #050813;
  --bg-soft: #0d1630;
  --bg-elevated: rgba(17, 24, 39, 0.72);
  --fg: #f8fafc;
  --muted: #94a3b8;
  --muted-soft: rgba(226, 232, 240, 0.72);
  --brand: #2563eb;
  --brand-soft: #60a5fa;
  --accent: #0ea5e9;
  --border: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.1);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--fg);
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(14, 165, 233, 0.15), transparent 24%),
    linear-gradient(180deg, #040812 0%, #09101f 45%, #050813 100%);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
header,
footer {
  max-width: 100%;
}

.pointer-spotlight {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.24) 0%, rgba(96, 165, 250, 0.08) 28%, transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 8, 19, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mobile-nav-backdrop {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(37, 99, 235, 0.22));
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: Montserrat, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d1d5db;
}

.main-nav a:hover {
  color: #fff;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 19, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  align-items: center;
  gap: 0.7rem;
  backdrop-filter: blur(12px);
}

.menu-toggle__icon {
  width: 20px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle__text {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.flash {
  margin-top: 1rem;
  margin-bottom: 0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.flash.ok {
  background: rgba(22, 163, 74, 0.15);
}

.flash.error {
  background: rgba(220, 38, 38, 0.16);
}

.flash.is-hidden {
  display: none;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.form-popup[hidden] {
  display: none !important;
}

.form-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 17, 0.7);
  backdrop-filter: blur(12px);
}

.form-popup__panel {
  position: relative;
  width: min(100%, 480px);
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(7, 12, 24, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}

.form-popup.is-visible .form-popup__panel {
  transform: translateY(0) scale(1);
}

.form-popup__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.form-popup__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #bbf7d0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-popup__badge.is-error {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.form-popup__badge.is-info {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.24);
  color: #bfdbfe;
}

.form-popup__title {
  margin-bottom: 0.7rem;
}

.form-popup__message {
  margin: 0;
  color: #d7e2f2;
  line-height: 1.8;
}

.form-popup__meta {
  margin: 1rem 0 0.65rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.86rem;
}

.form-popup__progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.form-popup__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform-origin: left center;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: #040812;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  animation: pulseGlow 4s ease-in-out infinite;
}

.preloader__content {
  position: relative;
  z-index: 2;
  width: min(460px, 88vw);
  text-align: center;
}

.preloader__logo {
  width: 112px;
  margin: 0 auto 1.2rem;
}

.preloader__eyebrow,
.preloader__title {
  margin: 0;
}

.preloader__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--brand-soft);
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
}

.preloader__title {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.preloader__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preloader__progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.65);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(5, 8, 19, 0.58), rgba(5, 8, 19, 0.9)),
    url("../images/bgcover.jpg");
  background-size: cover;
  background-position: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.65);
  animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) { top: 12%; left: 12%; animation-duration: 14s; }
.hero-particles span:nth-child(2) { top: 24%; left: 72%; animation-duration: 19s; width: 4px; height: 4px; }
.hero-particles span:nth-child(3) { top: 48%; left: 18%; animation-duration: 16s; }
.hero-particles span:nth-child(4) { top: 64%; left: 82%; animation-duration: 13s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 78%; left: 48%; animation-duration: 18s; }
.hero-particles span:nth-child(6) { top: 22%; left: 54%; animation-duration: 15s; width: 3px; height: 3px; }
.hero-particles span:nth-child(7) { top: 82%; left: 14%; animation-duration: 21s; width: 4px; height: 4px; }
.hero-particles span:nth-child(8) { top: 38%; left: 90%; animation-duration: 17s; }

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: center;
  padding: 7rem 0 5rem;
}

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

.hero-copy {
  max-width: 680px;
  color: var(--muted-soft);
  font-size: 1.05rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  margin-bottom: 1rem;
}

.hero-badge__logo {
  width: 32px;
}

.hero-badge span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e2e8f0;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.1;
  font-family: Montserrat, Inter, sans-serif;
  margin: 0.2rem 0 1rem;
  max-width: 10ch;
  text-wrap: balance;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #60a5fa;
  font-size: 0.74rem;
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-metrics div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.hero-metrics span {
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  transform-style: preserve-3d;
}

.hero-panel__inner {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.ticker-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0.95rem 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: #dbeafe;
  animation: tickerMove 28s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-shrink: 0;
  min-width: max-content;
}

.ticker-track span {
  position: relative;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  position: absolute;
  right: -1.45rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-soft);
  transform: translateY(-50%);
}

.panel-label {
  margin: 0 0 1.2rem;
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

.panel-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.panel-stat__value {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  font-family: Montserrat, Inter, sans-serif;
}

.panel-stat__label {
  color: var(--muted-soft);
}

.panel-chart {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  min-height: 120px;
  margin-bottom: 1.4rem;
}

.panel-chart span {
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.95), rgba(37, 99, 235, 0.18));
  animation: chartFloat 3s ease-in-out infinite;
}

.panel-chart span:nth-child(1) { height: 42%; animation-delay: 0s; }
.panel-chart span:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.panel-chart span:nth-child(3) { height: 82%; animation-delay: 0.4s; }
.panel-chart span:nth-child(4) { height: 58%; animation-delay: 0.6s; }
.panel-chart span:nth-child(5) { height: 94%; animation-delay: 0.8s; }

.panel-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted-soft);
}

.panel-list li + li {
  margin-top: 0.45rem;
}

.hero-grid,
.hero-orb,
.hero-overlay {
  position: absolute;
}

.hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 78%);
  opacity: 0.25;
}

.hero-orb {
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb--one {
  width: 320px;
  height: 320px;
  background: rgba(37, 99, 235, 0.28);
  top: 12%;
  left: -4%;
}

.hero-orb--two {
  width: 360px;
  height: 360px;
  background: rgba(14, 165, 233, 0.18);
  right: 6%;
  top: 18%;
  animation-delay: -4s;
}

.hero-orb--three {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
  right: 28%;
  bottom: 8%;
  animation-delay: -7s;
}

.hero-overlay {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 19, 0.88) 0%, rgba(5, 8, 19, 0.66) 44%, rgba(5, 8, 19, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 8, 19, 0.08), rgba(5, 8, 19, 0.7));
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.9rem 1.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.4);
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section h2 {
  margin-top: 0.4rem;
  margin-bottom: 1.5rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
}

.section-light {
  background: #f8fafc;
  color: #0f172a;
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(10, 15, 28, 0));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.stats-grid h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #93c5fd;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 1.4rem;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.16), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card__eyebrow {
  margin: 0 0 auto;
  color: var(--brand-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.stat-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 0.4rem 0 0.65rem;
  color: #f8fbff;
  font-family: Montserrat, Inter, sans-serif;
}

.stat-card__label {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.stat-card__glow {
  position: absolute;
  top: -18%;
  right: -10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 68%);
  filter: blur(8px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.stat-card__orbit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.02);
}

.stat-card__orbit::before,
.stat-card__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.stat-card__orbit::before {
  inset: 9px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  animation: orbitSpin 9s linear infinite;
}

.stat-card__orbit::after {
  width: 10px;
  height: 10px;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-soft), var(--accent));
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.55);
  animation: orbitDot 9s linear infinite;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

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

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

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

.card,
.quote-card,
.plan {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  transform-style: preserve-3d;
}

.card:hover,
.quote-card:hover,
.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.34);
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 35%, transparent 65%, rgba(96, 165, 250, 0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

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

.card-kicker {
  display: inline-block;
  color: var(--brand-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.lux-banner {
  margin-top: 1.4rem;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.04));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.section--compact {
  padding: 2.2rem 0 1.2rem;
}

.top-message {
  position: relative;
  z-index: 2;
}

.top-message__card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  padding: 1.6rem;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 30%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top-message__copy h2,
.top-message__cta h3 {
  margin-bottom: 0.85rem;
}

.top-message__lead,
.top-message__cta p {
  margin: 0;
  color: #d7e2f2;
  line-height: 1.8;
}

.top-message__cta {
  display: grid;
  align-content: center;
  gap: 0.95rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 24, 0.5);
}

.top-message__cta .btn {
  width: fit-content;
}

.equipment-grid {
  gap: 1.4rem;
}

.equipment-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 30%);
}

.equipment-card__visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(6, 10, 22, 0.38), rgba(6, 10, 22, 0.05));
}

.equipment-card__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.36;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

.equipment-card__body {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
}

.equipment-card__tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #dbeafe;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.equipment-card h3 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-family: Montserrat, Inter, sans-serif;
}

.equipment-card p {
  margin: 0 0 1rem;
  color: var(--muted-soft);
}

.equipment-card__meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.equipment-card__meta span {
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  color: #e2e8f0;
}

.equipment-card__display {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  z-index: 2;
  min-width: 118px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(7, 12, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.equipment-card__display-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.equipment-card__display strong {
  font-size: 1.45rem;
  color: #fff;
}

.equipment-card__icon {
  position: absolute;
  top: 2rem;
  right: 1.8rem;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.equipment-card__icon::before,
.equipment-card__icon::after {
  content: "";
  position: absolute;
}

.equipment-card--reefer .equipment-card__icon {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.22), rgba(255, 255, 255, 0.05));
}

.equipment-card__icon--snow::before,
.equipment-card__icon--snow::after {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 2px;
  background: #dbeafe;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px rgba(191, 219, 254, 0.45);
}

.equipment-card__icon--snow::after {
  transform: translate(-50%, -50%) rotate(60deg);
}

.equipment-card__icon--snow {
  overflow: hidden;
}

.equipment-card__icon--snow span {
  display: none;
}

.equipment-card--reefer .equipment-card__icon::after {
  transform: translate(-50%, -50%) rotate(120deg);
}

.equipment-card__pulse {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(191, 219, 254, 0.28);
  animation: equipmentPulse 3s ease-out infinite;
}

.equipment-card__pulse--one {
  width: 120px;
  height: 120px;
  top: 1.4rem;
  right: 1.2rem;
}

.equipment-card__pulse--two {
  width: 170px;
  height: 170px;
  top: -0.2rem;
  right: -0.2rem;
  animation-delay: 1s;
}

.equipment-card--flatbed .equipment-card__icon {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.2), rgba(255, 255, 255, 0.04));
}

.equipment-card__icon--deck::before {
  left: 16px;
  right: 16px;
  bottom: 28px;
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fdba74, #f97316);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.34);
}

.equipment-card__icon--deck::after {
  left: 22px;
  right: 22px;
  bottom: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 12px 0 rgba(255, 255, 255, 0.35),
    0 24px 0 rgba(255, 255, 255, 0.18);
}

.equipment-card__beam {
  position: absolute;
  inset: auto;
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.9), transparent);
  animation: beamSweep 4s linear infinite;
}

.equipment-card__beam--one {
  top: 64px;
  left: -30px;
}

.equipment-card__beam--two {
  top: 104px;
  left: 40px;
  animation-delay: 1.4s;
}

.equipment-card--dryvan .equipment-card__icon {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.18), rgba(255, 255, 255, 0.04));
}

.equipment-card__icon--van::before {
  left: 18px;
  top: 26px;
  width: 72px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.equipment-card__icon--van::after {
  left: 26px;
  top: 42px;
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 10px 0 rgba(255, 255, 255, 0.45),
    0 20px 0 rgba(255, 255, 255, 0.22);
}

.equipment-card__route {
  position: absolute;
  right: 28px;
  bottom: 42px;
  width: 120px;
  height: 50px;
  border-bottom: 2px dashed rgba(74, 222, 128, 0.55);
  border-left: 2px dashed rgba(74, 222, 128, 0.4);
  border-bottom-left-radius: 28px;
  opacity: 0.8;
}

.equipment-card__route-dot {
  position: absolute;
  right: 136px;
  bottom: 84px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.5);
  animation: routeBlink 2.2s ease-in-out infinite;
}

.card h3,
.plan h3 {
  margin-top: 0;
}

.plan-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.plan.featured {
  border-color: rgba(59, 130, 246, 0.45);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.2);
}

.plan::after {
  content: "";
  position: absolute;
  right: -3.5rem;
  bottom: -4rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.18), transparent 65%);
  filter: blur(18px);
  pointer-events: none;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.plan-tag,
.quote-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 0.36rem 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #dbeafe;
}

.plan-price {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.plan-price--featured {
  color: #bfdbfe;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #1d4ed8;
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.6rem;
}

.plan-copy {
  margin: 0 0 1.4rem;
  color: var(--muted-soft);
  max-width: 42ch;
}

.plan-features {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e5eefc;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-features li span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft), var(--accent));
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
  flex: 0 0 auto;
}

.plan-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-footer p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.09);
}

.quote-card blockquote {
  margin: 0 0 1.4rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.quote-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.quote-badge {
  color: #1e3a8a;
  border-color: rgba(59, 130, 246, 0.16);
  background: rgba(59, 130, 246, 0.06);
}

.quote-rating {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.author {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
}

.author span {
  display: block;
  font-weight: 400;
  color: #64748b;
  margin-top: 0.2rem;
}

.narrow {
  max-width: 860px;
}

.faq-list {
  border-top: 1px solid #e2e8f0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.03rem;
  font-weight: 600;
  cursor: pointer;
  padding: 1rem 0;
  color: #0f172a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-form .btn {
  display: flex;
  width: 100%;
  margin-top: 1rem;
}

.contact-form .btn:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.82rem;
  font: inherit;
  background: rgba(7, 12, 24, 0.82);
  color: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.full {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.muted {
  color: var(--muted);
}

.contact-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-steps div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 700;
}

.contact-steps p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 0 1.5rem;
}

.legal-hero {
  position: relative;
  padding: 9rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 35%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 19, 0.98), rgba(8, 14, 29, 0.94));
}

.legal-hero__inner {
  max-width: 760px;
}

.legal-hero h1 {
  margin-bottom: 1rem;
}

.legal-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #d7e2f2;
}

.legal-updated {
  margin-top: 1rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-section {
  padding-top: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
}

.legal-sidebar__card,
.legal-content {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-sidebar__card {
  display: grid;
  gap: 0.85rem;
  padding: 1.3rem;
}

.legal-sidebar__card h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.legal-sidebar__card a {
  color: #dbeafe;
  text-decoration: none;
  padding: 0.72rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.legal-sidebar__card a:hover,
.legal-sidebar__card a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.12);
}

.legal-content {
  padding: 1.8rem;
}

.legal-block + .legal-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block h2 {
  margin-bottom: 0.95rem;
  font-size: clamp(1.18rem, 1rem + 0.4vw, 1.5rem);
}

.legal-block p,
.legal-block li {
  color: #d8e3f2;
  line-height: 1.85;
}

.legal-block ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-block a {
  color: #7dd3fc;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal[data-reveal="left"] {
  transform: translateX(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitDot {
  from { transform: translateX(-50%) rotate(0deg) translateY(-18px) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg) translateY(-18px) rotate(-360deg); }
}

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 18px, 0) scale(0.92);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -34px, 0) scale(1.08);
    opacity: 0;
  }
}

@keyframes equipmentPulse {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }
  35% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@keyframes beamSweep {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(120px);
    opacity: 0;
  }
}

@keyframes routeBlink {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -24px, 0) scale(1.06); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes chartFloat {
  0%, 100% { transform: scaleY(1); opacity: 0.88; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@media (max-width: 980px) {
  html,
  body,
  .site-shell,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .pointer-spotlight,
  .hero-particles,
  .hero-grid {
    display: none;
  }
  .container {
    width: min(94%, 1120px);
  }
  .site-header {
    background: rgba(5, 8, 19, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.is-scrolled {
    background: rgba(5, 8, 19, 0.98);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 12px;
    right: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(5, 8, 19, 0.96);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(22px);
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .main-nav a::after {
    content: "↗";
    font-size: 0.9rem;
    color: var(--brand-soft);
  }
  .main-nav a:hover,
  .main-nav a:active {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.22);
  }
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 7;
  }
  .nav-wrap {
    position: relative;
    min-height: 74px;
    padding: 0.35rem 0;
  }
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 6, 14, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 5;
  }
  .mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .brand-logo {
    width: 48px;
  }
  .brand-text strong {
    font-size: 0.96rem;
  }
  .brand-text small {
    letter-spacing: 0.16em;
    font-size: 0.58rem;
  }
  .cards-grid.three,
  .cards-grid,
  .cards-grid.two,
  .plan-grid,
  .contact-layout,
  .top-message__card,
  .footer-grid,
  .stats-grid,
  .form-grid,
  .hero-layout,
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .lux-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
  }
  .ticker-track {
    gap: 1.8rem;
    font-size: 0.7rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
  }
  .legal-content,
  .legal-sidebar__card {
    padding: 1.2rem;
    border-radius: 22px;
  }
  .section--compact {
    padding: 1.8rem 0 1rem;
  }
  .hero {
    min-height: auto;
    background-position: 62% center;
    overflow: clip;
  }
  .hero-layout {
    gap: 1.3rem;
    padding-top: 5.2rem;
    padding-bottom: 3.8rem;
  }
  .hero-content,
  .hero-panel {
    max-width: 100%;
  }
  .hero-badge {
    width: 100%;
    justify-content: center;
  }
  .hero-badge span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 4rem);
  }
  .hero-copy {
    font-size: 0.98rem;
  }
  .hero-metrics {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .hero-metrics div {
    padding: 0.95rem;
  }
  .hero-panel__inner {
    padding: 1.2rem;
    border-radius: 22px;
  }
  .panel-chart {
    min-height: 88px;
  }
  .section {
    padding: 4.3rem 0;
  }
  .section .eyebrow {
    margin-bottom: 0.55rem;
  }
  .section h2 {
    margin-bottom: 1.15rem;
    line-height: 1.15;
  }
  .stats-grid {
    gap: 0.9rem;
    padding: 1.2rem 0;
    overflow: clip;
  }
  .stat-card {
    min-height: 180px;
    padding: 1.1rem;
    border-radius: 22px;
  }
  .stat-card__orbit {
    width: 48px;
    height: 48px;
  }
  .stat-card__orbit::before {
    inset: 7px;
  }
  .card,
  .quote-card,
  .plan,
  .equipment-card,
  .contact-form {
    border-radius: 22px;
  }
  .equipment-card {
    min-height: 0;
  }
  .equipment-card__visual {
    min-height: 210px;
  }
  .equipment-card__icon {
    width: 90px;
    height: 90px;
    top: 1rem;
    right: 1rem;
  }
  .equipment-card__display {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-width: 0;
  }
  .plan-topline,
  .quote-topline {
    flex-direction: column;
    align-items: flex-start;
  }
  .plan-footer .btn,
  .cta-row .btn,
  .contact-form .btn {
    width: 100%;
  }
  .contact-layout {
    gap: 1rem;
  }
  .contact-steps div {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0.7rem;
  }
  .brand-text {
    max-width: 112px;
  }
  .menu-toggle {
    padding: 0.55rem 0.75rem;
  }
  .preloader__content {
    width: min(90vw, 360px);
  }
  .preloader__logo {
    width: 88px;
  }
  .hero-layout {
    padding-top: 4.8rem;
    padding-bottom: 3.2rem;
  }
  .main-nav {
    left: 10px;
    right: 10px;
    top: calc(100% + 0.55rem);
    padding: 0.85rem;
    border-radius: 20px;
  }
  .main-nav a {
    padding: 0.95rem 0.95rem;
    border-radius: 14px;
    font-size: 0.8rem;
  }
  .hero-badge {
    padding: 0.6rem 0.8rem;
  }
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
  }
  .cta-row {
    gap: 0.7rem;
  }
  .hero-metrics strong {
    font-size: 1.05rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .card,
  .quote-card,
  .plan {
    padding: 1.15rem;
  }
  .equipment-card__body,
  .contact-form {
    padding: 1.1rem;
  }
  .equipment-card h3,
  .plan h3 {
    font-size: 1.5rem;
  }
  .quote-card blockquote {
    font-size: 1rem;
    line-height: 1.6;
  }
  .top-message__card,
  .top-message__cta {
    padding: 1.15rem;
    border-radius: 22px;
  }
  .top-message__cta .btn {
    width: 100%;
  }
  .author-avatar {
    width: 46px;
    height: 46px;
  }
  .form-grid label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .footer-grid {
    gap: 1.25rem;
  }
  .footer-bottom {
    font-size: 0.82rem;
  }
  .legal-hero {
    padding: 8rem 0 2.6rem;
  }
  .legal-intro,
  .legal-block p,
  .legal-block li {
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .pointer-spotlight {
    display: none;
  }
}
