@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600;1,700&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

:root {
  --black: #000000;
  --charcoal: #050508;
  --charcoal-light: #0c0c10;
  --surface: rgba(12, 12, 18, 0.75);
  --surface-solid: #12121a;
  --surface-2: #1a1a24;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.42);
  --red: #e10600;
  --red-glow: rgba(225, 6, 0, 0.45);
  --orange: #ff6b00;
  --yellow: #ffb800;
  --lime: #c8ff00;
  --lime-bright: #e4ff4d;
  --lime-glow: rgba(200, 255, 0, 0.35);
  --lime-dim: rgba(200, 255, 0, 0.1);
  --cyan: #00f0ff;
  --border: rgba(255, 255, 255, 0.07);
  --border-bright: rgba(200, 255, 0, 0.35);
  --glass: rgba(8, 8, 12, 0.82);
  --font: 'Montserrat', system-ui, sans-serif;
  --font-display: 'Chakra Petch', 'Montserrat', system-ui, sans-serif;
  --clip-tag: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  --clip-btn: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  --clip-hex: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  --max: 1200px;
  --header-h: 76px;
  --radius: 0;
  --radius-lg: 0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(200, 255, 0, 0.08), 0 24px 60px rgba(0, 0, 0, 0.5);
  --transition: 0.25s ease;
}

[hidden] { display: none !important; }

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(var(--max), calc(100% - 48px));
  }
}

/* ═══ HOLOGRAPHIC BACKGROUND ═══ */
.holo-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.holo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 75%);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(48px); }
}

.holo-orb {
  position: absolute;
  border-radius: 0;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.holo-orb--lime {
  width: 500px;
  height: 500px;
  background: rgba(200, 255, 0, 0.12);
  top: -10%;
  right: -5%;
}

.holo-orb--red {
  width: 400px;
  height: 400px;
  background: rgba(225, 6, 0, 0.1);
  bottom: 10%;
  left: -8%;
  animation-delay: -4s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.holo-circuit {
  position: absolute;
  width: 200px;
  height: 300px;
  opacity: 0.15;
  background:
    linear-gradient(var(--lime) 2px, transparent 2px) 0 0 / 40px 40px,
    linear-gradient(90deg, var(--lime) 2px, transparent 2px) 0 0 / 40px 40px;
}

.holo-circuit--left { top: 20%; left: 2%; }
.holo-circuit--right { bottom: 15%; right: 2%; transform: scaleX(-1); }

.holo-circuit-svg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 10%, transparent 70%);
}

/* ═══ ANIMATED CIRCUIT BOARDS ═══ */
.circuit-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.circuit-bg--hero {
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 95% 85% at 55% 45%, black 15%, transparent 72%);
}

.circuit-bg--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

.circuit-bg--section {
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.circuit-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.circuit-trace--base {
  fill: none;
  stroke: rgba(200, 255, 0, 0.12);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.circuit-trace--dim {
  stroke: rgba(200, 255, 0, 0.06);
}

.circuit-flow {
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 6 18;
  animation: circuit-data-flow 2.4s linear infinite;
}

.circuit-flow--tx {
  stroke: rgba(200, 255, 0, 0.75);
}

.circuit-flow--rx {
  stroke: rgba(225, 6, 0, 0.65);
  animation-direction: reverse;
}

.circuit-flow--slow {
  animation-duration: 5s;
  stroke-width: 1.5;
  stroke-dasharray: 4 22;
}

.circuit-flow--delay { animation-delay: -0.8s; }
.circuit-flow--delay-2 { animation-delay: -1.6s; }

@keyframes circuit-data-flow {
  to { stroke-dashoffset: -48; }
}

.circuit-node {
  fill: rgba(200, 255, 0, 0.25);
  stroke: rgba(200, 255, 0, 0.5);
  stroke-width: 1;
}

.circuit-node--pulse {
  animation: circuit-node-pulse 2.4s ease-in-out infinite;
}

@keyframes circuit-node-pulse {
  0%, 100% {
    fill: rgba(200, 255, 0, 0.2);
    stroke: rgba(200, 255, 0, 0.4);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    fill: rgba(200, 255, 0, 0.9);
    stroke: rgba(200, 255, 0, 1);
    filter: drop-shadow(0 0 6px rgba(200, 255, 0, 0.8));
  }
}

.circuit-chip {
  fill: rgba(8, 8, 12, 0.85);
  stroke: rgba(200, 255, 0, 0.35);
  stroke-width: 1;
}

.circuit-chip--sm {
  fill: rgba(8, 8, 12, 0.9);
}

.circuit-label {
  fill: rgba(200, 255, 0, 0.45);
  font-family: var(--font-mono, 'Consolas', monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.circuit-label--sm { font-size: 8px; }

section:has(.circuit-bg) > .container,
.page-hero:has(.circuit-bg) > .container {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .circuit-flow,
  .circuit-node--pulse {
    animation: none;
  }
  .circuit-flow {
    stroke-dasharray: none;
    opacity: 0.35;
  }
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.4;
}

/* ═══ HOLO PANELS ═══ */
.holo-panel {
  position: relative;
  background: linear-gradient(145deg, rgba(18, 18, 26, 0.9) 0%, rgba(8, 8, 12, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: 0;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.service-card.holo-panel::before {
  opacity: 0.35;
  z-index: 1;
}

.holo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.06) 0%, transparent 40%, rgba(225, 6, 0, 0.04) 100%);
  pointer-events: none;
}

.service-card.holo-panel {
  background: linear-gradient(145deg, rgba(18, 18, 26, 0.72) 0%, rgba(8, 8, 12, 0.88) 100%);
}

.holo-panel--flat::before { display: none; }

.holo-corners {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  z-index: 1;
}

.holo-corners::before,
.holo-corners::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--lime);
  border-style: solid;
  opacity: 0.6;
}

.holo-corners::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}

.holo-corners::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}

.holo-icon {
  box-shadow: 0 0 24px var(--lime-glow), inset 0 0 20px rgba(200, 255, 0, 0.08);
}

/* angular corner utilities */
.clip-corner { clip-path: var(--clip-tag); }
.clip-corner-lg { clip-path: var(--clip-btn); }

.holo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  margin-right: 8px;
  vertical-align: middle;
}

.holo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--lime-dim);
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  clip-path: var(--clip-tag);
  box-shadow: inset 0 0 0 1px var(--border-bright);
}

.holo-chip:hover {
  background: rgba(200, 255, 0, 0.2);
  box-shadow: inset 0 0 0 1px var(--lime), 0 0 20px var(--lime-glow);
}

