:root {
  --bg: #07090E;
  --bg-elevated: #0D1017;
  --bg-card: #121622;
  --bg-card-hover: #171D2C;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.16);
  --border-active: rgba(255, 36, 66, 0.5);
  --red: #FF2442;
  --red-hover: #E01B37;
  --red-subtle: rgba(255, 36, 66, 0.12);
  --green: #10B981;
  --green-subtle: rgba(16, 185, 129, 0.12);
  --text: #F8FAFC;
  --text-muted: #8E9BAE;
  --text-dim: #526071;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background-color: var(--bg); color: var(--text); scroll-behavior: smooth; }
body { font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

/* ==========================================================================
   TRANSPARENT FLOATING NAVBAR
   ========================================================================== */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 22px 40px;
}
.nav-bar.scrolled {
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 2;
}
.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  transition: transform 0.25s ease;
}
.nav-logo:hover .nav-logo-mark {
  transform: scale(1.08);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-top: 1px;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(14, 18, 27, 0.7);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 10px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  z-index: 10;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: #FFF; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav-phone:hover { color: #FFF; }

.btn-contact {
  background: #FFF;
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 9999px;
  border: 1px solid #FFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-contact:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FFF;
  box-shadow: 0 0 25px rgba(255, 36, 66, 0.5);
}

/* ==========================================================================
   HERO SECTION — FRACTIONA EDITORIAL STYLE
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 135px;
  padding-bottom: 40px;
  overflow: hidden;
  background-color: var(--bg);
}

.hero-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: contrast(1.15) brightness(0.85);
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center 35%, transparent 20%, var(--bg) 95%),
              linear-gradient(180deg, rgba(7,9,14,0.4) 0%, transparent 35%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--border) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

/* Hero Center Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 36, 66, 0.1);
  border: 1px solid rgba(255, 36, 66, 0.35);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulseDot 2s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-brand-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 14px;
}
.hero-brand-desc {
  font-size: clamp(14px, 1.35vw, 17px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

/* Massive typography layered behind the car */
.hero-massive-text {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(75px, 14.5vw, 205px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16);
  white-space: nowrap;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* ==========================================================================
   CAROUSEL IN HERO — SWIPEABLE DUAL-SIDED CAR ROTATION
   ========================================================================== */
.carousel-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.carousel-track-wrap:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0.25;
  transform: scale(0.92);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-img {
  width: 100%;
  max-width: 820px;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.95));
  pointer-events: none;
  user-select: none;
  transition: transform 0.4s ease;
}

.slide-shadow {
  width: 68%;
  height: 26px;
  margin-top: -16px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.7) 45%, transparent 75%);
  filter: blur(14px);
  border-radius: 50%;
}

/* Floating Spec Bar Below Current Slide */
.slide-spec-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(14, 18, 27, 0.85);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 10px 24px;
  backdrop-filter: blur(16px);
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 95%;
}

.slide-order-btn {
  background: var(--red);
  color: #FFF;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slide-order-btn:hover {
  background: var(--red-hover);
  transform: scale(1.04);
}

/* Carousel Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 18, 27, 0.85);
  border: 1px solid var(--border-light);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(12px);
}
.carousel-nav-btn:hover {
  background: #FFF;
  color: #000;
  border-color: #FFF;
  transform: translateY(-50%) scale(1.08);
}
.carousel-nav-prev { left: 10px; }
.carousel-nav-next { right: 10px; }

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  z-index: 10;
}
.carousel-dot {
  width: 28px;
  height: 3px;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.carousel-dot.active {
  background: var(--red);
  width: 52px;
}

/* Hero Bottom Action Row */
.hero-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  z-index: 3;
  position: relative;
}

.btn-hero-primary {
  background: #FFF;
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid #FFF;
  transition: all 0.2s ease;
}
.btn-hero-primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: #FFF;
  box-shadow: 0 0 30px rgba(255, 36, 66, 0.45);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFF;
  transform: translateY(-1px);
}

/* ==========================================================================
   THE ACCESS GAP / STATS SECTION (HIGH-CONTRAST WHITE EDITORIAL)
   ========================================================================== */
.gap-section {
  background: #FFF;
  color: #000;
  padding: 110px 40px;
  position: relative;
  z-index: 2;
}
.gap-container {
  max-width: 1440px;
  margin: 0 auto;
}
.gap-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.gap-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}
.gap-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  max-width: 720px;
}
.gap-subtitle {
  font-size: 15px;
  color: #475569;
  max-width: 460px;
  line-height: 1.6;
}

.gap-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 60px;
}
.gap-stat-col {
  padding: 40px 32px 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gap-stat-col:last-child { border-right: none; }
.gap-stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  color: #000;
}
.gap-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: #64748B;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE CUSTOMS & TURNKEY CALCULATOR
   ========================================================================== */
