    :root {
      --black: #0A0A0A;
      --carbon: #111111;
      --panel: #1E1E1E;
      --panel-2: #1A1A1A;
      --paper: #f4f0e8;
      --ink: #151719;
      --line: rgba(255, 255, 255, 0.12);
      --dark-line: rgba(21, 23, 25, 0.14);
      --white: #fbfcfd;
      --muted: #a8b0bb;
      --dim: #747e89;
      --red: #D0021B;
      --red-hot: #FF1E1E;
      --gold: #C9A84C;
      --blue: #3eb7ff;
      --green: #25c779;
      --font-display: "Barlow Condensed", Impact, sans-serif;
      --font-body: "Inter", system-ui, sans-serif;
      --font-tech: "Orbitron", monospace;
      --font-script: "Playfair Display", Georgia, serif;
      --max: 1180px;
      --radius: 8px;
      --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    section[id], main[id] { scroll-margin-top: 136px; }
    body {
      margin: 0;
      color: var(--white);
      background: var(--black);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.55;
      overflow-x: hidden;
    }
    body.nav-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
    .skip-link {
      position: fixed;
      top: 12px;
      left: 16px;
      z-index: 100;
      padding: 10px 14px;
      color: white;
      background: var(--red);
      transform: translateY(-150%);
    }
    .skip-link:focus { transform: translateY(0); }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .site-nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      padding: 16px 0;
      transition: padding 180ms ease, background 180ms ease, border-color 180ms ease;
    }
    .site-nav.is-scrolled {
      padding: 10px 0;
      background: linear-gradient(180deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.64) 78%, transparent);
      backdrop-filter: blur(18px);
    }
    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px;
      border: 0;
      background:
        radial-gradient(circle at 12% 50%, rgba(201, 168, 76, 0.12), transparent 24%),
        linear-gradient(90deg, rgba(5, 6, 7, 0.86), rgba(10, 10, 10, 0.56) 38%, rgba(5, 6, 7, 0.82));
      border-radius: var(--radius);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      padding: 5px 14px 5px 0;
      background:
        radial-gradient(ellipse at 28% 50%, rgba(255, 255, 255, 0.055), transparent 58%),
        linear-gradient(90deg, rgba(4, 5, 6, 0.58), rgba(5, 6, 7, 0.28) 56%, rgba(5, 6, 7, 0));
      border-radius: var(--radius);
      box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.025);
      font-family: var(--font-tech);
      font-size: 0.94rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .flag-mark {
      display: grid;
      grid-template-columns: repeat(4, 6px);
      grid-template-rows: repeat(3, 6px);
      gap: 1px;
      padding: 5px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.05);
    }
    .flag-mark span:nth-child(odd) { background: white; }
    .flag-mark span:nth-child(even) { background: var(--red); }
    .brand b { color: var(--red-hot); }
    .brand-logo {
      display: block;
      width: clamp(218px, 20vw, 300px);
      height: auto;
      max-height: 74px;
      object-fit: contain;
    }
    footer .brand-logo {
      width: clamp(236px, 20vw, 320px);
      max-height: 132px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-links a {
      color: var(--muted);
      font-family: var(--font-display);
      font-size: 0.92rem;
      font-weight: 800;
      letter-spacing: 0.055em;
      text-transform: uppercase;
      transition: color 160ms ease;
    }
    .nav-links a:hover, .nav-links a:focus-visible { color: white; }
    .nav-cta {
      padding: 11px 15px;
      color: white !important;
      background: var(--red);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      box-shadow: 0 16px 36px rgba(219, 31, 45, 0.24);
    }
    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      color: white;
      background: rgba(255, 255, 255, 0.07);
      cursor: pointer;
    }
    .nav-toggle span:not(.sr-only) {
      display: block;
      width: 19px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 14px 22px;
      border: 1px solid transparent;
      color: white;
      font-family: var(--font-display);
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .button:hover, .button:focus-visible { transform: translateY(-2px); }
    .button.primary { background: var(--red); box-shadow: 0 16px 38px rgba(219, 31, 45, 0.34); }
    .button.primary:hover { background: var(--red-hot); }
    .button.secondary { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }
    .button.light { color: var(--red); background: white; }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: center;
      overflow: hidden;
      padding: 130px 0 86px;
      background: var(--black);
    }
    .hero-bg, .hero-overlay, .hero-grid { position: absolute; inset: 0; }
    .hero-bg {
      background-image: url("/assets/images/gt3-speed-hero.jpg");
      background-position: 64% center;
      background-size: cover;
      transform: scale(1.015);
      filter: saturate(1.1) contrast(1.06);
    }
    .hero-overlay {
      background:
        radial-gradient(circle at 73% 56%, rgba(219, 31, 45, 0.24), transparent 31%),
        linear-gradient(90deg, rgba(5, 6, 7, 0.95) 0%, rgba(5, 6, 7, 0.76) 42%, rgba(5, 6, 7, 0.28) 100%),
        linear-gradient(0deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 6, 7, 0.08) 48%, rgba(5, 6, 7, 0.62) 100%);
    }
    .hero-grid {
      opacity: 0.34;
      background:
        repeating-linear-gradient(108deg, transparent 0 76px, rgba(255, 255, 255, 0.04) 76px 77px),
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
      background-size: auto, 74px 74px, 74px 74px;
      mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    }
    .hero-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
      align-items: center;
      gap: clamp(30px, 5vw, 72px);
    }
    .eyebrow, .section-label, .panel-label {
      color: var(--gold);
      font-family: var(--font-tech);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }
    .hero h1 {
      margin: 18px 0 22px;
      max-width: 780px;
      font-family: var(--font-display);
      font-size: clamp(4.7rem, 10.5vw, 9.25rem);
      font-weight: 900;
      line-height: 0.82;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .hero h1 span {
      display: block;
      color: var(--red-hot);
      font-style: italic;
    }
    .hero-subtitle {
      max-width: 675px;
      margin: 0 0 34px;
      color: rgba(255, 255, 255, 0.76);
      font-size: clamp(1.04rem, 1.85vw, 1.22rem);
    }
    .hero-subtitle strong { color: white; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 52px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.09);
    }
    .metric {
      padding: 20px 18px;
      background: rgba(10, 13, 15, 0.82);
      backdrop-filter: blur(10px);
    }
    .metric strong {
      display: block;
      font-family: var(--font-tech);
      font-size: clamp(1.08rem, 1.85vw, 1.42rem);
      line-height: 1;
    }
    .metric strong span { color: var(--red-hot); }
    .metric small {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-family: var(--font-display);
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }
    .race-card {
      position: relative;
      min-height: 464px;
      padding: 24px;
      background: rgba(10, 13, 15, 0.62);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
    }
    .race-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 18%, rgba(219, 31, 45, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 45%);
      pointer-events: none;
    }
    .race-card-inner { position: relative; z-index: 1; }
    .race-card:hover,
    .race-card:focus-within {
      transform: translateY(-3px);
      border-color: rgba(201, 168, 76, 0.34);
      background: rgba(12, 16, 19, 0.7);
      box-shadow: 0 34px 94px rgba(0, 0, 0, 0.5), 0 0 34px rgba(255, 30, 30, 0.08);
    }
    .rpm {
      position: relative;
      width: min(330px, 78vw);
      aspect-ratio: 1;
      margin: 18px auto 28px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.12), transparent 0.5%),
        radial-gradient(circle, #12181d 0 31%, #060708 32% 59%, rgba(255, 255, 255, 0.06) 60%, transparent 61%),
        linear-gradient(145deg, rgba(62, 183, 255, 0.13), rgba(255, 30, 30, 0.13) 72%, transparent);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06), 0 22px 60px rgba(0, 0, 0, 0.42);
      transition: box-shadow 220ms ease, filter 220ms ease;
    }
    .rpm::before,
    .rpm::after { content: none; }
    .speedometer-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: visible;
    }
    .speedometer-ring {
      fill: none;
      stroke: rgba(255, 255, 255, 0.14);
      stroke-width: 7;
      stroke-linecap: round;
    }
    .speedometer-warm {
      fill: none;
      stroke: rgba(201, 168, 76, 0.88);
      stroke-width: 8;
      stroke-linecap: round;
      filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.28));
    }
    .speedometer-redline {
      fill: none;
      stroke: var(--red-hot);
      stroke-width: 9;
      stroke-linecap: round;
      filter: drop-shadow(0 0 10px rgba(255, 30, 30, 0.42));
    }
    .redline-glow {
      fill: url(#redlineGlow);
      opacity: 0;
      mix-blend-mode: screen;
      transition: opacity 180ms ease;
    }
    .speedometer-ticks line {
      stroke: rgba(255, 255, 255, 0.74);
      stroke-linecap: round;
      stroke-width: 2.3;
    }
    .speedometer-ticks .mid { stroke-width: 3.2; }
    .speedometer-ticks .major {
      stroke: rgba(255, 255, 255, 0.94);
      stroke-width: 4.6;
    }
    .speedometer-ticks .warm-tick { stroke: rgba(201, 168, 76, 0.95); }
    .speedometer-ticks .redline-tick {
      stroke: var(--red-hot);
      filter: drop-shadow(0 0 5px rgba(255, 30, 30, 0.65));
    }
    .speedometer-labels text {
      fill: rgba(255, 255, 255, 0.9);
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 0;
      text-anchor: middle;
      dominant-baseline: middle;
    }
    .speedometer-labels .redline-label {
      fill: #ff6a6a;
      filter: drop-shadow(0 0 5px rgba(255, 30, 30, 0.48));
    }
    .speedometer-needle {
      stroke: var(--red-hot);
      stroke-width: 6;
      stroke-linecap: round;
      transform-origin: 180px 180px;
      transform-box: view-box;
      transform: rotate(-135deg);
      filter: drop-shadow(0 0 10px rgba(255, 30, 30, 0.78));
      will-change: transform;
    }
    .needle-counterweight {
      stroke: #c6cbd0;
      stroke-width: 5;
      stroke-linecap: round;
      opacity: 0.95;
      transform-origin: 180px 180px;
      transform-box: view-box;
      transform: rotate(-135deg);
      will-change: transform;
    }
    .speedometer-cap {
      fill: #0f151a;
      stroke: rgba(255, 255, 255, 0.18);
      stroke-width: 2;
      filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.58));
    }
    .race-card:hover .rpm,
    .race-card:focus-within .rpm {
      filter: saturate(1.08);
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 22px 60px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 51, 65, 0.14);
    }
    .rpm:hover .speedometer-needle,
    .rpm:hover .needle-counterweight,
    .rpm.is-revving .speedometer-needle,
    .rpm.is-revving .needle-counterweight {
      animation: speedNeedleRev 1550ms cubic-bezier(0.25, 0.72, 0.18, 1) both;
    }
    .rpm.is-quick-rev .speedometer-needle,
    .rpm.is-quick-rev .needle-counterweight {
      animation: speedNeedleQuickRev 1280ms cubic-bezier(0.25, 0.72, 0.18, 1) both;
    }
    .rpm:hover .redline-glow,
    .rpm.is-revving .redline-glow { animation: redlineGlowPulse 1550ms ease both; }
    .rpm.is-quick-rev .redline-glow { animation: redlineGlowPulse 1280ms ease both; }
    @keyframes speedNeedleRev {
      0%, 100% { transform: rotate(-135deg); }
      16% { transform: rotate(-92deg); }
      35% { transform: rotate(-32deg); }
      54% { transform: rotate(36deg); }
      72% { transform: rotate(112deg); }
      84% { transform: rotate(176deg); }
      91% { transform: rotate(150deg); }
    }
    @keyframes speedNeedleQuickRev {
      0%, 100% { transform: rotate(-135deg); }
      18% { transform: rotate(-72deg); }
      42% { transform: rotate(18deg); }
      66% { transform: rotate(126deg); }
      82% { transform: rotate(164deg); }
      92% { transform: rotate(132deg); }
    }
    @keyframes redlineGlowPulse {
      0%, 48%, 100% { opacity: 0; }
      68%, 86% { opacity: 0.82; }
    }
    .rpm-center {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: grid;
      place-items: center;
      text-align: center;
      pointer-events: none;
    }
    .rpm-center strong {
      display: block;
      font-family: var(--font-tech);
      font-size: 1.8rem;
      line-height: 1;
    }
    .rpm-center span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-family: var(--font-tech);
      font-size: 0.56rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .dash-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 9px;
      margin: 0;
    }
    .dash-stats div {
      display: grid;
      align-content: start;
      min-height: 120px;
      padding: 12px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .dash-stats div:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.095);
      border-color: rgba(201, 168, 76, 0.34);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    }
    .dash-stats dt {
      font-family: var(--font-display);
      font-size: clamp(1.02rem, 1.45vw, 1.24rem);
      font-weight: 900;
      line-height: 0.98;
      text-transform: uppercase;
    }
    .dash-stats dt span {
      color: var(--red-hot);
      font-style: italic;
    }
    .dash-stats .stat-tag {
      display: block;
      margin-top: 7px;
      color: var(--gold);
      font-family: var(--font-tech);
      font-size: 0.54rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .dash-stats dd {
      margin: 7px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.72rem;
      line-height: 1.36;
    }

    .quick-strip {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: min(calc(100% - 32px), var(--max));
      margin: -45px auto 0;
      overflow: hidden;
      background: var(--panel);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow);
    }
    .quick-strip div {
      padding: 25px;
      border-right: 1px solid rgba(255, 255, 255, 0.11);
      transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .quick-strip div:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.045);
      box-shadow: inset 0 2px 0 rgba(201, 168, 76, 0.45);
    }
    .quick-strip div:last-child { border-right: 0; }
    .quick-strip strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.12rem;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
    }
    .quick-strip span {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .ticker {
      overflow: hidden;
      background: var(--red);
      border-block: 1px solid rgba(255, 255, 255, 0.18);
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 34s linear infinite;
    }
    @keyframes ticker { to { transform: translateX(-50%); } }
    .ticker span {
      padding: 12px 28px;
      color: rgba(255, 255, 255, 0.92);
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    section { position: relative; }
    .section { padding: 108px 0; }
    .section.light {
      color: var(--ink);
      background: var(--paper);
    }
    .section.dark {
      background:
        radial-gradient(circle at 12% 20%, rgba(219, 31, 45, 0.12), transparent 26%),
        linear-gradient(180deg, #11161a, #08090a);
    }
    .section.grid-bg {
      background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #090b0d;
      background-size: 78px 78px;
    }
    .section.lane-bg {
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.82) 48%, rgba(5, 6, 7, 0.52) 100%),
        linear-gradient(0deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.18) 45%, rgba(5, 6, 7, 0.78) 100%),
        url("/assets/images/retirement-lane-bg.jpg") center right / cover;
    }
    .section.lane-bg::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.28;
      background:
        repeating-linear-gradient(108deg, transparent 0 76px, rgba(255, 255, 255, 0.05) 76px 77px),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
      background-size: auto, 78px 78px, 78px 78px;
      mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    }
    .section.lane-bg > .container { position: relative; z-index: 1; }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
      align-items: end;
      gap: 56px;
      margin-bottom: 48px;
    }
    h2, h3, p { overflow-wrap: anywhere; }
    h2 {
      margin: 12px 0 0;
      font-family: var(--font-display);
      font-size: clamp(2.7rem, 5.8vw, 5.4rem);
      font-weight: 900;
      line-height: 0.9;
      text-transform: uppercase;
    }
    h2 em { color: var(--red-hot); font-style: italic; }
    .section.light h2 em { color: var(--red); }
    .section-head p, .lead {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }
    .section.light .section-head p, .section.light .lead { color: #555e66; }
    .section-label.prominent {
      font-size: clamp(0.82rem, 1vw, 0.94rem);
      letter-spacing: 0.2em;
    }

    .track-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .track-card {
      min-height: 306px;
      padding: 26px;
      color: white;
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        var(--panel);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .track-card:hover {
      transform: translateY(-5px);
      border-color: rgba(216, 180, 86, 0.52);
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
        #202428;
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26), 0 0 24px rgba(201, 168, 76, 0.08);
    }
    .track-card span {
      display: inline-flex;
      color: var(--gold);
      font-family: var(--font-tech);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.16em;
    }
    .track-card h3 {
      margin: 70px 0 14px;
      font-family: var(--font-script);
      font-size: clamp(1.6rem, 2.4vw, 2.18rem);
      font-style: italic;
      font-weight: 800;
      line-height: 1;
    }
    .track-card p { margin: 0; color: var(--muted); }

    .strategy-layout {
      display: grid;
      grid-template-columns: 0.78fr 1.1fr;
      gap: 58px;
      align-items: start;
    }
    .strategy-copy {
      position: sticky;
      top: 118px;
    }
    .strategy-copy p { margin-top: 22px; }
    .garage-subhead {
      margin: 0 0 16px;
      color: rgba(255, 255, 255, 0.62);
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .strategy-tabs {
      padding: 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: var(--shadow);
      transition: transform 210ms ease, border-color 210ms ease, box-shadow 210ms ease;
    }
    .strategy-tabs:hover {
      transform: translateY(-2px);
      border-color: rgba(216, 180, 86, 0.26);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
    }
    .tab-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }
    .tab-button {
      min-height: 46px;
      padding: 10px 12px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.68);
      background: rgba(255, 255, 255, 0.07);
      font-family: var(--font-display);
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .tab-button.active {
      color: var(--ink);
      background: var(--gold);
    }
    .tab-panel {
      min-height: 380px;
      padding: clamp(26px, 5vw, 56px);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        #111315;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
    }
    .tab-panel:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 65, 84, 0.24);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        #111315;
      box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28), 0 0 26px rgba(255, 30, 30, 0.07);
    }
    .tab-panel h3 {
      margin: 0;
      font-family: var(--font-script);
      font-size: clamp(2rem, 4vw, 4rem);
      font-style: italic;
      line-height: 0.98;
    }
    .tab-panel p {
      max-width: 650px;
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.73);
      font-size: 1.06rem;
    }
    .feature-list {
      display: grid;
      gap: 12px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }
    .feature-list li {
      position: relative;
      padding-left: 27px;
      color: rgba(255, 255, 255, 0.84);
      transition: transform 160ms ease, color 160ms ease;
    }
    .feature-list li:hover {
      transform: translateX(3px);
      color: white;
    }
    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.67em;
      width: 14px;
      height: 3px;
      background: var(--red-hot);
    }

    .annuity-section {
      color: var(--white);
      background:
        radial-gradient(circle at 12% 18%, rgba(201, 168, 76, 0.12), transparent 28%),
        linear-gradient(180deg, #0b0d0f, #050607);
    }
    .annuity-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
      gap: 52px;
      align-items: end;
      margin-bottom: 40px;
    }
    .annuity-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }
    .ann-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .ann-card {
      min-height: 248px;
      padding: 26px;
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        var(--panel);
      border: 1px solid rgba(255, 255, 255, 0.11);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
    }
    .ann-card:hover {
      transform: translateY(-5px);
      border-color: rgba(201, 168, 76, 0.42);
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        #171b1f;
      box-shadow: 0 26px 58px rgba(0, 0, 0, 0.3), 0 0 28px rgba(201, 168, 76, 0.08);
    }
    .ann-card-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }
    .ann-card-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      color: var(--gold);
      border: 1px solid rgba(201, 168, 76, 0.34);
      font-size: 1.4rem;
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
    }
    .ann-card:hover .ann-card-icon {
      transform: translateY(-1px) scale(1.04);
      background: rgba(201, 168, 76, 0.09);
      border-color: rgba(201, 168, 76, 0.56);
    }
    .ann-card h3 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 1.45rem;
      line-height: 1;
      text-transform: uppercase;
    }
    .ann-card p { margin: 0; color: var(--muted); }
    .ann-big-quote {
      margin-top: 14px;
      padding: clamp(26px, 4vw, 42px);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
    }
    .ann-big-quote:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.075);
      border-color: rgba(201, 168, 76, 0.28);
      box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
    }
    .ann-big-quote blockquote {
      margin: 0;
      font-family: var(--font-script);
      font-size: clamp(1.8rem, 3.4vw, 3.4rem);
      font-style: italic;
      font-weight: 800;
      line-height: 1;
    }
    .ann-big-quote cite {
      display: block;
      margin-top: 18px;
      color: var(--gold);
      font-style: normal;
      font-family: var(--font-tech);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .lane-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
      gap: 64px;
      align-items: start;
    }
    .lane-copy { position: sticky; top: 118px; }
    .lane-copy p { margin-top: 20px; }
    .lane-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .lane-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      padding: 24px;
      background: var(--panel);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
    }
    .lane-list li:hover {
      transform: translateX(3px) translateY(-2px);
      background: #171c21;
      border-color: rgba(255, 65, 84, 0.24);
      box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28), 0 0 22px rgba(255, 30, 30, 0.06);
    }
    .lane-list li:hover span {
      border-color: rgba(216, 180, 86, 0.42);
      color: var(--gold);
    }
    .lane-list span {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      color: var(--red-hot);
      border: 1px solid rgba(219, 31, 45, 0.38);
      font-family: var(--font-tech);
      font-size: 0.72rem;
      font-weight: 800;
      transition: border-color 190ms ease, color 190ms ease;
    }
    .lane-list h3 {
      margin: 0 0 7px;
      font-family: var(--font-display);
      font-size: 1.45rem;
      line-height: 1;
      text-transform: uppercase;
    }
    .lane-list p { margin: 0; color: var(--muted); }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 2px solid var(--red);
    }
    .process-step {
      min-height: 285px;
      padding: 28px 24px 0 0;
      border-right: 1px solid var(--line);
      transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
    }
    .process-step:hover {
      transform: translateY(-3px);
      border-right-color: rgba(216, 180, 86, 0.28);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 78%);
      box-shadow: inset 0 2px 0 rgba(201, 168, 76, 0.24);
    }
    .process-step:hover span {
      background: var(--gold);
      color: var(--ink);
      box-shadow: 0 0 22px rgba(216, 180, 86, 0.2);
    }
    .process-step:last-child { border-right: 0; }
    .process-step span {
      display: inline-grid;
      place-items: center;
      width: 58px;
      height: 58px;
      margin-bottom: 54px;
      color: white;
      background: var(--red);
      font-family: var(--font-tech);
      font-size: 0.75rem;
      font-weight: 800;
      clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
      transition: background 190ms ease, color 190ms ease, box-shadow 190ms ease;
    }
    .process-step h3 {
      margin: 0 0 12px;
      font-family: var(--font-display);
      font-size: 1.5rem;
      line-height: 1;
      text-transform: uppercase;
    }
    .process-step p { margin: 0; color: var(--muted); }

    .quote-band {
      padding: 86px 0;
      color: white;
      background: linear-gradient(110deg, rgba(219, 31, 45, 0.96), rgba(216, 180, 86, 0.9));
    }
    .quote-content {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.74fr);
      gap: 54px;
      align-items: end;
    }
    .quote-mark {
      margin: 0;
      font-family: var(--font-script);
      font-size: clamp(2.2rem, 4.5vw, 4.9rem);
      font-style: italic;
      font-weight: 800;
      line-height: 1;
    }
    .quote-content p:last-child {
      margin: 0;
      color: rgba(21, 23, 25, 0.72);
      font-weight: 800;
    }

    .pit-wall {
      display: grid;
      gap: 28px;
    }
    .scoreboard {
      padding: clamp(26px, 4vw, 48px);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(10, 13, 15, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: var(--shadow);
      clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
      transition: transform 210ms ease, border-color 210ms ease, background 210ms ease, box-shadow 210ms ease;
    }
    .scoreboard:hover {
      transform: translateY(-3px);
      border-color: rgba(201, 168, 76, 0.3);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
        rgba(10, 13, 15, 0.94);
      box-shadow: 0 34px 94px rgba(0, 0, 0, 0.48), 0 0 28px rgba(201, 168, 76, 0.07);
    }
    .scoreboard p {
      max-width: 720px;
      color: var(--muted);
      font-size: 1.05rem;
    }
    .signal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 30px;
    }
    .signal {
      min-height: 150px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .signal:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.075);
      border-color: rgba(201, 168, 76, 0.4);
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
    }
    .signal strong {
      display: block;
      color: white;
      font-family: var(--font-display);
      font-size: 1.45rem;
      line-height: 1;
      text-transform: uppercase;
    }
    .signal small {
      display: block;
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .cta-band {
      overflow: hidden;
      padding: 92px 0;
      color: white;
      background:
        radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.18), transparent 18%),
        linear-gradient(110deg, rgba(208, 2, 27, 0.98), rgba(201, 168, 76, 0.92));
    }
    .cta-inner {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
      gap: 48px;
      align-items: center;
    }
    .cta-inner h2 { margin: 0; }
    .cta-inner h2 em { color: white; }
    .cta-inner p {
      margin: 0 0 24px;
      color: rgba(21, 23, 25, 0.72);
      font-weight: 800;
    }
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .button.light-outline {
      color: white;
      border-color: rgba(255, 255, 255, 0.42);
      background: rgba(255, 255, 255, 0.08);
    }

    .speed-divider {
      position: relative;
      height: clamp(260px, 36vw, 430px);
      overflow: hidden;
      background: var(--black);
    }
    .speed-divider img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: 53% 28%;
      filter: saturate(0.95) contrast(1.08) brightness(0.72);
    }
    .speed-divider::before,
    .speed-divider::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .speed-divider::before {
      background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.2) 48%, rgba(10, 10, 10, 0.82)),
        linear-gradient(0deg, rgba(10, 10, 10, 0.92), transparent 34%, transparent 62%, rgba(10, 10, 10, 0.86));
    }
    .speed-divider::after {
      opacity: 0.32;
      background:
        repeating-linear-gradient(108deg, transparent 0 74px, rgba(255, 255, 255, 0.05) 74px 75px),
        linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.14), transparent);
    }
    .speed-divider-badge {
      position: absolute;
      left: max(20px, calc((100vw - var(--max)) / 2 + 16px));
      bottom: 34px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      color: white;
      background: rgba(5, 6, 7, 0.68);
      border-left: 3px solid var(--gold);
      backdrop-filter: blur(10px);
      font-family: var(--font-tech);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }
    .speed-divider-badge:hover {
      transform: translateY(-2px);
      background: rgba(5, 6, 7, 0.78);
      border-color: #37d26b;
    }
    .speed-divider-badge span {
      width: 9px;
      height: 9px;
      background: #37d26b;
      border-radius: 50%;
      box-shadow: 0 0 18px rgba(55, 210, 107, 0.72);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }
    .speed-divider-badge:hover span {
      transform: scale(1.18);
      box-shadow: 0 0 24px rgba(55, 210, 107, 0.94);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
      gap: 58px;
      align-items: start;
    }
    .contact-card {
      padding: 28px;
      background: var(--panel);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
      transition: transform 210ms ease, border-color 210ms ease, box-shadow 210ms ease;
    }
    .contact-card:hover {
      transform: translateY(-3px);
      border-color: rgba(216, 180, 86, 0.28);
      box-shadow: 0 32px 84px rgba(0, 0, 0, 0.42), 0 0 28px rgba(201, 168, 76, 0.06);
    }
    .contact-card form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    label {
      display: grid;
      gap: 8px;
      color: var(--muted);
      font-family: var(--font-tech);
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .contact-card .full { grid-column: 1 / -1; }
    input, select, textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 13px;
      color: white;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 0;
      outline: none;
    }
    select { color-scheme: dark; }
    textarea { resize: vertical; }
    input:focus, select:focus, textarea:focus {
      border-color: var(--red-hot);
      box-shadow: 0 0 0 3px rgba(219, 31, 45, 0.16);
    }
    .turnstile-field {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      min-height: 65px;
    }
    .contact-copy p { color: var(--muted); }
    .contact-lines {
      display: grid;
      gap: 12px;
      margin-top: 30px;
    }
    .contact-lines a, .contact-lines span {
      display: block;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      color: white;
      font-weight: 700;
    }
    .form-note {
      grid-column: 1 / -1;
      margin: 0;
      color: var(--dim);
      font-family: var(--font-body);
      font-size: 0.84rem;
      letter-spacing: 0;
      text-transform: none;
    }

    footer {
      padding: 68px 0 34px;
      color: var(--dim);
      background:
        radial-gradient(circle at 12% 0%, rgba(201, 168, 76, 0.07), transparent 30%),
        linear-gradient(180deg, #0a0a0a, #060707 72%);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-logo {
      background:
        radial-gradient(ellipse at 35% 50%, rgba(255, 255, 255, 0.055), transparent 62%),
        linear-gradient(90deg, rgba(4, 5, 6, 0.48), rgba(5, 6, 7, 0.16) 64%, transparent);
      box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.02);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.45fr 0.75fr 0.75fr 0.95fr;
      gap: 34px;
      align-items: start;
    }
    .footer-brand p {
      max-width: 430px;
      margin: 18px 0 0;
      font-size: 0.9rem;
      line-height: 1.7;
    }
    .footer-col h4 {
      margin: 0 0 16px;
      color: var(--gold);
      font-family: var(--font-tech);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }
    .footer-col ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .footer-col a {
      color: var(--muted);
      font-weight: 700;
      transition: color 160ms ease;
    }
    .footer-col a:hover, .footer-col a:focus-visible { color: white; }
    .footer-bottom {
      display: grid;
      grid-template-columns: minmax(0, 0.55fr) minmax(280px, 1fr);
      gap: 30px;
      margin-top: 46px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-copy {
      color: white;
      font-family: var(--font-tech);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .footer-disclaimer {
      margin: 0;
      font-size: 0.76rem;
      line-height: 1.6;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 1120px) and (min-width: 981px) {
      .brand-logo { width: clamp(180px, 16vw, 208px); }
      .nav-links { gap: 10px; }
      .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.035em;
      }
      .nav-cta { padding-inline: 10px; }
    }

    @media (max-width: 980px) {
      section[id], main[id] { scroll-margin-top: 112px; }
      .nav-toggle { display: block; }
      .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 86px;
        display: grid;
        gap: 0;
        padding: 12px;
        background: rgba(5, 6, 7, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
      }
      .nav-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav-links a { padding: 13px 14px; }
      .nav-cta { margin-top: 8px; text-align: center; }
      .hero-layout, .section-head, .strategy-layout, .annuity-head, .lane-layout, .quote-content, .cta-inner, .contact-grid, .footer-inner, .footer-bottom {
        grid-template-columns: 1fr;
      }
      .race-card { min-height: auto; }
      .track-grid, .ann-cards, .signal-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
      .quick-strip { grid-template-columns: 1fr; }
      .quick-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
      }
      .quick-strip div:last-child { border-bottom: 0; }
      .strategy-copy, .lane-copy { position: static; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .site-nav { padding: 10px 0; }
      .nav-shell { padding: 8px; }
      .brand { font-size: 0.8rem; letter-spacing: 0.055em; }
      .brand-logo { width: 190px; max-height: 58px; }
      footer .brand-logo { width: 220px; max-height: 96px; }
      .flag-mark { grid-template-columns: repeat(4, 5px); grid-template-rows: repeat(3, 5px); }
      .hero {
        min-height: auto;
        padding-top: 106px;
      }
      .hero-bg { background-position: 58% center; }
      .hero h1 { font-size: clamp(4rem, 20vw, 5.35rem); }
      .hero-actions, .hero-actions .button, .button.light, .button.light-outline { width: 100%; }
      .hero-metrics, .dash-stats, .track-grid, .ann-cards, .signal-grid, .process-grid, .tab-list, .contact-card form {
        grid-template-columns: 1fr;
      }
      .section { padding: 74px 0; }
      .section-head { gap: 20px; margin-bottom: 32px; }
      .track-card { min-height: 240px; }
      .track-card h3 { margin-top: 46px; }
      .tab-panel { min-height: 0; }
      .lane-list li { grid-template-columns: 1fr; }
      .process-step {
        min-height: auto;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .process-step span { margin-bottom: 24px; }
      .contact-card { padding: 20px; }
    }