/* ═══ BUTTONS — sporty, subtly angular ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  position: relative;
  overflow: hidden;
  clip-path: var(--clip-btn);
}

/* skewed shine sweep — gives motion without slanting the label */
.btn::after {
  content: '';
  position: absolute;
  inset: -2px -20px;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,0.18) 50%, transparent 68%);
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after { transform: translateX(120%) skewX(-12deg); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #a00400 100%);
  color: var(--white);
  box-shadow: 0 8px 32px var(--red-glow), inset 0 0 0 1px rgba(255, 90, 90, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover { box-shadow: 0 12px 44px var(--red-glow), inset 0 0 0 1px rgba(255, 110, 110, 0.55); }

.btn-outline {
  background: rgba(200, 255, 0, 0.04);
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--border-bright), 0 0 20px rgba(200, 255, 0, 0.05);
}

.btn-outline:hover {
  background: var(--lime-dim);
  color: var(--lime-bright);
  box-shadow: inset 0 0 0 1px var(--lime), 0 0 30px var(--lime-glow);
}

.btn-lime {
  background: linear-gradient(135deg, var(--lime) 0%, #9ecc00 100%);
  color: var(--black);
  box-shadow: 0 8px 32px var(--lime-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-lime:hover { box-shadow: 0 12px 44px var(--lime-glow); filter: brightness(1.05); }

.btn-sm { padding: 11px 22px; font-size: 12px; clip-path: var(--clip-tag); }

/* ═══ HEADER — fixed, never overlaps content ═══ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  pointer-events: none;
}

.header-bar {
  pointer-events: auto;
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#site-header.is-scrolled .header-bar {
  background: rgba(5, 5, 8, 0.95);
  border-bottom-color: rgba(200, 255, 0, 0.15);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(200, 255, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.logo { height: 40px; width: auto; filter: drop-shadow(0 0 8px rgba(200, 255, 0, 0.2)); }

.nav-desktop { display: flex; gap: 28px; }

.nav-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color var(--transition), text-shadow var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.is-active {
  color: var(--lime);
  text-shadow: 0 0 20px var(--lime-glow);
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  box-shadow: 0 0 8px var(--lime);
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.header-account { display: inline-flex; align-items: center; gap: 8px; }
.header-account-icon { width: 18px; height: 18px; display: none; }

.header-phone {
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  display: none;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: rgba(255,255,255,0.03);
}

.header-phone:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid var(--border-bright);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
}

/* Mobile nav — OUTSIDE header, only visible when open */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 960;
  width: min(360px, 88vw);
  background: linear-gradient(180deg, rgba(10, 10, 16, 0.98) 0%, rgba(5, 5, 8, 0.99) 100%);
  border-left: 1px solid var(--border-bright);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6), inset 1px 0 0 rgba(200, 255, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  animation: slide-in 0.3s ease;
}

@keyframes slide-in {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
  font-family: monospace;
}

.nav-close {
  height: 36px;
  padding: 0 16px;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.4);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  line-height: 1;
}

.nav-mobile .nav-link {
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid transparent;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.is-active {
  background: var(--lime-dim);
  border-color: var(--border-bright);
}

.nav-mobile-phone {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 20px var(--lime-glow);
  padding: 12px 16px;
}

.nav-mobile-cta { margin-top: 12px; width: 100%; }

/* ═══ SERVICES MEGA MENU ═══ */
.nav-item { display: flex; align-items: center; }
.nav-item.has-mega { position: static; }

.nav-link--mega { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }

.mega-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  opacity: 0.8;
}
.nav-item.has-mega.is-open .mega-caret { transform: rotate(-135deg) translateY(-2px); }

.mega {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 905;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.98) 0%, rgba(5, 5, 8, 0.99) 100%);
  backdrop-filter: blur(22px) saturate(1.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border-bright);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(200, 255, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-item.has-mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-accent {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime) 30%, var(--red) 70%, transparent);
  background-size: 200% 100%;
  animation: mega-flow 4s linear infinite;
}
@keyframes mega-flow {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

.mega-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 30px 0 24px;
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 28px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 12px 26px;
  align-content: start;
}

.mega-col { padding: 0 4px; }
.mega-col-head { margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.mega-col-title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}
.mega-col--offroad .mega-col-title { color: var(--orange); }
.mega-col-cont-tag { font-size: 10px; font-weight: 600; opacity: 0.55; letter-spacing: 0.06em; }
.mega-col-blurb { display: block; margin-top: 4px; font-size: 11px; line-height: 1.4; color: var(--muted-2); }

.mega-links { display: flex; flex-direction: column; gap: 2px; }

.mega-link {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid transparent;
  clip-path: var(--clip-tag);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.mega-link:hover {
  background: var(--lime-dim);
  border-color: var(--border-bright);
  transform: translateX(3px);
}

.mega-link-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.16), rgba(200, 255, 0, 0.04));
  border: 1px solid var(--border-bright);
  clip-path: var(--clip-hex);
}
.mega-link-icon .icon-text {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  letter-spacing: 0.02em;
}

.mega-link-text { min-width: 0; }
.mega-link-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.mega-link:hover .mega-link-name { color: var(--lime); }
.mega-link-desc {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-link-price {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  white-space: nowrap;
}

.mega-feature {
  position: relative;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  align-self: start;
}
.mega-feature-label { font-family: monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--lime); }
.mega-feature h4 { font-size: 20px; font-style: italic; text-transform: uppercase; }
.mega-feature p { font-size: 12px; line-height: 1.5; color: var(--muted); }
.mega-feature-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.mega-feature-actions .btn { width: 100%; justify-content: center; }
.mega-feature-phone {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 16px var(--lime-glow);
}

.mega-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.mega-bar-label { font-family: monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--muted-2); }
.mega-bar-links { display: flex; gap: 20px; margin-right: auto; }
.mega-bar-links a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color var(--transition);
}
.mega-bar-links a:hover { color: var(--lime); }
.mega-bar-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.mega-bar-cta:hover { color: var(--orange); }

/* Mobile drawer — Services accordion */
.nav-mobile-group { display: flex; flex-direction: column; }
.nav-mobile-acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  padding: 14px 16px;
  cursor: pointer;
}
.nav-mobile-acc.is-active { color: var(--lime); }
.nav-mobile-acc-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}
.nav-mobile-group.is-open .nav-mobile-acc { color: var(--lime); background: var(--lime-dim); border-color: var(--border-bright); }
.nav-mobile-group.is-open .nav-mobile-acc-caret { transform: rotate(-135deg); }

.nav-mobile-sub { display: flex; flex-direction: column; gap: 2px; padding: 6px 0 10px 10px; }
.nav-mobile-subgroup { display: flex; flex-direction: column; padding: 6px 0; }
.nav-mobile-subhead {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 6px 8px 4px;
}
.nav-mobile-subhead--offroad { color: var(--orange); }
.nav-mobile-sublink {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 12px;
  border-left: 2px solid var(--border);
}
.nav-mobile-sublink:hover { color: var(--lime); border-left-color: var(--lime); background: var(--lime-dim); }
.nav-mobile-sublink--all { margin-top: 6px; color: var(--lime); border-left-color: var(--lime-glow); font-weight: 700; }