.calc-section {
  background: var(--bg);
  padding: 110px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.calc-container {
  max-width: 1440px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  margin-top: 50px;
}
.calc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.calc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.calc-tab {
  flex: 1;
  padding: 14px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.calc-tab.active {
  background: #FFF;
  color: #000;
  border-color: #FFF;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.12);
}

.calc-field-group {
  margin-bottom: 24px;
}
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.calc-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}
.calc-input:focus {
  border-color: var(--red);
}
.calc-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.age-pill, .city-pill {
  flex: 1;
  min-width: 110px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Result Panel */
.calc-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.breakdown-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
}

.total-box {
  background: rgba(7, 9, 14, 0.7);
  border: 1px solid var(--border-active);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.total-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.total-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  color: #FFF;
  letter-spacing: -0.03em;
}
.total-economy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 14px;
  background: var(--green-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.btn-calc-submit {
  width: 100%;
  background: var(--red);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 36, 66, 0.35);
}
.btn-calc-submit:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 36, 66, 0.5);
}

/* ==========================================================================
   TRUST BUILT TO LAST — 3-COLUMN EDITORIAL CARDS
   ========================================================================== */
.cards-section {
  background: var(--bg-elevated);
  padding: 110px 40px;
  border-bottom: 1px solid var(--border);
}
.three-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-light);
}
.pillar-card-media {
  height: 250px;
  background: radial-gradient(circle at center, #182030 0%, #07090E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}
.pillar-badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 5px 12px;
  background: rgba(14, 18, 27, 0.85);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.pillar-card-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.85));
  transition: transform 0.4s ease;
}
.pillar-card:hover .pillar-card-img {
  transform: scale(1.06);
}

.pillar-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pillar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pillar-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #CBD5E1;
}
.pillar-check-svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  flex-shrink: 0;
}
.btn-pillar {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-pillar:hover {
  background: #FFF;
  color: #000;
  border-color: #FFF;
}

/* ==========================================================================
   TRANSPARENT PROCESS WORKFLOW (4 STEPS)
   ========================================================================== */
.process-section {
  background: var(--bg);
  padding: 110px 40px;
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.process-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FOUNDER & CONTACT BLOCK (KHABAROVSK)
   ========================================================================== */
.founder-section {
  background: var(--bg-card);
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.founder-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.founder-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 18px;
}
.founder-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.contact-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  text-decoration: none;
}
.contact-val:hover { color: var(--red); }

/* ==========================================================================
   FOOTER (LUXURY EDITORIAL)
   ========================================================================== */
.footer {
  background: #040608;
  padding: 100px 40px 40px;
  position: relative;
  overflow: hidden;
}
.footer-massive-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 12px;
}
.footer-logo-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
}
.footer-links-group {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link-item a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link-item a:hover { color: #FFF; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: #FFF;
  color: #000;
}
.modal-car-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #171E2D 0%, #07090E 100%);
  border-radius: 12px;
  margin: 20px 0;
  padding: 16px;
}
.modal-car-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.85));
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.modal-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}
.modal-input:focus { border-color: var(--red); }
.modal-submit-btn {
  width: 100%;
  background: var(--red);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-submit-btn:hover {
  background: var(--red-hover);
}

/* ==========================================================================
   RESPONSIVE ADAPTATION (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-phone { display: none; }
  .nav-links { gap: 18px; padding: 8px 20px; }
}

@media (max-width: 1080px) {
  .gap-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gap-stat-col:nth-child(2) { border-right: none; }
  .gap-stat-col:nth-child(1), .gap-stat-col:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.15); }
  .three-cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-container { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-bar { padding: 14px 20px; }
  .nav-bar.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  
  .hero { min-height: auto; padding-top: 86px; padding-bottom: 40px; }
  .hero-massive-text { font-size: 64px; top: 40%; }
  .carousel-stage { min-height: 280px; }
  .slide-img { max-height: 220px; }
  .slide-spec-bar { flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 10px; border-radius: 14px; padding: 10px 16px; }
  
  .gap-section { padding: 60px 20px; }
  .gap-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gap-stat-col { padding: 24px 16px; }
  
  .calc-section, .cards-section, .process-section, .founder-section, .footer { padding: 60px 20px; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-card, .calc-result-card { padding: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  
  .hide-mobile { display: none !important; }
}

/* Admin Dashboard Entry Link */
.admin-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.admin-entry-link:hover {
  color: #FFF;
  border-color: var(--red);
  background: rgba(255, 36, 66, 0.12);
  transform: translateY(-1px);
}

/* ==========================================================================
   БЕЛАРУСЬ: калькулятор, Европа, заявка
   ========================================================================== */
.three-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1280px) { .three-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .three-cards-grid { grid-template-columns: 1fr; } }

