@font-face {
    font-family: 'Bebas Neue';
    src: url("../fonts/BebasNeue.ttf") format('truetype');
    font-weight: 400;
    font-display: swap;
  }
  @font-face {
    font-family: 'Public Sans';
    src: url("../fonts/PublicSans-Regular.ttf") format('truetype');
    font-weight: 400;
    font-display: swap;
  }
  @font-face {
    font-family: 'Public Sans';
    src: url("../fonts/PublicSans-Bold.ttf") format('truetype');
    font-weight: 700;
    font-display: swap;
  }
  @font-face {
    font-family: 'Public Sans';
    src: url("../fonts/PublicSans-Black.ttf") format('truetype');
    font-weight: 900;
    font-display: swap;
  }
  @font-face {
    font-family: 'IBM Plex Mono';
    src: url("../fonts/IBMPlexMono-Regular.ttf") format('truetype');
    font-weight: 400;
    font-display: swap;
  }
  @font-face {
    font-family: 'IBM Plex Mono';
    src: url("../fonts/IBMPlexMono-Medium.ttf") format('truetype');
    font-weight: 500;
    font-display: swap;
  }

  :root {
    --bg: #f4f5f8;
    --bg-elevated: #ffffff;
    --bg-panel: #eceff5;
    --bg-dark: #0e1730;
    --bg-dark-2: #16224a;
    --text: #14171f;
    --text-dim: #5b6272;
    --text-on-dark: #eef1fb;
    --text-on-dark-dim: #aab4d6;
    --accent: #2b5fe0;
    --accent-2: #17399e;
    --accent-light: #6f96ff;
    --accent-soft: rgba(43, 95, 224, 0.08);
    --chrome: #5b6272;
    --ember: #d9481f;
    --good: #1f7a4d;
    --line: rgba(20, 23, 31, 0.1);
    --glow: rgba(43, 95, 224, 0.22);
    --shadow: 0 1px 2px rgba(20,23,31,0.06), 0 8px 24px -12px rgba(20,23,31,0.18);
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #0a0d16;
      --bg-elevated: #141926;
      --bg-panel: #1b2233;
      --bg-dark: #05070f;
      --bg-dark-2: #0c1230;
      --text: #eef0f5;
      --text-dim: #99a0b3;
      --text-on-dark: #eef1fb;
      --text-on-dark-dim: #aab4d6;
      --accent: #4f86ff;
      --accent-2: #8fb4ff;
      --accent-light: #8fb4ff;
      --accent-soft: rgba(79, 134, 255, 0.14);
      --chrome: #c9cdd6;
      --ember: #ff7a4d;
      --good: #4fd08a;
      --line: rgba(255, 255, 255, 0.1);
      --glow: rgba(79, 134, 255, 0.38);
      --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 8px 24px -12px rgba(0,0,0,0.5);
    }
  }
  :root[data-theme="dark"] {
    --bg: #0a0d16;
    --bg-elevated: #141926;
    --bg-panel: #1b2233;
    --bg-dark: #05070f;
    --bg-dark-2: #0c1230;
    --text: #eef0f5;
    --text-dim: #99a0b3;
    --text-on-dark: #eef1fb;
    --text-on-dark-dim: #aab4d6;
    --accent: #4f86ff;
    --accent-2: #8fb4ff;
    --accent-light: #8fb4ff;
    --accent-soft: rgba(79, 134, 255, 0.14);
    --chrome: #c9cdd6;
    --ember: #ff7a4d;
    --good: #4fd08a;
    --line: rgba(255, 255, 255, 0.1);
    --glow: rgba(79, 134, 255, 0.38);
    --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 8px 24px -12px rgba(0,0,0,0.5);
  }
  :root[data-theme="light"] {
    --bg: #f4f5f8;
    --bg-elevated: #ffffff;
    --bg-panel: #eceff5;
    --bg-dark: #0e1730;
    --bg-dark-2: #16224a;
    --text: #14171f;
    --text-dim: #5b6272;
    --text-on-dark: #eef1fb;
    --text-on-dark-dim: #aab4d6;
    --accent: #2b5fe0;
    --accent-2: #17399e;
    --accent-light: #6f96ff;
    --accent-soft: rgba(43, 95, 224, 0.08);
    --chrome: #5b6272;
    --ember: #d9481f;
    --good: #1f7a4d;
    --line: rgba(20, 23, 31, 0.1);
    --glow: rgba(43, 95, 224, 0.22);
    --shadow: 0 1px 2px rgba(20,23,31,0.06), 0 8px 24px -12px rgba(20,23,31,0.18);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Public Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  h1, h2, h3 { font-family: 'Bebas Neue', 'Public Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; line-height: 0.98; text-wrap: balance; margin: 0; font-weight: 400; }
  a { color: inherit; }
  button { font-family: inherit; }

  .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6em;
  }
  .eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--ember);
    display: inline-block;
  }
  .eyebrow.on-dark { color: var(--accent-light); }

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
  }

  /* ---------- Utility bar ---------- */
  .util-bar {
    background: var(--bg-dark);
    color: var(--text-on-dark-dim);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.74rem;
  }
  .util-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px clamp(20px, 5vw, 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .util-row a { text-decoration: none; color: var(--text-on-dark-dim); transition: color 0.15s ease; }
  .util-row a:hover { color: #fff; }
  .util-phones { display: flex; gap: 18px; }

  /* ---------- Header ---------- */
  header.main-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px clamp(20px, 5vw, 48px);
    max-width: 1200px;
    margin: 0 auto;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
  }
  .brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--bg-dark-2), var(--bg-dark) 72%);
    border: 1.5px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .brand-badge svg { width: 24px; height: 24px; }
  .brand-word { display: flex; flex-direction: column; line-height: 1; }
  .brand-word b {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.22rem;
    letter-spacing: 0.05em;
    color: var(--text);
  }
  .brand-word span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    color: var(--text-dim);
    margin-top: 3px;
  }
  nav.links {
    display: flex;
    gap: clamp(14px, 2vw, 28px);
    font-size: 0.86rem;
    font-weight: 700;
  }
  nav.links a {
    text-decoration: none;
    color: var(--text-dim);
    transition: color 0.15s ease;
    white-space: nowrap;
  }
  nav.links a:hover { color: var(--accent); }
  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 11px 20px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.15s ease;
  }
  .call-btn:hover { background: var(--accent-2); transform: translateY(-1px); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    background: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 55%, var(--bg-dark) 100%);
    overflow: hidden;
  }
  .hero-shapes { position: absolute; inset: 0; z-index: 0; opacity: 0.55; }
  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 40px;
    align-items: center;
    padding-top: clamp(56px, 9vw, 100px);
    padding-bottom: clamp(56px, 9vw, 100px);
  }
  .brand-lockup { margin-bottom: 22px; position: relative; }
  .brand-lockup .bword {
    position: relative;
    font-family: 'Bebas Neue';
    font-size: clamp(3.4rem, 10vw, 6.4rem);
    letter-spacing: 0.04em;
    color: #eaf1ff;
    line-height: 0.9;
    text-shadow:
      0 0 6px var(--accent-light),
      0 0 18px var(--accent),
      0 0 42px var(--accent),
      0 0 80px var(--glow);
    animation: signBuzz 3.2s ease-in-out infinite;
  }
  @keyframes signBuzz {
    0%, 100% {
      text-shadow: 0 0 6px var(--accent-light), 0 0 18px var(--accent), 0 0 42px var(--accent), 0 0 80px var(--glow);
    }
    48% {
      text-shadow: 0 0 6px var(--accent-light), 0 0 18px var(--accent), 0 0 42px var(--accent), 0 0 80px var(--glow);
    }
    50% {
      text-shadow: 0 0 3px var(--accent-light), 0 0 9px var(--accent), 0 0 20px var(--accent), 0 0 36px var(--glow);
    }
    52% {
      text-shadow: 0 0 6px var(--accent-light), 0 0 18px var(--accent), 0 0 42px var(--accent), 0 0 80px var(--glow);
    }
    76% {
      text-shadow: 0 0 9px var(--accent-light), 0 0 26px var(--accent), 0 0 58px var(--accent), 0 0 100px var(--glow);
    }
    79% {
      text-shadow: 0 0 6px var(--accent-light), 0 0 18px var(--accent), 0 0 42px var(--accent), 0 0 80px var(--glow);
    }
  }
  .brand-bolt {
    position: absolute;
    width: 56px;
    height: auto;
    filter: drop-shadow(0 0 6px var(--accent)) drop-shadow(0 0 16px var(--glow));
    animation: flicker 3.4s ease-in-out infinite;
  }
  .brand-bolt.left { left: -38px; top: 8px; transform: rotate(-8deg) scaleX(-1); }
  .brand-bolt.right { right: -38px; bottom: 2px; transform: rotate(6deg); animation-delay: 0.6s; }
  @media (max-width: 640px) {
    .brand-bolt { display: none; }
  }
  .bword .outline { color: var(--chrome); text-shadow: none; }
  @supports (-webkit-text-stroke: 1px black) or (text-stroke: 1px black) {
    .bword .outline { -webkit-text-stroke: 1px var(--chrome); color: transparent; }
  }
  .bword .llc {
    font-size: 0.32em;
    letter-spacing: 0.1em;
    -webkit-text-stroke: 0;
    color: var(--text-on-dark-dim);
    vertical-align: super;
  }
  .brand-lockup .bsub {
    font-family: 'Bebas Neue';
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    letter-spacing: 0.28em;
    color: var(--chrome);
    margin-top: 2px;
  }
  .bolt-field { position: absolute; inset: 0; z-index: 0; }
  .bolt-field path {
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 1.4;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px var(--accent)) drop-shadow(0 0 16px var(--glow));
    opacity: 0.55;
  }
  .bolt-field path.b2 { opacity: 0.35; animation: flicker 4.5s ease-in-out infinite; }
  .bolt-field path.b3 { opacity: 0.45; animation: flicker 3.7s ease-in-out infinite 0.8s; }
  @keyframes flicker { 0%, 100% { opacity: 0.2; } 45% { opacity: 0.2; } 50% { opacity: 0.6; } 55% { opacity: 0.25; } 78% { opacity: 0.5; } }

  .mini-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .mini-trust-item { display: flex; align-items: center; gap: 10px; }
  .mini-trust-item svg { width: 26px; height: 26px; color: var(--accent-light); flex-shrink: 0; }
  .mini-trust-item span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-on-dark-dim);
    max-width: 9ch;
    line-height: 1.3;
  }
  .hero-locline {
    display: flex; align-items: center; gap: 8px;
    margin-top: 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-on-dark-dim);
  }
  .hero-locline svg { width: 16px; height: 16px; color: var(--ember); flex-shrink: 0; }
  .hero-locline b { color: var(--text-on-dark); font-weight: 500; }

  .hero-copy .eyebrow { margin-bottom: 6px; }
  .hero h1 {
    font-size: clamp(2.6rem, 5.8vw, 4.4rem);
    color: var(--text-on-dark);
  }
  .hero h1 em { font-style: normal; color: var(--accent-light); }
  .hero-copy p {
    color: var(--text-on-dark-dim);
    font-size: 1.05rem;
    max-width: 46ch;
    margin: 18px 0 0;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
  .btn-primary, .btn-ghost-dark {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 26px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: #1a4bd1; transform: translateY(-1px); }
  .btn-ghost-dark { background: transparent; color: var(--text-on-dark); border: 1.5px solid rgba(255,255,255,0.28); }
  .btn-ghost-dark:hover { border-color: var(--accent-light); color: var(--accent-light); }

  .hero-fleet {
    position: relative;
    height: 340px;
  }
  .fleet-card {
    position: absolute;
    background: var(--bg-dark-2);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 0 1px rgba(111,150,255,0.35), 0 24px 60px -14px var(--glow);
  }
  .fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    filter: saturate(1.05) contrast(1.08) drop-shadow(0 0 14px var(--glow));
  }
  .fleet-card .fcap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 4px 2px;
    gap: 8px;
  }
  .fleet-card .fmodel { font-family: 'Bebas Neue'; font-size: 1.02rem; letter-spacing: 0.03em; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .fleet-card .fprice {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 0.76rem;
    color: #fff;
    background: var(--good);
    padding: 3px 8px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .fleet-card.left {
    width: 52%;
    left: 0;
    top: 46px;
    transform: rotate(-6deg);
    z-index: 1;
  }
  .fleet-card.left img { height: 140px; }
  .fleet-card.right {
    width: 52%;
    right: 0;
    top: 30px;
    transform: rotate(5deg);
    z-index: 1;
  }
  .fleet-card.right img { height: 140px; }
  .fleet-card.center {
    width: 62%;
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(-1deg);
    z-index: 2;
  }
  .fleet-card.center img { height: 220px; }
  .hero-badge {
    position: absolute;
    top: -14px;
    left: 6px;
    background: var(--ember);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    padding: 7px 12px;
    border-radius: 3px;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
    z-index: 3;
  }
  @media (max-width: 880px) {
    .hero-fleet { height: 280px; max-width: 340px; margin: 0 auto; }
    .fleet-card.left img, .fleet-card.right img { height: 110px; }
    .fleet-card.center img { height: 180px; }
  }

  /* ---------- Stat strip ---------- */
  .stat-strip {
    background: var(--bg-panel);
    border-bottom: 1px solid var(--line);
  }
  .stat-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 30px) clamp(20px, 5vw, 48px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .stat-item { display: flex; align-items: center; gap: 12px; }
  .stat-item svg { width: 30px; height: 30px; color: var(--accent); flex-shrink: 0; }
  .stat-item .label { font-family: 'IBM Plex Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
  .stat-item .value { font-weight: 700; font-size: 0.95rem; margin-top: 3px; color: var(--text); }

  /* ---------- Section shell ---------- */
  section { padding: clamp(56px, 9vw, 96px) 0; }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: clamp(32px, 5vw, 48px);
    flex-wrap: wrap;
  }
  .section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
  .section-head .sub { color: var(--text-dim); max-width: 42ch; font-size: 0.98rem; margin-top: 10px; }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- Inventory ---------- */
  .inv-note {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    background: var(--accent-soft);
    border: 1px dashed var(--accent);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 32px;
  }
  .inv-note b { color: var(--accent); }
  .inv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .card {
    background: var(--bg-elevated);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .card:hover { transform: translateY(-3px); }
  .card-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 3px;
  }
  .card-art { background: var(--bg-panel); }
  .card-art img { width: 100%; height: 190px; object-fit: cover; display: block; }
  .carousel { position: relative; overflow: hidden; }
  .carousel-track { display: flex; height: 190px; transition: transform 0.35s ease; }
  .carousel-track img { flex: 0 0 100%; width: 100%; height: 190px; object-fit: cover; display: block; }
  .car-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(10,13,22,0.55); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; line-height: 1; cursor: pointer;
    z-index: 3; opacity: 0; transition: opacity 0.15s ease, background 0.15s ease;
  }
  .carousel:hover .car-nav, .carousel:focus-within .car-nav { opacity: 1; }
  .car-nav:hover { background: var(--accent); }
  .car-nav.prev { left: 8px; }
  .car-nav.next { right: 8px; }
  .carousel-dots {
    position: absolute; bottom: 8px; left: 0; right: 0; z-index: 3;
    display: flex; justify-content: center; gap: 5px;
  }
  .carousel-dots .dot {
    width: 6px; height: 6px; border-radius: 50%; cursor: pointer;
    background: rgba(255,255,255,0.55); transition: transform 0.15s ease, background 0.15s ease;
  }
  .carousel-dots .dot.active { background: #fff; transform: scale(1.35); }
  .carousel-count {
    position: absolute; top: 8px; right: 8px; z-index: 3;
    background: rgba(10,13,22,0.55); color: #fff;
    font-family: 'IBM Plex Mono', monospace; font-size: 0.62rem;
    padding: 2px 7px; border-radius: 3px;
  }
  @media (max-width: 700px) {
    .car-nav { opacity: 1; }
  }
  .card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
  .card-body .tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.06em; }
  .card-body h3 { font-family: 'Bebas Neue'; font-size: 1.55rem; letter-spacing: 0.03em; }
  .spec-table {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.76rem;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .spec-table div { display: flex; justify-content: space-between; padding: 4px 0; color: var(--text-dim); }
  .spec-table div span:last-child { color: var(--text); font-variant-numeric: tabular-nums; }
  .card-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
  }
  .card-price {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 1.05rem;
    color: #fff;
    background: var(--accent);
    padding: 6px 12px;
    border-radius: 4px;
  }
  .card-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.74rem;
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 1px;
  }
  .card-cta:hover { color: var(--accent-2); border-color: var(--accent-2); }

  /* ---------- Icon trust row ---------- */
  .trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
  }
  .trust-item { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
  .trust-ring {
    width: 62px; height: 62px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
  }
  .trust-ring::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid var(--ember);
    clip-path: polygon(0 0, 55% 0, 55% 100%, 0 100%);
  }
  .trust-ring svg { width: 28px; height: 28px; color: var(--accent); }
  .trust-item h3 { font-family: 'Public Sans'; font-weight: 900; font-size: 1.15rem; text-transform: none; letter-spacing: 0; }
  .trust-item p { color: var(--text-dim); font-size: 0.92rem; margin: 0; }

  /* ---------- Rebuilt explainer ---------- */
  .rebuilt-explain {
    background: var(--bg-panel);
    border-radius: 10px;
    padding: clamp(24px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }
  .rebuilt-explain p { color: var(--text-dim); font-size: 0.98rem; margin: 12px 0 0; }
  .rebuilt-explain h3 { font-size: 1.6rem; font-family: 'Public Sans'; font-weight: 900; text-transform: none; letter-spacing: 0; }
  .badge-list { display: flex; flex-direction: column; gap: 12px; font-family: 'IBM Plex Mono', monospace; font-size: 0.82rem; padding: 0; margin: 0; }
  .badge-list li { list-style: none; display: flex; gap: 10px; align-items: flex-start; }
  .badge-list li::before { content: "✓"; color: var(--good); font-weight: 700; flex-shrink: 0; }

  /* ---------- How it works ---------- */
  .steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
  }
  .step {
    background: var(--bg-elevated);
    padding: 28px 24px;
    position: relative;
  }
  .step .step-num {
    font-family: 'Bebas Neue';
    font-size: 2.6rem;
    color: var(--accent-soft);
    -webkit-text-stroke: 1.5px var(--accent);
    color: transparent;
    line-height: 1;
  }
  .step h3 { font-family: 'Public Sans'; font-weight: 900; font-size: 1.1rem; text-transform: none; letter-spacing: 0; margin-top: 10px; }
  .step p { color: var(--text-dim); font-size: 0.9rem; margin: 8px 0 0; }
  .step:not(:last-child)::after {
    content: "";
    position: absolute; top: 50%; right: -1px; transform: translateY(-50%);
    width: 8px; height: 8px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent);
    rotate: 45deg; display: none;
  }
  @media (min-width: 700px) {
    .step:not(:last-child)::after { display: block; }
  }
  @media (max-width: 700px) {
    .steps-row { grid-template-columns: 1fr; }
  }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; max-width: 780px; }
  .faq-item { background: var(--bg-elevated); }
  .faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.98rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-family: 'Bebas Neue';
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { margin: 0; padding: 0 22px 20px; color: var(--text-dim); font-size: 0.92rem; max-width: 68ch; }

  /* ---------- Sticky mobile CTA ---------- */
  .mobile-cta-bar { display: none; }
  @media (max-width: 700px) {
    .mobile-cta-bar {
      display: flex;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
      background: var(--bg-elevated);
      border-top: 1px solid var(--line);
      box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    }
    .mobile-cta-bar a {
      flex: 1; text-align: center; padding: 14px 8px;
      font-weight: 700; font-size: 0.88rem; text-decoration: none;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .mobile-cta-bar a.call { background: var(--accent); color: #fff; }
    .mobile-cta-bar a.dir { color: var(--text); }
    .mobile-cta-bar svg { width: 16px; height: 16px; }
    body { padding-bottom: 54px; }
  }

  /* ---------- Promo banner ---------- */
  .promo {
    background: var(--bg-panel);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
  }
  .promo-copy { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
  .promo-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
  .promo-copy p { color: var(--text-dim); font-size: 1rem; max-width: 40ch; }
  .promo-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
  .btn-light { background: var(--bg-elevated); color: var(--text); border: 1px solid var(--line); }
  .btn-light:hover { border-color: var(--accent); color: var(--accent); }
  .promo-img { min-height: 260px; }
  .promo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* ---------- Contact ---------- */
  .contact-panel {
    background: var(--bg-elevated);
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-col { padding: clamp(28px, 4vw, 44px); }
  .contact-col + .contact-col { border-left: 1px solid var(--line); }
  .contact-col h3 { font-family: 'Public Sans'; font-weight: 900; text-transform: none; letter-spacing: 0; font-size: 1.25rem; margin-bottom: 18px; }
  .phone-line { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: 'IBM Plex Mono', monospace; }
  .phone-line:last-child { border-bottom: none; }
  .phone-line a { text-decoration: none; color: var(--accent); font-weight: 500; font-size: 1.05rem; }
  .phone-line span { color: var(--text-dim); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .addr-block { font-size: 0.98rem; margin-top: 4px; color: var(--text-dim); }
  .addr-block b { color: var(--text); display: block; font-size: 1.05rem; margin-bottom: 4px; font-family: 'Public Sans'; }
  .directions-btn { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--accent); font-weight: 700; font-size: 0.86rem; border-bottom: 1.5px solid var(--accent); padding-bottom: 2px; }
  .hours-table { width: 100%; border-collapse: collapse; font-family: 'IBM Plex Mono', monospace; font-size: 0.88rem; }
  .hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .hours-table tr:last-child td { border-bottom: none; }
  .hours-table td:first-child { color: var(--text-dim); }
  .hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
  .hours-table .closed { color: var(--text-dim); opacity: 0.65; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--line); padding: 40px 0 28px; }
  .foot-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
  .foot-legal { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; color: var(--text-dim); }
  .foot-links { display: flex; gap: 20px; font-size: 0.82rem; font-weight: 700; }
  .foot-links a { text-decoration: none; color: var(--text-dim); }
  .foot-links a:hover { color: var(--accent); }

  @media (max-width: 880px) {
    .util-row { font-size: 0.68rem; }
    nav.links { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-feature { order: -1; max-width: 420px; margin: 0 auto; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .rebuilt-explain { grid-template-columns: 1fr; }
    .promo { grid-template-columns: 1fr; }
    .promo-img { min-height: 200px; }
    .contact-panel { grid-template-columns: 1fr; }
    .contact-col + .contact-col { border-left: none; border-top: 1px solid var(--line); }
  }