/* ═══ SERVICE DETAIL PAGE HELPERS ═══ */
.disclaimer-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(225, 6, 0, 0.06));
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-left: 4px solid var(--orange);
  margin: 0 0 8px;
}
.disclaimer-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  border: 1px solid rgba(255, 107, 0, 0.5);
  clip-path: var(--clip-hex);
}
.disclaimer-banner h3 { font-size: 15px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.disclaimer-banner p { font-size: 13px; line-height: 1.55; color: var(--muted); margin: 0; }

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.svc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.svc-price-card {
  position: relative;
  padding: 28px;
  text-align: center;
}
.svc-price-card .svc-price-label { font-family: monospace; font-size: 12px; letter-spacing: 0.14em; color: var(--lime); }
.svc-price-card .svc-price-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  margin: 10px 0 4px;
}
.svc-price-card .svc-price-note { font-size: 13px; color: var(--orange); font-weight: 700; }
.svc-price-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.18), rgba(200, 255, 0, 0.04));
  border: 1px solid var(--border-bright);
  clip-path: var(--clip-hex);
}
.svc-price-icon .icon-text { font-family: var(--font-display); font-size: 20px; font-weight: 800; font-style: italic; color: var(--lime); }

/* Custom stage SVG badges (wide ~2:1) sit on a neutral plate. */
.stage-badge { display: block; width: auto; }

/* On service cards the stage badge replaces the icon plate and runs larger. */
.service-card-badge { margin-bottom: 22px; }
.service-card-badge .stage-badge { height: 52px; transition: filter var(--transition); }
.service-card:hover .service-card-badge .stage-badge { filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.25)); }

/* Service cards drop the top-left corner bracket. */
.service-card .holo-corners::before { display: none; }

.svc-price-icon--badge {
  width: auto;
  min-width: 64px;
  padding: 0 16px;
  clip-path: none;
  background: var(--charcoal);
}
.svc-price-icon--badge .stage-badge { height: 40px; }

.gain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.gain-stat { padding: 24px 20px; text-align: center; }
.gain-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 24px var(--lime-glow);
}
.gain-stat span { display: block; margin-top: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-table th { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-size: 12px; font-weight: 700; }
.spec-table td { color: var(--white); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table .spec-yes { color: var(--lime); font-weight: 700; }

.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.feature-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
  color: var(--white);
  clip-path: var(--clip-tag);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: translateY(-65%) rotate(-45deg);
}

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

/* Categorised services hub */
.svc-cat { margin-bottom: clamp(40px, 6vw, 72px); }
.svc-cat-head { margin-bottom: 24px; }
.svc-cat-head p { margin-top: 8px; color: var(--muted); max-width: 640px; }
.section-label--offroad { color: var(--orange); }
.section-label--offroad::before { color: var(--orange); }

.service-card-title { color: inherit; transition: color var(--transition); }
.service-card-title:hover { color: var(--lime); }
.service-tag--offroad { color: var(--orange); border-color: rgba(255, 107, 0, 0.45); }
.service-tag--soon { color: var(--black); background: var(--orange); box-shadow: 0 0 18px rgba(255, 107, 0, 0.45); }
.service-card-actions { display: flex; gap: 10px; margin-top: auto; }
.service-card-actions .card-cta { flex: 1; justify-content: center; }

.svc-related { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; counter-reset: step; }
.svc-step { position: relative; padding: 24px 20px 20px; }
.svc-step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  opacity: 0.5;
}
.svc-step h3 { font-size: 16px; margin: 8px 0 6px; }
.svc-step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: stretch;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: clamp(32px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
}

.hero-inner.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-inner.container {
    width: min(var(--max), calc(100% - 48px));
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding-right: clamp(0px, 2vw, 16px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(200, 255, 0, 0.1), transparent),
    radial-gradient(ellipse 50% 45% at 15% 75%, rgba(225, 6, 0, 0.12), transparent),
    linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.hero-form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.contact-form-wrap {
  position: relative;
  padding: 40px;
}

.contact-form-wrap > * { position: relative; z-index: 2; }

.contact-form-wrap--hero {
  padding: clamp(24px, 3vw, 32px);
  border-color: var(--border-bright);
  box-shadow: 0 0 60px rgba(200, 255, 0, 0.1), var(--shadow);
}

.contact-form-wrap--hero h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 8px;
}

.form-intro {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-form-wrap--hero .form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-wrap--hero .form-row {
  margin-bottom: 14px;
}

.contact-form-wrap--hero textarea {
  min-height: 88px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(200, 255, 0, 0.08);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 28px;
  clip-path: var(--clip-tag);
  box-shadow: inset 0 0 0 1px var(--border-bright), 0 0 24px rgba(200, 255, 0, 0.1);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  font-style: italic;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(200, 255, 0, 0.15);
}

.hero h1 .accent {
  color: var(--lime);
  display: block;
  text-shadow: 0 0 30px var(--lime-glow);
}

.hero-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-stat {
  padding: 16px 20px;
  background: rgba(200, 255, 0, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  flex: 1 1 100px;
  min-width: 0;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 16px var(--lime-glow);
}

.hero-stat span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
}

.speed-bars {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  transform: skewX(-12deg);
}

.speed-bar { width: 48px; height: 10px; box-shadow: 0 0 10px currentColor; }
.speed-bar--yellow { background: var(--yellow); color: var(--yellow); }
.speed-bar--orange { background: var(--orange); color: var(--orange); }
.speed-bar--red { background: var(--red); color: var(--red); }

/* ═══ SECTIONS ═══ */
section { padding: clamp(72px, 8vw, 108px) 0; position: relative; overflow: hidden; }

section:nth-child(even) {
  background: linear-gradient(180deg, transparent, rgba(200, 255, 0, 0.02), transparent);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(44px, 5vw, 68px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime);
  margin-bottom: 16px;
  padding: 7px 16px;
  border: 1px solid var(--border-bright);
  border-radius: 0;
  background: var(--lime-dim);
  font-family: var(--font-display);
  clip-path: var(--clip-tag);
}

.section-label::before {
  content: '//';
  opacity: 0.6;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(200, 255, 0, 0.1);
}

.section-header p { color: var(--muted); font-size: 17px; }

/* ═══ SERVICE CARDS ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--lime);
  padding: 6px 12px;
  clip-path: var(--clip-tag);
  box-shadow: 0 0 18px var(--lime-glow);
}

.service-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-card-body {
  flex: 1 1 auto;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.42;
  transform: scale(1.02);
  transition: transform 0.6s ease, opacity var(--transition);
}

.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.55) 0%, rgba(8, 8, 12, 0.82) 45%, rgba(8, 8, 12, 0.96) 100%),
    linear-gradient(135deg, rgba(200, 255, 0, 0.06) 0%, transparent 45%, rgba(225, 6, 0, 0.05) 100%);
}

.service-card:hover .service-card-bg img {
  opacity: 0.55;
  transform: scale(1.08);
}

.service-card > *:not(.service-card-bg) { position: relative; z-index: 2; }

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--red), var(--lime));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--transition);
  animation: border-flow 3s linear infinite;
  z-index: 3;
}

@keyframes border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow), 0 0 60px rgba(200, 255, 0, 0.08);
}

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

.service-card.featured {
  border-color: rgba(200, 255, 0, 0.25);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(200, 255, 0, 0.2), rgba(200, 255, 0, 0.05));
  border-radius: 0;
  font-size: 24px;
  margin-bottom: 22px;
  clip-path: var(--clip-hex);
  filter: drop-shadow(0 0 14px var(--lime-glow));
}

.service-icon.holo-icon { box-shadow: none; }

.service-card:hover .service-icon { filter: drop-shadow(0 0 20px var(--lime-glow)); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.service-card .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--lime);
  text-shadow: 0 0 20px var(--lime-glow);
}

.service-card .price-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-benefits li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.service-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
  transform: rotate(45deg);
}

.service-card .card-cta {
  margin-top: 24px;
  width: 100%;
}

/* ═══ PROCESS TIMELINE ═══ */
.process-timeline {
  position: relative;
  padding: 8px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--red), var(--lime));
  box-shadow: 0 0 16px var(--lime-glow);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px 28px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.process-step.holo-panel::before { display: none; }