.pillar-card-media-eu {
  background: radial-gradient(circle at 50% 55%, #10204a 0%, #07090E 75%);
  overflow: hidden;
}
.pillar-eu-mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 204, 0, 0.75);
  position: relative;
}
.pillar-eu-mark::after {
  content: '';
  position: absolute;
  inset: -34px -46px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 204, 0, 0.9) 0 3deg, transparent 3deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 66%, #000 67%, #000 70%, transparent 71%);
          mask: radial-gradient(circle, transparent 66%, #000 67%, #000 70%, transparent 71%);
}

.calc-tabs-4 { flex-wrap: wrap; }
.calc-tabs-4 .calc-tab { min-width: calc(25% - 8px); display: flex; flex-direction: column; gap: 2px; }
.calc-tab small { font-size: 10px; opacity: 0.6; font-weight: 600; }
@media (max-width: 520px) { .calc-tabs-4 .calc-tab { min-width: calc(50% - 6px); } }

.calc-hint { margin-top: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }

.calc-pill {
  flex: 1;
  min-width: 92px;
  padding: 12px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}
.calc-pill:hover { border-color: var(--border-light); color: #FFF; }
.calc-pill.active { background: #FFF; color: #000; border-color: #FFF; font-weight: 700; }
.calc-pill small { display: block; font-size: 10px; opacity: 0.65; margin-top: 2px; }
.pill-group-4 .calc-pill { min-width: 70px; }

.calc-range {
  width: 100%;
  accent-color: var(--red);
  height: 28px;
  cursor: pointer;
}
.calc-quick { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.calc-quick button {
  flex: 1;
  min-width: 44px;
  padding: 7px 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
}
.calc-quick button:hover { border-color: var(--red); color: #FFF; }

.calc-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.calc-check:hover { border-color: var(--border-light); }
.calc-check input { position: absolute; opacity: 0; pointer-events: none; }
.calc-check-box {
  flex: 0 0 20px;
  height: 20px;
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.calc-check input:checked + .calc-check-box { background: var(--green); border-color: var(--green); }
.calc-check input:checked + .calc-check-box::after { content: '✓'; color: #000; font-size: 13px; font-weight: 900; }
.calc-check input:focus-visible + .calc-check-box { outline: 2px solid var(--red); outline-offset: 2px; }
.calc-check-text { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }
.calc-check-text b { color: #FFF; }

.calc-rates-line {
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--text-dim, #5b6678);
  margin-bottom: 20px;
}
.calc-warning {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.35);
  color: #FFC66B;
  font-size: 12.5px;
  line-height: 1.5;
}
.breakdown-row > span:first-child { display: flex; flex-direction: column; gap: 3px; padding-right: 12px; }
.breakdown-row small { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim, #5b6678); }
.breakdown-val { white-space: nowrap; }
.breakdown-row-accent .breakdown-val { color: var(--red); font-weight: 700; }
.total-usd { margin-top: 4px; font-family: var(--font-mono); font-size: 14px; color: var(--text-muted); }
.total-economy { flex-wrap: wrap; justify-content: center; line-height: 1.5; border-radius: 12px; padding: 8px 14px; }
.calc-disclaimer { margin-top: 14px; font-size: 11px; line-height: 1.5; color: var(--text-dim, #5b6678); }

.lead-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 11.5px; line-height: 1.45; color: var(--text-muted); cursor: pointer; }
.lead-consent input { margin-top: 2px; accent-color: var(--red); }
.lead-send-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal-submit-alt { background: transparent; border: 1px solid var(--border-light); box-shadow: none; }
.modal-submit-alt:hover { background: rgba(255, 255, 255, 0.06); }
.lead-note { font-size: 11px; color: var(--text-dim, #5b6678); text-align: center; }
@media (max-width: 520px) { .lead-send-row { grid-template-columns: 1fr; } }

.total-economy[hidden], .calc-warning[hidden], .calc-sub[hidden], .calc-power[hidden] { display: none !important; }
.calc-sub { padding: 16px; border: 1px dashed var(--border-light); border-radius: 12px; }
.calc-power-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 14px; }
.calc-power .calc-label { margin-bottom: 8px; }
.calc-input-wrap:has(.unit-switch) .calc-input { padding-right: 110px; }
.unit-switch {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  display: flex; background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 3px;
}
.unit-switch button {
  border: 0; background: transparent; color: var(--text-muted); cursor: pointer;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; padding: 6px 9px; border-radius: 6px;
}
.unit-switch button.active { background: #FFF; color: #000; }
.calc-power-sum { margin-top: 10px; font-size: 11.5px; line-height: 1.5; color: var(--text-dim); }
.spec-price { color: #10B981; font-weight: 700; white-space: nowrap; }
.spec-usd { color: var(--text-muted); white-space: nowrap; }
@media (max-width: 1100px) { .spec-usd { display: none; } }