.process-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.process-step-code {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--step-accent, var(--lime));
  opacity: 0.8;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border: 2px solid var(--step-accent, var(--border-bright));
  box-shadow: 0 0 24px color-mix(in srgb, var(--step-accent, var(--lime)) 18%, transparent);
}

.process-step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--step-accent, var(--lime));
}

.process-step-num {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--step-accent, var(--lime));
  line-height: 1;
}

.process-step-body {
  background: rgba(12, 12, 18, 0.85);
  border: 1px solid var(--border);
  padding: 24px 20px;
  width: 100%;
  text-align: left;
  border-top: 2px solid var(--step-accent, var(--lime));
}

.process-step-body h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.process-step-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.process-detail {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.process-detail li {
  position: relative;
  padding-left: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-family: monospace;
}

.process-detail li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--step-accent, var(--lime));
}

.process-wrap { width: 100%; }

/* ═══ REMAP TRUTH (PROS & CONS) ═══ */
.truth-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px);
}

.truth-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.truth-tabs {
  position: relative;
  display: inline-flex;
  padding: 5px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-bright);
}

.truth-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color var(--transition);
}

.truth-tab:hover { color: var(--white); }

.truth-tab-count {
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border: 1px solid currentColor;
  opacity: 0.7;
}

/* Sliding highlight sits behind the active tab. */
.truth-tab-glider {
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: var(--lime);
  box-shadow: 0 0 24px var(--lime-glow);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.truth-wrap[data-active='cons'] .truth-tab-glider {
  transform: translateX(100%);
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.4);
}

.truth-tab.is-active { color: var(--charcoal); }
.truth-wrap[data-active='cons'] .truth-tab.is-active { color: var(--white); }
.truth-tab.is-active .truth-tab-count { opacity: 1; }

.truth-strap {
  max-width: 620px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.truth-stage { position: relative; }

.truth-panel { display: none; }
.truth-panel.is-active { display: block; animation: truth-fade 0.4s ease; }

@keyframes truth-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.truth-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.truth-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: rgba(12, 12, 18, 0.85);
  border: 1px solid var(--border);
  border-left: 3px solid var(--lime);
}

.truth-card--cons { border-left-color: var(--orange); }

.truth-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.truth-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--charcoal);
  border: 1px solid var(--border-bright);
}

.truth-card-icon svg { width: 20px; height: 20px; color: var(--lime); }
.truth-card--cons .truth-card-icon { border-color: rgba(255, 107, 0, 0.4); }
.truth-card--cons .truth-card-icon svg { color: var(--orange); }

.truth-card-sign {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--lime);
  opacity: 0.85;
}
.truth-card--cons .truth-card-sign { color: var(--orange); }

.truth-card h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}

.truth-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.truth-card-flr {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-bright);
}

.truth-card-flr-tag {
  flex-shrink: 0;
  align-self: flex-start;
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  background: var(--lime);
  padding: 3px 7px;
}

.truth-card-flr p {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.truth-dots { display: none; }

.truth-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.truth-foot p {
  font-size: 14px;
  font-style: italic;
  color: var(--white);
}

/* ═══ WHY FLR ═══ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features { display: flex; flex-direction: column; gap: 16px; }

.why-feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-left: 3px solid var(--lime);
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-dim);
  border: 1px solid var(--border-bright);
  border-radius: 0;
  font-size: 20px;
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.1);
}

.why-feature h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--lime);
}

.why-feature p { font-size: 13px; color: var(--muted); }

.why-visual {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.08);
}

.why-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.why-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.08), rgba(225, 6, 0, 0.12));
  pointer-events: none;
}

.why-visual { position: relative; }

/* ═══ TRUST GRID (Why People Trust Us) ═══ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}
.trust-grid .why-feature { height: 100%; }

/* ═══ FOUNDER / ABOUT (Meet Saqib) ═══ */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 40px 28px;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(200, 255, 0, 0.1), transparent 60%),
    linear-gradient(160deg, rgba(200, 255, 0, 0.06), rgba(225, 6, 0, 0.08));
  overflow: hidden;
}
.founder-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(closest-side, #000 60%, transparent);
}

.founder-monogram {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--lime);
  background: rgba(5, 5, 8, 0.6);
  border: 1px solid var(--border-bright);
  clip-path: var(--clip-hex);
  text-shadow: 0 0 24px var(--lime-glow);
}

.founder-portrait-meta { position: relative; display: flex; flex-direction: column; gap: 4px; }
.founder-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
}
.founder-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-badge {
  position: relative;
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 7px 14px;
  background: var(--lime-dim);
  border: 1px solid var(--border-bright);
  clip-path: var(--clip-tag);
}

.founder-subhead {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

/* ═══ MOBILE BANNER ═══ */
.mobile-banner { padding: 80px 0; }

.mobile-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 64px;
  border-color: var(--border-bright);
}

.mobile-banner h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mobile-banner p { color: var(--muted); margin-bottom: 28px; }

/* ═══ TESTIMONIAL SLIDER ═══ */
.testimonials-slider-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slider { position: relative; }

.testimonial-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial-slider-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-count,
.testimonial-avg {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-count { color: var(--lime); }
.testimonial-avg { color: var(--muted); }

.testimonial-controls { display: flex; gap: 8px; }

.slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid var(--border-bright);
  color: var(--lime);
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn svg { width: 20px; height: 20px; }

.slider-btn:hover {
  background: var(--lime-dim);
  box-shadow: 0 0 20px var(--lime-glow);
}

.testimonial-viewport {
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: rgba(0, 0, 0, 0.3);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  border: none;
  box-shadow: none;
}

.testimonial-slide.holo-panel::before { display: none; }

.testimonial-slide-inner {
  padding: clamp(28px, 5vw, 48px);
}

.testimonial-slide blockquote {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

.testimonial-service {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 8px 14px;
  border: 1px solid var(--border-bright);
  background: var(--lime-dim);
  font-family: monospace;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 32px;
  height: 4px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.is-active {
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime-glow);
}

.testimonial-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.testimonial-rating span {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}

.testimonials-grid { display: none; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { margin-bottom: 12px; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--lime);
  flex-shrink: 0;
  text-shadow: 0 0 10px var(--lime-glow);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after { transform: rotate(45deg); }

.faq-item.is-open {
  border-color: var(--border-bright);
  box-shadow: 0 0 30px rgba(200, 255, 0, 0.06);
}

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

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

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

/* ═══ CTA ═══ */
.cta-section {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(225, 6, 0, 0.15), transparent),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(200, 255, 0, 0.08), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(200, 255, 0, 0.12);
}

.cta-section p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ═══ PAGE HERO ═══ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 255, 0, 0.08), transparent),
    linear-gradient(180deg, rgba(12, 12, 18, 0.5), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(200, 255, 0, 0.1);
}

.page-hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-content h2 {
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-stat {
  padding: 22px;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
  text-shadow: 0 0 16px var(--lime-glow);
}

.about-stat span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.coverage-map {
  padding: 40px;
  text-align: center;
}

.coverage-map h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--lime);
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.coverage-tag {
  padding: 8px 16px;
  background: var(--lime-dim);
  border: 1px solid var(--border-bright);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
}

/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: rgba(200, 255, 0, 0.02);
  transition: var(--transition);
}

.contact-detail:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.06);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-dim);
  border: 1px solid var(--border-bright);
  border-radius: 0;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-detail h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 4px;
  font-family: monospace;
}

.contact-detail a, .contact-detail p {
  font-size: 15px;
  font-weight: 700;
}

.contact-form-wrap h2 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--lime);
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: monospace;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.1);
}

.form-row textarea { min-height: 120px; resize: vertical; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-success {
  margin-top: 16px;
  padding: 16px;
  background: var(--lime-dim);
  border: 1px solid var(--border-bright);
  border-radius: 0;
  font-size: 13px;
  color: var(--lime);
}

/* ═══ FOOTER ═══ */
#site-footer {
  position: relative;
  z-index: 1;
  background: var(--black);
  border-top: 2px solid var(--border-bright);
  overflow: hidden;
  padding: 0;
}

.footer-cta {
  position: relative;
  background:
    radial-gradient(ellipse 60% 120% at 12% 50%, rgba(225, 6, 0, 0.16), transparent 70%),
    radial-gradient(ellipse 50% 120% at 92% 40%, rgba(200, 255, 0, 0.12), transparent 70%),
    linear-gradient(135deg, rgba(12, 12, 18, 0.6), rgba(0, 0, 0, 0.4));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 60px) 0;
}

.footer-cta-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--lime);
  padding: 6px 14px;
  margin-bottom: 16px;
  background: var(--lime-dim);
  clip-path: var(--clip-tag);
}

.footer-cta-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 12px;
}

.footer-cta-copy p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-cta-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-cta-phone {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
}

.footer-cta-phone:hover { color: var(--lime); text-shadow: 0 0 16px var(--lime-glow); }

.footer-cta-sep {
  width: 1px;
  height: 22px;
  background: var(--border-bright);
}

.footer-cta-email {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer-cta-email:hover { color: var(--lime); }

.footer-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: rgba(8, 8, 12, 0.78);
  box-shadow: inset 0 0 0 1px var(--border-bright), 0 0 40px rgba(200, 255, 0, 0.06);
  clip-path: var(--clip-btn);
}

.footer-quote-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime);
}

.footer-quote-plate {
  display: flex;
  align-items: stretch;
  height: 52px;
  background: var(--yellow);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.footer-quote-gb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background: #063298;
  color: #ffd400;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-quote-input {
  flex: 1;
  border: none;
  outline: none;
  background: var(--yellow);
  color: #111;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px;
}

.footer-quote-input::placeholder { color: rgba(0, 0, 0, 0.45); }

.footer-quote-btn { width: 100%; }

.footer-trust-strip {
  background: rgba(200, 255, 0, 0.04);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.footer-trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

.footer-main {
  position: relative;
  padding: 64px 0 0;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 30px var(--lime-glow);
}

.footer-circuit {
  width: min(var(--max), calc(100% - 48px));
  height: 36px;
  margin: 0 auto 28px;
  opacity: 0.7;
}

.footer-circuit svg { width: 100%; height: 100%; display: block; }

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 20px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 32px;
}

.footer-brand-block,
.footer-main-grid .footer-col {
  padding: 28px;
  background: rgba(12, 12, 18, 0.7);
  box-shadow: inset 0 0 0 1px var(--border);
  clip-path: var(--clip-btn);
}

.footer-logo { margin-bottom: 16px; height: 36px; width: auto; }

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.footer-stat {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.footer-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
}

.footer-stat span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition), text-shadow var(--transition);
}

.footer-col a:hover {
  color: var(--lime);
  text-shadow: 0 0 12px var(--lime-glow);
}

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

.footer-area-chip {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px var(--border);
  clip-path: var(--clip-tag);
  transition: color var(--transition), box-shadow var(--transition);
}

.footer-area-chip:hover {
  color: var(--lime);
  box-shadow: inset 0 0 0 1px var(--border-bright);
}

.footer-area-chip--more {
  color: var(--lime);
  background: var(--lime-dim);
}

.footer-contact-list li {
  margin-bottom: 16px;
}

.footer-contact-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  font-family: monospace;
  margin-bottom: 4px;
}

.footer-contact-list a,
.footer-contact-list span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.footer-hours {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-hours p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-nav-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-nav-strip a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.footer-nav-strip a:hover { color: var(--lime); }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
}

.footer-bottom p { font-size: 12px; color: var(--muted-2); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-bottom-links a:hover { color: var(--lime); }

.footer-url {
  font-family: monospace;
  color: var(--lime) !important;
  opacity: 0.7;
  text-align: right;
}

.footer-grid { display: none; }
.footer-contact { display: none; }

/* ═══ COOKIE CONSENT ═══ */
.cookie-consent {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 940;
  width: min(380px, calc(100vw - 32px));
  padding: 24px 24px 22px;
  background: linear-gradient(145deg, rgba(14, 14, 20, 0.96) 0%, rgba(6, 6, 10, 0.98) 100%);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 0 0 1px var(--border-bright), 0 0 50px rgba(200, 255, 0, 0.1), var(--shadow);
  clip-path: var(--clip-btn);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cookie-consent.is-leaving {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}

.cookie-consent .holo-corners { inset: 8px; }

.cookie-consent-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(200, 255, 0, 0.08) 0%, transparent 38%, rgba(225, 6, 0, 0.05) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px);
}

.cookie-consent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--red), var(--lime));
  background-size: 200% 100%;
  animation: border-flow 3s linear infinite;
  z-index: 2;
}

.cookie-consent-inner {
  position: relative;
  z-index: 2;
}

.cookie-consent-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--lime);
  margin-bottom: 10px;
}

.cookie-consent-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.cookie-consent-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}

.cookie-consent-text a {
  color: var(--lime);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-text a:hover { text-shadow: 0 0 12px var(--lime-glow); }

.cookie-consent-actions {
  display: flex;
  gap: 12px;
}

.cookie-consent-actions .btn { flex: 1; }

body.nav-open .cookie-consent { display: none; }

@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .cookie-consent.is-visible { transform: none; }
  .cookie-consent.is-leaving { transform: none; }
  .cookie-consent::before { animation: none; }
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .cookie-consent-actions { flex-direction: column; }
}

/* ═══ LEGAL / POLICY PAGES ═══ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-content article {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  clip-path: var(--clip-btn);
}

.legal-content h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--white);
}

.legal-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-content p + p { margin-top: 12px; }

.legal-content code {
  font-family: var(--font-mono, 'Consolas', monospace);
  font-size: 13px;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 2px 6px;
}

.legal-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.legal-list li strong { color: var(--white); }

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  transform: rotate(45deg);
}

.legal-cat {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.legal-cat:first-of-type { border-top: none; padding-top: 4px; }

.legal-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.legal-cat-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-cat-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px var(--border);
  clip-path: var(--clip-tag);
  white-space: nowrap;
}

.legal-cat-tag--on {
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime-glow);
}

.legal-content .btn { margin-top: 18px; }

.legal-contact {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.legal-contact li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-contact-label {
  font-family: var(--font-mono, 'Consolas', monospace);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
}

.legal-contact a,
.legal-contact span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.legal-contact a:hover { color: var(--lime); text-shadow: 0 0 12px var(--lime-glow); }

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ═══ ICONS & UTILITIES ═══ */
.icon-text {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--lime);
  font-family: monospace;
}

.why-feature-icon svg,
.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--lime);
}

.mobile-banner-svg {
  width: min(280px, 100%);
  height: auto;
  color: var(--lime);
  filter: drop-shadow(0 0 30px var(--lime-glow));
}

.btn-full { width: 100%; }

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

/* ═══ UK VRN PLATE ═══ */
.vrn-plate {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 380px;
  background: #f9d902;
  border: 4px solid #0b0b0b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px #0b0b0b,
    0 4px 0 #0b0b0b,
    0 8px 24px rgba(0, 0, 0, 0.45);
  min-height: 72px;
}

.vrn-plate--prefilled {
  animation: vrn-prefill 2.4s ease;
}

@keyframes vrn-prefill {
  0%, 100% { box-shadow: inset 0 0 0 2px #0b0b0b, 0 4px 0 #0b0b0b, 0 8px 24px rgba(0, 0, 0, 0.45); }
  15%, 55% { box-shadow: inset 0 0 0 2px #0b0b0b, 0 4px 0 #0b0b0b, 0 0 0 4px var(--lime), 0 0 36px var(--lime-glow); }
}

.vrn-plate-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #003399 0%, #002266 100%);
  border-right: 3px solid #0b0b0b;
  padding: 6px 0;
}

.vrn-flag {
  display: block;
  width: 24px;
  height: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
}

.vrn-gb {
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #f9d902;
  letter-spacing: 0.05em;
  line-height: 1;
}

.vrn-field {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inset red coachline border, like a printed reg plate */
.vrn-field::before {
  content: '';
  position: absolute;
  inset: 5px 7px 8px 7px;
  border: 2px solid var(--red);
  border-radius: 6px;
  pointer-events: none;
}

/* Supplier name sitting on the bottom border line, breaking it */
.vrn-footer {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 0 6px;
  background: #f9d902;
  color: var(--red);
  font-family: var(--font-display), 'Arial Black', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.form-row .vrn-input,
.qq-field .vrn-input {
  flex: 1;
  width: auto;
  min-width: 0;
  border: none;
  background: transparent;
  color: #0b0b0b;
  font-family: var(--font-display), 'Arial Black', 'Impact', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(40px, 8vw, 54px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 10px;
  outline: none;
}

.form-row .vrn-input::placeholder,
.qq-field .vrn-input::placeholder {
  color: rgba(11, 11, 11, 0.35);
  letter-spacing: 0.05em;
}

.form-row .vrn-input:focus,
.qq-field .vrn-input:focus {
  border: none;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 480px) {
  .vrn-plate { max-width: 100%; }
  .vrn-plate-badge { width: 38px; }
  .vrn-gb { font-size: 12px; }
}

/* ═══ QUICK QUOTE CTA ═══ */
.quick-quote-section {
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(0, 240, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(200, 255, 0, 0.08), transparent 60%),
    linear-gradient(180deg, var(--charcoal) 0%, #07070b 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.qq-panel {
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--border-bright);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.08),
    0 0 60px rgba(0, 240, 255, 0.08),
    var(--shadow-glow);
}

/* Animated holographic accents specific to this panel */
.qq-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.07) 0%, transparent 35%),
    linear-gradient(315deg, rgba(200, 255, 0, 0.06) 0%, transparent 35%);
  z-index: 0;
}

.qq-scanlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 240, 255, 0.05) 0px,
    rgba(0, 240, 255, 0.05) 1px,
    transparent 1px,
    transparent 5px
  );
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  animation: qq-scan 6s linear infinite;
}

@keyframes qq-scan {
  0% { background-position: 0 0; }
  100% { background-position: 0 200px; }
}

.qq-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-areas:
    "head form"
    "aside form";
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.qq-head { grid-area: head; }
.qq-aside { grid-area: aside; }
.qq-form { grid-area: form; }
.qq-head,
.qq-aside,
.qq-form { min-width: 0; }

.qq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.04;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.18);
}

.qq-head h2 .accent {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(0, 240, 255, 0.5);
}

.qq-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 24px;
}

.qq-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.qq-points li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.qq-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  clip-path: var(--clip-hex);
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
}

/* Interactive "typical gains" slider */
.qq-gains {
  margin: 4px 0 24px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: inset 0 0 24px rgba(0, 240, 255, 0.05);
}

.qq-gains-label {
  display: block;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 14px;
}

.qq-gains-viewport { overflow: hidden; }

.qq-gains-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.qq-gain-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.qq-gain-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 16px;
}

.qq-gain-car {
  min-width: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}

.qq-gain-stage {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 4px 10px;
  border: 1px solid var(--border-bright);
  background: var(--lime-dim);
}

.qq-gain-metric { margin-bottom: 14px; }
.qq-gain-metric:last-child { margin-bottom: 0; }

.qq-gain-metric-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.qq-gain-metric-head strong {
  color: var(--lime);
  font-size: 13px;
  text-shadow: 0 0 12px var(--lime-glow);
}

.qq-gain-track {
  height: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.qq-gain-track + .qq-gain-track { margin-top: 6px; }

.qq-gain-fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  border-radius: 4px;
  padding-right: 8px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.qq-gain-fill i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.qq-gain-fill--stock {
  background: rgba(255, 255, 255, 0.14);
}
.qq-gain-fill--stock i { color: rgba(255, 255, 255, 0.7); }

.qq-gain-fill--tuned {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.55), var(--lime));
  box-shadow: 0 0 18px rgba(200, 255, 0, 0.25);
}
.qq-gain-fill--tuned i { color: var(--black); }

.qq-gains-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.qq-gains-dot {
  width: 26px;
  height: 5px;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}

.qq-gains-dot.is-active {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

/* Fields */
.qq-form { display: flex; flex-direction: column; gap: 18px; }

.qq-field { display: flex; flex-direction: column; }

.qq-field label,
.qq-legend {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 8px;
  font-family: monospace;
}

/* Big text inputs sized to sit alongside the VRN plate */
.qq-input {
  width: 100%;
  min-width: 0;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px;
  min-height: 72px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.qq-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.qq-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.18);
}

/* Custom holographic stage radios */
.qq-stages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.qq-stage { position: relative; cursor: pointer; }

.qq-stage input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.qq-stage-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  min-height: 64px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.qq-stage-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.qq-stage-icon svg { width: 20px; height: 20px; }

.qq-stage-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.qq-stage-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.qq-stage-note {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.qq-stage:hover .qq-stage-chip {
  border-color: var(--border-bright);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.12);
}

.qq-stage input:focus-visible + .qq-stage-chip {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
}

.qq-stage input:checked + .qq-stage-chip {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.16), rgba(200, 255, 0, 0.1));
  border-color: var(--cyan);
  box-shadow: 0 0 26px rgba(0, 240, 255, 0.28), inset 0 0 18px rgba(0, 240, 255, 0.08);
  transform: translateY(-1px);
}

.qq-stage input:checked + .qq-stage-chip .qq-stage-name { color: var(--cyan); }

.qq-stage:hover .qq-stage-icon {
  color: var(--lime);
  border-color: var(--border-bright);
}

.qq-stage input:checked + .qq-stage-chip .qq-stage-icon {
  color: var(--black);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.5);
}

.qq-submit { margin-top: 4px; }

/* ── Quick Quote responsive ── */
@media (max-width: 900px) {
  /* Single column, ordered: heading/copy, then the form, then supporting visuals */
  .qq-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "form"
      "aside";
    gap: 28px;
  }
  .qq-aside { margin-top: 4px; }
}

@media (max-width: 600px) {
  .qq-panel { padding: 22px 16px; }
  .qq-grid { gap: 22px; }
  .qq-head h2 { font-size: clamp(26px, 7vw, 34px); }
  .qq-head p { font-size: 15px; margin-bottom: 20px; }
  .qq-stages { grid-template-columns: 1fr; }
  .qq-input {
    font-size: 20px;
    min-height: 60px;
    padding: 12px 14px;
    letter-spacing: 0.04em;
  }
  .qq-gains { padding: 14px; }
  .qq-gain-car { font-size: 14px; }
  .qq-stage-chip { padding: 12px 14px; min-height: 58px; }
  .qq-stage-name { font-size: 16px; }
}

@media (max-width: 360px) {
  .qq-stage-chip { gap: 10px; }
  .qq-stage-icon { width: 30px; height: 30px; }
  .qq-stage-icon svg { width: 18px; height: 18px; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-form { order: -1; max-width: 100%; margin-left: 0; }
  .contact-form-wrap--hero .form-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-steps::before { display: none; }

  .why-grid, .about-grid, .contact-grid, .mobile-banner-inner { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

  .mega-inner { grid-template-columns: 1fr; }
  .mega-feature { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .mega-feature-actions { flex-direction: row; width: auto; }
  .svc-hero-grid, .svc-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  section { padding: 64px 0; }

  .header-inner { width: calc(100% - 24px); }
  .nav-desktop, .header-phone, .header-book { display: none; }
  .nav-toggle { display: inline-flex; }
  .logo { height: 34px; }

  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 0 48px;
  }
  .hero-content { max-width: 100%; padding-right: 0; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-lead { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-form { display: none; }

  /* Account becomes a bare person icon to free up header space. */
  .header-account,
  .header-account:hover {
    padding: 0;
    gap: 0;
    background: none;
    border: none;
    box-shadow: none;
    color: var(--white);
  }
  .header-account-text { display: none; }
  .header-account-icon { display: block; width: 24px; height: 24px; }
  .hero-stat { padding: 12px 10px; }
  .hero-stat strong { font-size: 18px; }
  .hero-stat span { font-size: 9px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 0 0 24px; }
  .process-step-body { text-align: left; }

  .footer-cta-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .footer-main-grid { grid-template-columns: 1fr; }
  .footer-brand-stats { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-url { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-hero-grid, .svc-grid-2, .feature-list { grid-template-columns: 1fr; }
  .gain-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid, .trust-grid { grid-template-columns: 1fr; }
  .mobile-banner-inner { padding: 32px 20px; gap: 32px; }
  .page-hero { padding: calc(var(--header-h) + 48px) 0 48px; }
  .section-header { margin-bottom: 40px; }
  .contact-form-wrap { padding: 24px 20px; }
  .service-card { padding: 24px 20px; }
  .testimonial-footer { flex-direction: column; align-items: flex-start; }

  /* Pros & cons becomes a swipeable card slider on mobile. */
  .truth-tabs { display: flex; width: 100%; }
  .truth-tab { flex: 1; justify-content: center; padding: 11px 12px; }
  .truth-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 4px 20px 6px;
  }
  .truth-grid::-webkit-scrollbar { display: none; }
  .truth-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }
  .truth-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .truth-dot {
    width: 26px;
    height: 4px;
    padding: 0;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
  }
  .truth-dot.is-active { background: var(--lime); box-shadow: 0 0 12px var(--lime-glow); }
  .truth-panel[data-panel='cons'] .truth-dot.is-active { background: var(--orange); box-shadow: 0 0 12px rgba(255, 107, 0, 0.4); }
  .truth-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .truth-foot .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .hero-stat strong { font-size: 22px; }
  .hero-stat span { text-align: right; }
  .about-stats { grid-template-columns: 1fr; }
  .btn { padding: 14px 20px; font-size: 13px; }
  .footer-trust-inner { justify-content: flex-start; padding: 16px; }
}

@media (min-width: 769px) {
  .header-phone { display: block; }
}

/* ═══ SUCCESS MODAL (holographic transmit → confirm) ═══ */
body.flr-modal-open { overflow: hidden; }

.flr-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.flr-modal.is-visible { opacity: 1; }
.flr-modal.is-leaving { opacity: 0; }

.flr-modal__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(8, 8, 12, 0.78) 0%, rgba(2, 2, 4, 0.92) 100%);
  backdrop-filter: blur(8px) saturate(1.2);
}

.flr-modal__panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 40px) clamp(22px, 5vw, 38px) clamp(24px, 5vw, 34px);
  text-align: center;
  background: linear-gradient(150deg, rgba(16, 16, 24, 0.97) 0%, rgba(6, 6, 10, 0.99) 100%);
  box-shadow: inset 0 0 0 1px var(--border-bright), 0 0 60px rgba(200, 255, 0, 0.08), var(--shadow);
  clip-path: var(--clip-btn);
  transform: translateY(22px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.flr-modal.is-visible .flr-modal__panel { transform: translateY(0) scale(1); }
.flr-modal.is-leaving .flr-modal__panel { transform: translateY(22px) scale(0.97); }

.flr-modal__panel .holo-corners { inset: 10px; }

.flr-modal__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--orange), var(--red));
  background-size: 200% 100%;
  animation: border-flow 3s linear infinite;
  z-index: 3;
}

.flr-modal__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(200, 255, 0, 0.06) 0%, transparent 40%, rgba(225, 6, 0, 0.05) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.05) 3px, rgba(0, 0, 0, 0.05) 4px);
}

.flr-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 4;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.flr-modal__close:hover { color: var(--white); border-color: var(--lime); box-shadow: 0 0 16px var(--lime-glow); }

.flr-modal__phase { position: relative; z-index: 2; }

.flr-modal__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.flr-modal__label--ok { color: var(--lime); }

.flr-modal__loading-title,
.flr-modal__title {
  font-size: clamp(20px, 4.6vw, 27px);
  text-transform: uppercase;
  margin: 10px 0 0;
}

/* ── transmit stripes ── */
.flr-modal__stripes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 26px auto 22px;
  width: min(280px, 80%);
}

.flr-modal__stripe {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.flr-modal__stripe::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: 4px;
  transform: translateX(-130%);
  animation: flr-stripe-run 1.15s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

.flr-modal__stripe--red::after { background: linear-gradient(90deg, transparent, var(--red), transparent); box-shadow: 0 0 14px var(--red-glow); animation-delay: 0s; }
.flr-modal__stripe--orange::after { background: linear-gradient(90deg, transparent, var(--orange), transparent); box-shadow: 0 0 14px rgba(255, 107, 0, 0.5); animation-delay: 0.18s; }
.flr-modal__stripe--yellow::after { background: linear-gradient(90deg, transparent, var(--yellow), transparent); box-shadow: 0 0 14px rgba(255, 184, 0, 0.5); animation-delay: 0.36s; }

@keyframes flr-stripe-run {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(330%); }
}

.flr-modal__status {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  min-height: 1.4em;
}

/* ── animated check ── */
.flr-modal__check {
  width: 84px;
  height: 84px;
  margin: 0 auto 6px;
}

.flr-modal__check-svg { width: 100%; height: 100%; }

.flr-modal__check-ring {
  stroke: var(--lime);
  stroke-width: 2.5;
  opacity: 0.9;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  filter: drop-shadow(0 0 6px var(--lime-glow));
  animation: flr-check-ring 0.55s ease forwards;
}

.flr-modal__check-mark {
  stroke: var(--lime);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  filter: drop-shadow(0 0 6px var(--lime-glow));
  animation: flr-check-mark 0.4s 0.5s ease forwards;
}

@keyframes flr-check-ring { to { stroke-dashoffset: 0; } }
@keyframes flr-check-mark { to { stroke-dashoffset: 0; } }

.flr-modal__msg {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px auto 0;
  max-width: 40ch;
}

/* ── interactive "what happens now" stepper ── */
.flr-modal__steps {
  margin-top: 24px;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.flr-modal__steps-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.flr-modal__step-list { display: flex; flex-direction: column; gap: 8px; }

.flr-modal__step {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), background var(--transition);
}

.flr-modal__step.is-active {
  border-color: var(--border-bright);
  background: rgba(200, 255, 0, 0.04);
}

.flr-modal__step-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
}

.flr-modal__step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
  transition: color var(--transition);
}

.flr-modal__step.is-active .flr-modal__step-num { color: var(--lime); }

.flr-modal__step-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.flr-modal__step-chevron {
  width: 9px; height: 9px;
  border-right: 2px solid var(--muted-2);
  border-bottom: 2px solid var(--muted-2);
  transform: rotate(45deg);
  transition: transform var(--transition), border-color var(--transition);
}

.flr-modal__step.is-active .flr-modal__step-chevron {
  transform: rotate(-135deg);
  border-color: var(--lime);
}

.flr-modal__step-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.flr-modal__step.is-active .flr-modal__step-body { grid-template-rows: 1fr; }

.flr-modal__step-body > p {
  overflow: hidden;
  margin: 0;
  padding: 0 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease, padding 0.32s ease;
}

.flr-modal__step.is-active .flr-modal__step-body > p { opacity: 1; padding: 0 14px 13px; }

.flr-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.flr-modal__actions .btn { flex: 1 1 auto; min-width: 140px; }

@media (max-width: 480px) {
  .flr-modal__actions { flex-direction: column; }
  .flr-modal__check { width: 72px; height: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .flr-modal,
  .flr-modal__panel { transition: none; }
  .flr-modal__panel::before,
  .flr-modal__stripe::after { animation: none; }
  .flr-modal__check-ring,
  .flr-modal__check-mark { animation: none; stroke-dashoffset: 0; }
  .flr-modal__stripe::after { transform: translateX(0); width: 100%; opacity: 0.6; }
}
