:root {
        --red: #e8000d;
        --red-dim: rgba(232, 0, 13, 0.08);
        --navy: #0c0f14;
        --white: #ffffff;
        --off: #f6f6f4;
        --g100: #f0f0ee;
        --g200: #e2e2de;
        --g300: #c8c8c2;
        --g400: #8c8c86;
        --g600: #4a4a44;
        --gold: #c9a84c;
        --green: #25d366;
        --r: 4px;
        --r-md: 10px;
        --r-lg: 16px;
        --ease: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        --sh-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
        --sh-md: 0 8px 32px rgba(0, 0, 0, 0.08);
        --sh-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }
      body {
        font-family: "Outfit", sans-serif;
        color: var(--navy);
        background: var(--white);
        overflow-x: hidden;
        line-height: 1.55;
        -webkit-font-smoothing: antialiased;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      button {
        cursor: pointer;
        font-family: "Outfit", sans-serif;
        border: none;
        outline: none;
      }
      ul {
        list-style: none;
      }
      input,
      select,
      textarea {
        font-family: "Outfit", sans-serif;
      }
      ::-webkit-scrollbar {
        width: 4px;
      }
      ::-webkit-scrollbar-track {
        background: var(--g100);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--g300);
        border-radius: 99px;
      }

      /* LAYOUT */
      .container {
        width: 100%;
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .section {
        padding: 88px 0;
      }

      /* TYPOGRAPHY */
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 12px;
      }
      .eyebrow::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--red);
      }
      .big-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(44px, 7vw, 88px);
        line-height: 0.95;
        letter-spacing: 1px;
        color: var(--navy);
      }
      .big-title em {
        color: var(--red);
        font-style: normal;
      }
      .section-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(32px, 5vw, 60px);
        line-height: 1;
        letter-spacing: 0.5px;
        color: white;
        margin-bottom: 12px;
      }
      .section-title em {
        color: var(--red);
        font-style: normal;
      }
      .section-sub {
        font-size: 14.5px;
        color: var(--g600);
        max-width: 500px;
        line-height: 1.75;
        font-weight: 400;
      }

      /* BUTTONS */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 24px;
        border-radius: var(--r);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: var(--ease);
        white-space: nowrap;
        cursor: pointer;
        border: none;
      }
      .btn-primary {
        background: var(--red);
        color: #fff;
        box-shadow: 0 4px 16px rgba(232, 0, 13, 0.28);
      }
      .btn-primary:hover {
        background: #c40009;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232, 0, 13, 0.38);
      }
      .btn-dark {
        background: var(--navy);
        color: #fff;
      }
      .btn-dark:hover {
        background: #1a2230;
        transform: translateY(-2px);
      }
      .btn-outline {
        background: transparent;
        color: var(--navy);
        border: 1.5px solid var(--g200);
      }
      .btn-outline:hover {
        border-color: var(--navy);
      }
      .btn-ghost {
        background: transparent;
        color: var(--g600);
        padding: 11px 16px;
      }
      .btn-ghost:hover {
        color: var(--navy);
        background: var(--g100);
      }
      .btn-lg {
        padding: 15px 30px;
        font-size: 14px;
        letter-spacing: 0.5px;
      }
      .btn-sm {
        padding: 8px 16px;
        font-size: 12px;
      }
      .btn svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
      }

      /* NAV */
      #navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: var(--ease);
        background: rgba(255, 255, 255, 0.97);
        border-bottom: 1px solid var(--g100);
      }
      #navbar.scrolled {
        backdrop-filter: blur(24px);
        box-shadow: 0 1px 0 var(--g200);
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }
      .nav-logo {
        flex: 1;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
        flex: 0 0 auto;
      }
      .nav-cta {
        flex: 1;
        justify-content: flex-end;
      }
      .nav-links a {
        padding: 7px 13px;
        font-size: 13px;
        font-weight: 500;
        color: var(--g600);
        border-radius: var(--r);
        transition: var(--ease);
        cursor: pointer;
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--navy);
        background: var(--g100);
      }
      .nav-links a.active {
        font-weight: 600;
      }
      .nav-cta {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-phone {
        font-size: 12px;
        font-weight: 600;
        color: var(--g600);
        display: flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
      }
      .nav-phone svg {
        color: var(--red);
        width: 13px;
        height: 13px;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
        border: none;
        background: none;
      }
      .hamburger span {
        width: 30px;
        height: 4px;
        background: var(--navy);
        display: block;
        transition: var(--ease);
      }
      .mobile-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
      }
      .mobile-nav.open {
        display: flex;
      }
      .mobile-nav a {
        font-size: 28px;
        font-family: "Bebas Neue", sans-serif;
        letter-spacing: 1px;
        color: var(--navy);
        padding: 10px 40px;
        transition: var(--ease);
        cursor: pointer;
      }
      .mobile-nav a:hover {
        color: var(--red);
      }
      .mobile-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--g100);
        border: none;
        cursor: pointer;
        color: var(--navy);
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--ease);
      }
      .mobile-close:hover {
        background: var(--g200);
        color: var(--red);
      }

      /* PAGE SYSTEM */
      .page {
        display: none;
      }
      .page.active {
        display: block;
      }

      /* HERO SLIDER */
      #home-hero {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 520px;
        overflow: hidden;
        padding-top: 0;
      }
      .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
        will-change: transform;
      }
      .slide {
        position: relative;
        min-width: 100%;
        height: 100%;
        overflow: hidden;
        flex-shrink: 0;
      }
      .slide-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.06);
        transition: transform 6s ease;
      }
      .slide.active .slide-bg {
        transform: scale(1);
      }
      .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          rgba(12, 15, 20, 0.82) 0%,
          rgba(12, 15, 20, 0.55) 55%,
          rgba(12, 15, 20, 0.18) 100%
        );
        z-index: 1;
      }
      .slide-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 68px;
      }
      .slide-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.6);
        margin-bottom: 16px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
      }
      .slide-kicker-dot {
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--red);
      }
      .slide.active .slide-kicker { opacity: 1; transform: translateY(0); }
      .slide-title {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(48px, 8vw, 100px);
        line-height: 0.95;
        letter-spacing: 1px;
        color: #fff;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s 0.35s ease, transform 0.7s 0.35s ease;
      }
      .slide-title em { color: var(--red); font-style: normal; }
      .slide.active .slide-title { opacity: 1; transform: translateY(0); }
      .slide-sub {
        font-size: clamp(14px, 1.8vw, 16px);
        color: rgba(255,255,255,0.7);
        line-height: 1.65;
        max-width: 480px;
        margin-bottom: 32px;
        font-weight: 400;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
      }
      .slide.active .slide-sub { opacity: 1; transform: translateY(0); }
      .slide-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.6s 0.65s ease, transform 0.6s 0.65s ease;
      }
      .slide.active .slide-actions { opacity: 1; transform: translateY(0); }

      /* Slider controls */
      .slider-prev, .slider-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 48px; height: 48px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        transition: var(--ease);
        backdrop-filter: blur(8px);
      }
      .slider-prev:hover, .slider-next:hover {
        background: var(--red);
        border-color: var(--red);
      }
      .slider-prev { left: 24px; }
      .slider-next { right: 24px; }
      .slider-dots {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        gap: 8px;
        align-items: center;
      }
      .slider-dot {
        width: 6px; height: 6px;
        border-radius: 3px;
        background: rgba(255,255,255,0.35);
        cursor: pointer;
        transition: all 0.35s ease;
        border: none;
      }
      .slider-dot.active {
        width: 28px;
        background: var(--red);
      }
      .slider-progress {
        position: absolute;
        bottom: 0; left: 0;
        height: 3px;
        background: var(--red);
        z-index: 10;
        transition: width linear;
      }
      /* Hero stats bar at bottom */
      .hero-stats-bar {
        position: absolute;
        bottom: 64px;
        right: 0;
        z-index: 10;
        background: rgba(12,15,20,0.72);
        backdrop-filter: blur(16px);
        border-left: 3px solid var(--red);
        padding: 18px 28px;
        display: flex;
        gap: 28px;
      }
      .hero-stat .num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 30px;
        color: #fff;
        line-height: 1;
      }
      .hero-stat .lbl {
        font-size: 10px;
        color: rgba(255,255,255,0.45);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 2px;
      }
      .hero-stat-badge {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
      }
      .hero-stat-badge svg {
        width: 22px;
        height: 22px;
        color: var(--red);
        margin-bottom: 6px;
      }

        .image-logo {
                width: 20%;
        }
      /* ── MOBILE HERO — dedicated section, no slider conflict ── */

      /* Hide mobile hero on desktop */
      #mobile-hero { display: none; }

      /* ── MOBILE HERO CSS (≤768px) ── */
      @media (max-width: 768px) {

        /* Hide desktop slider entirely */
        #home-hero { display: none !important; }

        /* Show mobile hero */
        #mobile-hero {
          display: flex;
          flex-direction: column;
          position: relative;
          height: 100svh;
          min-height: 600px;
          overflow: hidden;
        }

        /* Background image */
        .mob-hero-bg {
          position: absolute;
          inset: 0;
          background-image: url('./Images/slide02.png');
          background-size: cover;
          background-position: center;
          filter: brightness(0.5);
          z-index: 0;
        }

        /* Gradient overlay — dark at bottom for text */
        .mob-hero-bg::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(
            180deg,
            rgba(8,11,16,0.3) 0%,
            rgba(8,11,16,0.2) 35%,
            rgba(8,11,16,0.7) 68%,
            rgba(8,11,16,0.96) 100%
          );
        }

        /* Nav Logo */
        .image-logo {
          width: 40%;
        }

        /* Thin red top line */
        #mobile-hero::before {
          content: "";
          position: absolute;
          top: 0; left: 0; right: 0;
          height: 3px;
          background: linear-gradient(90deg, transparent, var(--red) 25%, var(--red) 75%, transparent);
          z-index: 10;
        }

        /* Red atmosphere glow — bottom left */
        #mobile-hero::after {
          content: "";
          position: absolute;
          bottom: -60px; left: -60px;
          width: 280px; height: 280px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(232,0,13,0.14) 0%, transparent 70%);
          z-index: 1;
          pointer-events: none;
        }

        /* Content — pushed to bottom */
        .mob-hero-content {
          position: relative;
          z-index: 5;
          flex: 1;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
          padding-bottom: 28px;
          padding-top: 72px;
        }

        /* Kicker pill */
        .mob-hero-kicker {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          font-size: 9px;
          font-weight: 600;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: rgba(255,255,255,0.65);
          background: rgba(255,255,255,0.08);
          border: 1px solid rgba(255,255,255,0.15);
          border-radius: 99px;
          padding: 5px 13px 5px 9px;
          width: fit-content;
          margin-bottom: 16px;
          backdrop-filter: blur(8px);
        }
        .mob-kicker-dot {
          width: 6px; height: 6px;
          border-radius: 50%;
          background: var(--red);
          box-shadow: 0 0 8px rgba(232,0,13,0.9);
          flex-shrink: 0;
        }

        /* Headline */
        .mob-hero-title {
          font-family: "Bebas Neue", sans-serif;
          font-size: 56px;
          line-height: 0.92;
          letter-spacing: -0.5px;
          color: #fff;
          margin-bottom: 16px;
          text-shadow: 0 2px 24px rgba(0,0,0,0.5);
        }
        .mob-hero-title em {
          color: var(--red);
          font-style: normal;
          display: block;
        }

        /* Feature pills */
        .mob-hero-pills {
          display: flex;
          flex-wrap: wrap;
          gap: 7px;
          margin-bottom: 24px;
        }
        .mob-hero-pill {
          display: inline-flex;
          align-items: center;
          gap: 5px;
          background: rgba(255,255,255,0.08);
          border: 1px solid rgba(255,255,255,0.14);
          border-radius: 4px;
          padding: 5px 10px;
          font-size: 11px;
          font-weight: 500;
          color: rgba(255,255,255,0.8);
          backdrop-filter: blur(6px);
        }
        .mob-hero-pill svg {
          width: 11px; height: 11px;
          color: var(--red);
          flex-shrink: 0;
        }

        /* Sub text — hidden on mobile, pills do the job */
        .mob-hero-sub { display: none; }

        /* Buttons */
        .mob-hero-actions {
          display: flex;
          flex-direction: column;
          gap: 10px;
        }
        .mob-hero-actions .btn {
          width: 100%;
          justify-content: center;
          padding: 15px 20px;
          font-size: 14px;
          font-weight: 700;
          border-radius: 6px;
        }
        .mob-hero-actions .btn-primary {
          box-shadow: 0 6px 24px rgba(232,0,13,0.42);
        }
        .mob-outline-btn {
          background: rgba(255,255,255,0.08) !important;
          color: rgba(255,255,255,0.85) !important;
          border: 1px solid rgba(255,255,255,0.18) !important;
          backdrop-filter: blur(8px);
        }

        /* Stats bar */
        .mob-hero-stats {
          position: relative;
          z-index: 5;
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          border-top: 1px solid rgba(255,255,255,0.1);
          background: rgba(8,11,16,0.65);
          backdrop-filter: blur(14px);
        }
        .mob-stat {
          padding: 14px 4px;
          text-align: center;
          border-right: 1px solid rgba(255,255,255,0.07);
        }
        .mob-stat:last-child { border-right: none; }
        .mob-stat-num {
          font-family: "Bebas Neue", sans-serif;
          font-size: 24px;
          color: #fff;
          line-height: 1;
          margin-bottom: 2px;
        }
        .mob-stat-lbl {
          font-size: 8px;
          letter-spacing: 0.5px;
          color: rgba(255,255,255,0.32);
          text-transform: uppercase;
          font-weight: 500;
        }
        .mob-stat-badge {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 4px;
        }
        .mob-stat-badge svg {
          width: 16px;
          height: 16px;
          color: var(--red);
        }
      }

      @media (max-width: 390px) {
        .mob-hero-title { font-size: 46px; }
        .mob-stat-num { font-size: 19px; }
        .mob-hero-pill { font-size: 10px; }
      }

      /* Hide mobile-only hero decorations on desktop */
      .hero-mobile-texture,
      .hero-mobile-topbar,
      .hero-mobile-divider,
      .hero-mobile-pills {
        display: none;
      }

      /* ── GLOBAL VISUAL UPGRADES ────────────────────────── */

      /* Richer section headers */
      .section-title {
        background: linear-gradient(135deg, var(--navy) 0%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .section-title em {
        background: linear-gradient(135deg, var(--red) 0%, #ff3344 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Feature cards — richer hover */
      .feature-card {
        border-radius: 0;
        position: relative;
        overflow: hidden;
      }
      .feature-card::before {
        content: "";
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .feature-card:hover::before { transform: scaleX(1); }

      /* Step cards — number highlights red on hover */
      .step-card:hover .step-n {
        color: rgba(232,0,13,0.5);
        -webkit-text-stroke: 1px rgba(232,0,13,0.8);
      }

      /* Stat cards — top accent on hover */
      .stat-card {
        transition: var(--ease);
        position: relative;
      }
      .stat-card::after {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
      }
      .stat-card:hover { background: var(--off); }
      .stat-card:hover::after { transform: scaleX(1); }

      /* Vehicle cards — sharper shadow */
      .vehicle-card:hover {
        box-shadow: 0 20px 48px rgba(12,15,20,0.16), 0 0 0 1px rgba(232,0,13,0.1);
      }

      /* Process section — richer dark bg */
      .process-section {
        background: linear-gradient(160deg, #0c0f14 0%, #0f1620 100%);
      }

      /* Trust bar — slightly richer */
      .trust-bar {
        background: linear-gradient(135deg, #0c0f14 0%, #141a26 100%);
      }

      /* Footer — richer dark */
      footer {
        background: linear-gradient(160deg, #080b10 0%, #0c0f14 100%);
      }

      /* Sell strip */
      .sell-strip {
        background: linear-gradient(135deg, #f6f6f4 0%, #eeeeeb 100%);
      }

      /* Nav — glass blur always on */
      #navbar {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
      }

      /* TRUST ITEM hover */
      .trust-item {
        transition: var(--ease);
        cursor: default;
      }
      .trust-item:hover {
        color: rgba(255,255,255,0.85);
      }
      .trust-item:hover svg {
        filter: drop-shadow(0 0 4px rgba(232,0,13,0.5));
      }
      .trust-bar {
        background: var(--navy);
        padding: 14px 0;
      }
      .trust-items {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11.5px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        padding: 10px 22px;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
      }
      .trust-item:last-child {
        border-right: none;
      }
      .trust-item svg {
        width: 13px;
        height: 13px;
        color: var(--red);
        flex-shrink: 0;
      }

      /* FEATURES */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--g200);
        border: 1px solid var(--g200);
        border-radius: var(--r-md);
        overflow: hidden;
      }
      .feature-card {
        background: var(--white);
        padding: 32px 28px;
        transition: var(--ease);
      }
      .feature-card:hover {
        background: var(--off);
      }
      .feature-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 42px;
        color: var(--g200);
        line-height: 1;
        margin-bottom: 14px;
        transition: var(--ease);
      }
      .feature-card:hover .feature-num {
        color: var(--red);
      }
      .feature-card h3 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--navy);
      }
      .feature-card p {
        font-size: 13px;
        color: var(--g600);
        line-height: 1.7;
      }

      /* PROCESS */
      .process-section {
        background: var(--navy);
        padding: 88px 0;
      }
      .process-header {
        text-align: center;
        margin-bottom: 56px;
      }
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--r-md);
        overflow: hidden;
      }
      .step-card {
        padding: 40px 36px;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
      }
      .step-card:last-child {
        border-right: none;
      }
      .step-n {
        font-family: "Bebas Neue", sans-serif;
        font-size: 56px;
        color: rgba(255, 255, 255, 0.18);
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
        line-height: 1;
        margin-bottom: 18px;
        transition: color 0.3s ease;
      }
      .step-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
      }
      .step-card p {
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.75;
      }
      .process-cta {
        text-align: center;
        margin-top: 48px;
      }

      /* STATS */
      .stats-section {
        background: var(--off);
        padding: 64px 0;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        border: 1px solid var(--g200);
        border-radius: var(--r-md);
        overflow: hidden;
      }
      .stat-card {
        padding: 36px 28px;
        text-align: center;
        border-right: 1px solid var(--g200);
        background: var(--white);
      }
      .stat-card:last-child {
        border-right: none;
      }
      .stat-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 52px;
        color: var(--red);
        line-height: 1;
        margin-bottom: 6px;
      }
      .stat-label {
        font-size: 12px;
        color: var(--g600);
        font-weight: 500;
        letter-spacing: 0.3px;
      }
      .stat-card-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .stat-icon {
        width: 38px;
        height: 38px;
        color: var(--red);
        margin-bottom: 10px;
      }

      /* VEHICLES GRID */
      .vehicles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .vehicle-card {
        background: var(--white);
        border: 1px solid var(--g200);
        border-radius: var(--r-md);
        overflow: hidden;
        cursor: pointer;
        transition: var(--ease);
      }
      .vehicle-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-lg);
        border-color: var(--g300);
      }
      .vehicle-img {
        position: relative;
        aspect-ratio: 1/1;
        overflow: hidden;
        background: var(--g100);
      }
      .vehicle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .vehicle-card:hover .vehicle-img img {
        transform: scale(1.04);
      }
      .vehicle-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
        background: var(--navy);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 2px;
      }
      .vehicle-badge.gold-b {
        background: var(--gold);
      }
      .vehicle-cond-badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 2;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 2px;
      }
      .vehicle-cond-new {
        background: #00b341;
        color: #fff;
      }
      .vehicle-cond-used {
        background: rgba(12,15,20,0.65);
        color: rgba(255,255,255,0.75);
        backdrop-filter: blur(4px);
      }
      .vehicle-info {
        padding: 16px 18px 12px;
      }
      .vehicle-info h3 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 1.3;
      }
      .vehicle-price {
        font-family: "Bebas Neue", sans-serif;
        font-size: 22px;
        color: var(--red);
        letter-spacing: 0.5px;
        margin-bottom: 10px;
      }
      .vehicle-meta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .vehicle-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 11.5px;
        color: var(--g600);
      }
      .vehicle-meta svg {
        width: 12px;
        height: 12px;
        color: var(--g400);
      }
      .vehicle-actions {
        padding: 12px 18px 16px;
        display: flex;
        gap: 8px;
        border-top: 1px solid var(--g100);
      }

      /* TESTIMONIALS */
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .testimonial-card {
        background: var(--off);
        border: 1px solid var(--g200);
        border-radius: var(--r-md);
        padding: 28px 24px;
      }
      .stars {
        display: flex;
        gap: 3px;
        margin-bottom: 14px;
      }
      .stars svg {
        width: 14px;
        height: 14px;
        fill: var(--gold);
        color: var(--gold);
      }
      .testimonial-text {
        font-size: 14px;
        line-height: 1.75;
        color: var(--navy);
        margin-bottom: 20px;
        font-style: italic;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .author-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--navy);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
      }
      .author-name {
        font-size: 13px;
        font-weight: 700;
        color: var(--navy);
      }
      .author-role {
        font-size: 11.5px;
        color: var(--g400);
      }

      /* SELL STRIP */
      .sell-strip {
        background: var(--off);
        border-top: 1px solid var(--g200);
        border-bottom: 1px solid var(--g200);
        padding: 64px 0;
      }
      .sell-strip-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
      }
      .sell-strip-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      /* PAGE HERO */
      .page-hero {
        background: var(--off);
        border-bottom: 1px solid var(--g200);
        padding: 124px 0 48px;
        text-align: center;
      }
      .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 11px;
        color: var(--g400);
        margin-bottom: 20px;
      }
      .breadcrumb span {
        cursor: pointer;
        transition: var(--ease);
      }
      .breadcrumb span:first-child:hover {
        color: var(--red);
      }
      .breadcrumb .sep {
        color: var(--g300);
      }
      .page-hero h1 {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(36px, 5vw, 64px);
        line-height: 1.05;
        margin-bottom: 10px;
        color: var(--navy);
      }
      .page-hero h1 em {
        color: var(--red);
        font-style: normal;
      }
      .page-hero p {
        font-size: 14px;
        color: var(--g600);
      }

      /* SELL FORM */
      .sell-form-section {
        padding: 64px 0 80px;
      }
      .sell-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
      }
      .sell-benefits {
        position: sticky;
        top: 88px;
      }
      .sell-benefits-list {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .benefit-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .benefit-row svg {
        width: 17px;
        height: 17px;
        color: var(--red);
        flex-shrink: 0;
        margin-top: 2px;
      }
      .benefit-row strong {
        display: block;
        font-size: 13.5px;
        font-weight: 700;
        margin-bottom: 3px;
      }
      .benefit-row span {
        font-size: 12.5px;
        color: var(--g600);
        line-height: 1.6;
      }
      .form-card {
        background: var(--white);
        border: 1px solid var(--g200);
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: var(--sh-md);
      }
      .form-top {
        background: var(--navy);
        padding: 22px 26px;
      }
      .form-top h2 {
        font-family: "Bebas Neue", sans-serif;
        font-size: 28px;
        color: #fff;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
      }
      .form-top p {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.45);
      }
      .form-body-inner {
        padding: 24px 26px 12px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .form-group {
        margin-bottom: 14px;
      }
      .form-group label {
        display: block;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--g600);
        margin-bottom: 6px;
        text-transform: uppercase;
      }
      .form-control {
        width: 100%;
        padding: 10px 12px;
        border: 1.5px solid var(--g200);
        border-radius: var(--r);
        font-size: 13.5px;
        color: var(--navy);
        background: var(--white);
        transition: var(--ease);
        -webkit-appearance: none;
        appearance: none;
      }
      .form-control:focus {
        outline: none;
        border-color: var(--navy);
      }
      .form-control.err {
        border-color: var(--red);
      }
      .field-err {
        font-size: 11px;
        color: var(--red);
        margin-top: 4px;
      }
      .upload-zone {
        border: 2px dashed var(--g200);
        border-radius: var(--r-md);
        padding: 28px 20px;
        text-align: center;
        cursor: pointer;
        transition: var(--ease);
      }
      .upload-zone:hover {
        border-color: var(--g400);
        background: var(--off);
      }
      .upload-zone svg {
        width: 24px;
        height: 24px;
        color: var(--g400);
        margin: 0 auto 8px;
      }
      .upload-zone p {
        font-size: 13px;
        font-weight: 600;
        color: var(--g600);
        margin-bottom: 4px;
      }
      .upload-zone span {
        color: var(--red);
      }
      .upload-zone small {
        font-size: 11px;
        color: var(--g400);
      }
      .photo-previews {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 10px;
      }
      .photo-thumb {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: var(--r);
        border: 1px solid var(--g200);
      }
      .form-footer-bar {
        padding: 16px 26px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-top: 1px solid var(--g100);
        background: var(--off);
      }
      .form-note-sm {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11.5px;
        color: var(--g400);
      }
      .form-note-sm svg {
        width: 12px;
        height: 12px;
      }
      .submit-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 22px;
        background: var(--green);
        color: #fff;
        border: none;
        border-radius: var(--r);
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--ease);
      }
      .submit-btn:hover {
        background: #1db954;
        transform: translateY(-1px);
      }
      .submit-btn svg {
        width: 14px;
        height: 14px;
        fill: #fff;
      }
      .success-state {
        padding: 40px 26px;
        text-align: center;
      }
      .success-check {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #f0fdf4;
        border: 2px solid #00b341;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
      }
      .success-check svg {
        width: 22px;
        height: 22px;
        color: #00b341;
      }
      .success-state h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
      }
      .success-state > p {
        font-size: 13.5px;
        color: var(--g600);
        margin-bottom: 20px;
      }
      .next-steps {
        background: var(--off);
        border-radius: var(--r);
        padding: 16px 20px;
        margin-bottom: 20px;
        text-align: left;
      }
      .next-steps p {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--g400);
        margin-bottom: 10px;
      }
      .next-steps ol {
        list-style: decimal;
        padding-left: 18px;
      }
      .next-steps ol li {
        font-size: 13px;
        color: var(--g600);
        margin-bottom: 6px;
        padding-left: 4px;
      }

      /* INVENTORY */
      .inventory-section {
        padding: 32px 0 64px;
      }
      .filter-bar {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        padding: 20px 0 28px;
        border-bottom: 1px solid var(--g200);
        margin-bottom: 28px;
        align-items: flex-end;
      }
      .filter-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-width: 140px;
      }
      .filter-group label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--g400);
      }
      .filter-group input,
      .filter-group select {
        padding: 9px 12px;
        border: 1.5px solid var(--g200);
        border-radius: var(--r);
        font-size: 13px;
        color: var(--navy);
        background: var(--white);
        -webkit-appearance: none;
        appearance: none;
      }
      .filter-group input:focus,
      .filter-group select:focus {
        outline: none;
        border-color: var(--navy);
      }
      .filter-btn {
        padding: 9px 20px;
        background: var(--navy);
        color: #fff;
        border: none;
        border-radius: var(--r);
        font-size: 12.5px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--ease);
        margin-top: 18px;
      }
      .filter-btn:hover {
        background: #1a2230;
      }
      .results-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
      }
      .results-count {
        font-size: 13px;
        color: var(--g600);
      }
      .results-count strong {
        color: var(--navy);
      }
      .sort-select {
        padding: 7px 12px;
        border: 1.5px solid var(--g200);
        border-radius: var(--r);
        font-size: 12.5px;
        color: var(--navy);
        background: var(--white);
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
      }
      .empty-state {
        grid-column: 1/-1;
        text-align: center;
        padding: 60px 20px;
      }
      .empty-state p {
        font-size: 15px;
        color: var(--g600);
        margin-bottom: 20px;
      }

      /* DETAIL */
      .car-detail-section {
        padding: 108px 0 64px;
      }
      .car-detail-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 40px;
        width: 100%;
        align-items: start;
       }
      /* AIRBNB-STYLE GALLERY (desktop only — scoped so it can't override
         the mobile single-image layout below, which uses a lower-
         specificity selector and would otherwise lose this fight) */
      @media (min-width: 1025px) {
        .gallery-airbnb {
          display: grid;
          grid-template-columns: 1.5fr 1fr 1fr;
          grid-template-rows: 1fr 1fr;
          gap: 8px;
          width: 100%;
          height: 440px;
          border-radius: var(--r-md);
          overflow: hidden;
          position: relative;
          margin-bottom: 8px;
        }
        .gallery-airbnb .gallery-main {
          grid-row: 1 / 3;
          grid-column: 1 / 2;
          border-radius: 0;
          aspect-ratio: auto;
          height: 100%;
        }
      }
      .gallery-grid {
        display: contents;
      }
      .gallery-tile {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        background: var(--g100);
      }
      .gallery-tile:nth-of-type(1) { grid-row: 1; grid-column: 2; }
      .gallery-tile:nth-of-type(2) { grid-row: 1; grid-column: 3; }
      .gallery-tile:nth-of-type(3) { grid-row: 2; grid-column: 2; }
      .gallery-tile:nth-of-type(4) { grid-row: 2; grid-column: 3; }

      /* Fewer than 5 total photos — hero tile expands to fill the gap */
      .gallery-airbnb.count-1 .gallery-main {
        grid-column: 1 / 4;
      }
      .gallery-airbnb.count-2 .gallery-main {
        grid-column: 1 / 3;
      }
      .gallery-airbnb.count-2 .gallery-tile:nth-of-type(1) {
        grid-row: 1 / 3;
        grid-column: 3;
      }
      .gallery-airbnb.count-3 .gallery-main {
        grid-column: 1 / 2;
      }
      .gallery-airbnb.count-3 .gallery-tile:nth-of-type(1) { grid-row: 1; grid-column: 2 / 4; }
      .gallery-airbnb.count-3 .gallery-tile:nth-of-type(2) { grid-row: 2; grid-column: 2 / 4; }
      .gallery-airbnb.count-4 .gallery-tile:nth-of-type(3) {
        grid-row: 2;
        grid-column: 2 / 4;
      }
      .gallery-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      .gallery-tile:hover img,
      .gallery-main:hover img {
        transform: scale(1.04);
      }
      .gallery-tile::after,
      .gallery-main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(12, 15, 20, 0);
        transition: var(--ease);
        pointer-events: none;
      }
      .gallery-tile:hover::after,
      .gallery-main:hover::after {
        background: rgba(12, 15, 20, 0.08);
      }
      .gallery-showall {
        position: absolute;
        bottom: 18px;
        right: 18px;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: var(--navy);
        border: 1px solid var(--navy);
        border-radius: var(--r);
        padding: 9px 16px;
        font-size: 12.5px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: var(--sh-sm);
        transition: var(--ease);
      }
      .gallery-showall:hover {
        background: var(--navy);
        color: #fff;
      }
      .gallery-showall svg {
        width: 14px;
        height: 14px;
      }
      /* Mobile thumbnail strip is hidden on desktop — bento grid replaces it */
      .gallery-thumbs {
        display: none;
      }

      .gallery-main {
        border-radius: var(--r-md);
        overflow: hidden;
        width: 100%;
        aspect-ratio: 1/1;
        background: var(--g100);
        cursor: zoom-in;
        position: relative;
      }
      .gallery-main img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.5s ease;
      }
      .gallery-thumb {
        width: 72px;
        height: 56px;
        border-radius: var(--r);
        overflow: hidden;
        flex-shrink: 0;
        cursor: pointer;
        border: 2px solid transparent;
        transition: var(--ease);
        opacity: 0.65;
      }
      .gallery-thumb.active,
      .gallery-thumb:hover {
        border-color: var(--navy);
        opacity: 1;
      }
      .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .car-description {
        margin-top: 24px;
        padding: 18px 20px;
        background: var(--off);
        border-radius: var(--r-md);
      }
      .car-specs {
        margin-top: 20px;
      }
      .specs-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--g400);
        margin-bottom: 12px;
      }
      .specs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--g200);
        border: 1px solid var(--g200);
        border-radius: var(--r);
      }
      .spec-item {
        background: var(--white);
        padding: 14px 16px;
      }
      .spec-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--g400);
        margin-bottom: 4px;
      }
      .spec-value {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--navy);
      }
      .car-inquiry {
        position: sticky;
        top: 88px;
      }
      .inquiry-card {
        border: 1px solid var(--g200);
        border-radius: var(--r-md);
        overflow: hidden;
        box-shadow: var(--sh-md);
      }
      .inq-header {
        padding: 18px 22px 16px;
        border-bottom: 1px solid var(--g100);
      }
      .car-price {
        font-family: "Bebas Neue", sans-serif;
        font-size: 32px;
        color: var(--red);
        letter-spacing: 0.5px;
        line-height: 1;
      }
      .car-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        margin-top: 4px;
        line-height: 1.3;
      }
      .car-subtitle {
        font-size: 11.5px;
        color: var(--g400);
        margin-top: 4px;
      }
      .inq-body {
        padding: 18px 22px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .inq-divider {
        border-top: 1px solid var(--g100);
        padding-top: 14px;
        margin-top: 4px;
      }
      .inq-divider-label {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--g400);
        margin-bottom: 12px;
      }
      .inq-success {
        background: var(--off);
        border-radius: var(--r);
        padding: 14px;
        text-align: center;
        font-size: 12.5px;
        color: var(--g600);
      }
      .inq-success strong {
        display: block;
        color: #00b341;
        margin-bottom: 2px;
        font-size: 13px;
      }
      .similar-section {
        padding: 0 0 72px;
      }
      .inq-send-btn {
        width: 100%;
        padding: 11px;
        background: var(--navy);
        color: #fff;
        border: none;
        border-radius: var(--r);
        font-family: "Outfit", sans-serif;
        font-weight: 700;
        font-size: 13px;
        cursor: pointer;
        transition: var(--ease);
      }
      .inq-send-btn:hover {
        background: #1a2230;
      }
      .inq-send-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
      }

      /* LIGHTBOX */
      .lightbox {
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: rgba(0, 0, 0, 0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: zoom-out;
      }
      .lightbox-img {
        max-height: 88vh;
        max-width: 90vw;
        border-radius: 8px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
      }
      .lightbox-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: none;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
      }
      .lightbox-prev,
      .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        border-radius: 4px;
        padding: 8px 14px;
        transition: var(--ease);
      }
      .lightbox-prev {
        left: 20px;
      }
      .lightbox-next {
        right: 20px;
      }
      .lightbox-prev:hover,
      .lightbox-next:hover {
        background: rgba(255, 255, 255, 0.2);
      }
      .lightbox-counter {
        position: absolute;
        bottom: 18px;
        color: rgba(255, 255, 255, 0.45);
        font-size: 12px;
      }

      /* FOOTER */
      footer {
        background: var(--navy);
        padding: 64px 0 0;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      footer p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.8;
      }
      .footer-brand {
        font-family: "Bebas Neue", sans-serif;
        font-size: 28px;
        color: #fff;
        letter-spacing: 1px;
        margin-bottom: 14px;
      }
      .footer-brand span {
        color: var(--red);
      }
      .footer-social {
        display: flex;
        gap: 8px;
        margin-top: 18px;
      }
      .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: var(--r);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.65);
        transition: var(--ease);
      }
      .footer-social a:hover {
        border-color: var(--red);
        color: var(--red);
      }
      .footer-social svg {
        width: 15px;
        height: 15px;
      }
      .footer-col h4 {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 16px;
      }
      .footer-col ul li {
        margin-bottom: 9px;
      }
      .footer-col ul li a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.62);
        transition: var(--ease);
        cursor: pointer;
      }
      .footer-col ul li a:hover {
        color: #fff;
      }
      .footer-contact li {
        display: flex;
        gap: 9px;
        align-items: flex-start;
        margin-bottom: 10px;
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.62);
      }
      .footer-contact svg {
        width: 13px;
        height: 13px;
        color: var(--red);
        flex-shrink: 0;
        margin-top: 2px;
      }
      .footer-bottom {
        padding: 18px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
      }
      .footer-bottom p {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.5);
      }
      .footer-bottom-links {
        display: flex;
        gap: 18px;
      }
      .footer-bottom-links a {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.5);
        transition: var(--ease);
      }
      .footer-bottom-links a:hover {
        color: rgba(255, 255, 255, 0.9);
      }

      /* WHATSAPP */
      .wa-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 900;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #25d366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        transition: var(--ease);
      }
      .wa-float:hover {
        transform: scale(1.08);
      }
      .wa-float svg {
        width: 26px;
        height: 26px;
        fill: #fff;
      }
      .wa-pulse {
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(37, 211, 102, 0.4);
        animation: wp 2s ease-out infinite;
      }
      @keyframes wp {
        0% {
          transform: scale(1);
          opacity: 0.6;
        }
        100% {
          transform: scale(1.5);
          opacity: 0;
        }
      }

      /* MOBILE CTA */
      .mob-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 890;
        background: #fff;
        border-top: 1px solid var(--g200);
        padding: 10px 14px;
        gap: 8px;
      }

      /* FADE */
      .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .d1 {
        transition-delay: 0.07s;
      }
      .d2 {
        transition-delay: 0.14s;
      }
      .d3 {
        transition-delay: 0.21s;
      }
      .d4 {
        transition-delay: 0.28s;
      }

      /* ── RESPONSIVE ─────────────────────────────────────── */

      /* Tablet (≤1024px) */
      @media (max-width: 1024px) {
        .sell-layout {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .sell-benefits {
          position: static;
        }
        .car-detail-layout {
          grid-template-columns: 1fr;
          gap: 24px;
          width: 100%;
        }
        .car-detail-layout > * {
          min-width: 0;
          width: 100%;
        }
        .car-inquiry {
          position: static;
          width: 100%;
        }
        .gallery-airbnb {
          display: block;
          height: auto;
          margin-bottom: 0;
        }
        .gallery-grid,
        .gallery-showall {
          display: none !important;
        }
        .gallery-main {
          width: 100%;
          max-width: 100%;
          aspect-ratio: 4/3;
          border-radius: var(--r-md);
        }
        .gallery-thumbs {
          display: flex;
          gap: 6px;
          margin-top: 10px;
          overflow-x: auto;
          padding-bottom: 4px;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .steps-grid {
          grid-template-columns: 1fr;
        }
        .step-card {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          padding: 28px 24px;
        }
        .step-card:last-child {
          border-bottom: none;
        }
        .features-grid {
          grid-template-columns: 1fr 1fr;
        }
        .stats-grid {
          grid-template-columns: repeat(4, 1fr);
        }
        .vehicles-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Mobile (≤768px) */
      @media (max-width: 768px) {
        /* Layout */
        .section {
          padding: 52px 0;
        }
        .container {
          padding: 0 16px;
        }

        /* Nav */
        .nav-links,
        .nav-phone {
          display: none;
        }
        .nav-cta .btn {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .nav-inner {
          height: 60px;
        }
        .nav-cta {
          gap: 0;
        }

        /* Trust bar */
        .trust-items {
          flex-direction: column;
          align-items: center;
          gap: 0;
        }
        .trust-item {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.06);
          width: 100%;
          justify-content: center;
          padding: 10px 16px;
        }
        .trust-item:last-child {
          border-bottom: none;
        }

        /* Section headers */
        .section-title {
          font-size: clamp(28px, 8vw, 44px);
        }
        .big-title {
          font-size: clamp(36px, 10vw, 64px);
        }

        /* Features */
        .features-grid {
          grid-template-columns: 1fr;
        }
        .feature-card {
          padding: 24px 20px;
        }

        /* Vehicles grid */
        .vehicles-grid {
          grid-template-columns: 1fr 1fr;
          gap: 12px;
        }
        .vehicle-info {
          padding: 12px 14px 8px;
        }
        .vehicle-info h3 {
          font-size: 12.5px;
        }
        .vehicle-price {
          font-size: 18px;
          margin-bottom: 8px;
        }
        .vehicle-meta {
          gap: 8px;
        }
        .vehicle-meta span {
          font-size: 11px;
        }
        .vehicle-actions {
          padding: 10px 14px 12px;
          gap: 6px;
        }

        /* Stats */
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .stat-card {
          padding: 24px 16px;
          border-bottom: 1px solid var(--g200);
        }
        .stat-num {
          font-size: 40px;
        }

        /* Testimonials */
        .testimonials-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }

        /* Sell strip */
        .sell-strip {
          padding: 44px 0;
        }
        .sell-strip-inner {
          flex-direction: column;
          text-align: center;
          gap: 24px;
        }
        .sell-strip-actions {
          justify-content: center;
          flex-direction: column;
          width: 100%;
        }
        .sell-strip-actions .btn {
          width: 100%;
          justify-content: center;
        }

        /* Page hero */
        .page-hero {
          padding: 100px 0 36px;
        }
        .page-hero h1 {
          font-size: clamp(30px, 8vw, 52px);
        }

        /* Sell form */
        .sell-form-section {
          padding: 36px 0 60px;
        }
        .sell-layout {
          gap: 28px;
        }
        .form-body-inner {
          padding: 18px 18px 8px;
        }
        .form-footer-bar {
          padding: 14px 18px 18px;
          flex-direction: column;
          align-items: stretch;
          gap: 10px;
        }
        .submit-btn {
          width: 100%;
          justify-content: center;
        }
        .form-row {
          grid-template-columns: 1fr;
          gap: 12px;
        }
        .form-top {
          padding: 18px 18px;
        }

        /* Filter bar */
        .filter-bar {
          flex-direction: column;
          gap: 10px;
          padding: 16px 0 20px;
        }
        .filter-group {
          width: 100%;
          min-width: unset;
        }
        .filter-group input,
        .filter-group select {
          width: 100%;
        }
        .filter-btn {
          width: 100%;
          margin-top: 4px;
        }

        /* Detail page */
        .car-detail-section {
          padding: 76px 0 48px;
        }
        .car-detail-layout {
          display: flex;
          flex-direction: column;
          width: 100%;
          gap: 20px;
        }
        .car-detail-layout > * {
          width: 100%;
          min-width: 0;
        }
        .gallery-airbnb {
          display: block;
          height: auto;
          margin-bottom: 0;
        }
        .gallery-grid,
        .gallery-showall {
          display: none !important;
        }
        .gallery-main {
          width: 100%;
          max-width: 100%;
          aspect-ratio: 4/3;
          border-radius: var(--r-md);
        }
        .gallery-thumbs {
          display: flex;
          gap: 6px;
          margin-top: 10px;
          overflow-x: auto;
          padding-bottom: 4px;
        }
        .gallery-thumb {
          width: 56px;
          height: 56px;
        }
        .car-inquiry {
          width: 100%;
          max-width: 100%;
        }
        .inquiry-card {
          width: 100%;
        }
        .specs-grid {
          grid-template-columns: 1fr 1fr;
        }
        .car-description {
          padding: 14px 16px;
        }
        .inq-header {
          padding: 14px 16px 12px;
        }
        .inq-body {
          padding: 14px 16px;
        }

        /* Results header */
        .results-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
        }

        /* Footer */
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
          padding-bottom: 36px;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 8px;
        }
        .footer-bottom-links {
          gap: 14px;
          flex-wrap: wrap;
          justify-content: center;
        }
        footer {
          padding: 48px 0 0;
          padding-bottom: 72px; /* space for mob-cta */
        }

        /* Mobile CTA bar */
        .mob-cta {
          display: flex;
        }
        .wa-float {
          bottom: 72px; /* above mob-cta */
        }

        /* Lightbox — smaller, edge-anchored controls so they don't
           crowd the photo on narrow screens */
        .lightbox-img {
          max-width: 94vw;
        }
        .lightbox-prev,
        .lightbox-next {
          padding: 6px 9px;
          font-size: 20px;
        }
        .lightbox-prev {
          left: 8px;
        }
        .lightbox-next {
          right: 8px;
        }
        .lightbox-close {
          top: 12px;
          right: 14px;
          font-size: 24px;
        }
        .lightbox-counter {
          bottom: 10px;
          font-size: 11px;
        }
      }

      /* Small mobile (≤480px) */
      @media (max-width: 480px) {
        .vehicles-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .features-grid {
          grid-template-columns: 1fr;
        }
        .section-title {
          font-size: clamp(26px, 9vw, 40px);
        }
        .hero-stats-bar {
          gap: 0;
        }
        .hero-stat {
          flex: 1;
          text-align: center;
        }
        .slide-kicker {
          font-size: 9px;
          letter-spacing: 2px;
        }
        .specs-grid {
          grid-template-columns: 1fr 1fr;
        }
        .page-hero {
          padding: 96px 0 28px;
        }
        .sell-benefits-list {
          gap: 14px;
        }
        .inq-card {
          border-radius: var(--r);
        }
        .testimonial-card {
          padding: 20px 18px;
        }
        .process-section {
          padding: 52px 0;
        }
        .sell-strip {
          padding: 36px 0;
        }
      }
      /* ── LOADING SCREEN ─────────────────────────────────── */
      #loader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 8s ease, visibility 8s ease;
      }
      #loader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
      .loader-logo-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 220px;
        height: 220px;
        animation: loaderLogoEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        opacity: 0;
      }
      @keyframes loaderLogoEnter {
        from { opacity: 0; transform: scale(0.6); }
        to   { opacity: 1; transform: scale(1); }
      }
      /* Outer spinning ring */
      .loader-ring-outer {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid transparent;
        border-top-color: #e8000d;
        border-right-color: rgba(232,0,13,0.25);
        animation: spinCW 2.4s linear infinite;
      }
      /* Middle pulsing ring */
      .loader-ring-mid {
        position: absolute;
        inset: 16px;
        border-radius: 50%;
        border: 1.5px solid rgba(232,0,13,0.18);
        animation: loaderPulseRing 3.2s ease-in-out infinite;
      }
      /* Inner counter-spin ring */
      .loader-ring-inner {
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-bottom-color: rgba(232,0,13,0.55);
        border-left-color: rgba(232,0,13,0.2);
        animation: spinCCW 3s linear infinite;
      }
      /* Tick marks ring */
      .loader-ring-ticks {
        position: absolute;
        inset: 6px;
        border-radius: 50%;
        animation: spinCW 8s linear infinite;
        opacity: 0.3;
      }
      .loader-ring-ticks::before,
      .loader-ring-ticks::after {
        content: "";
        position: absolute;
        background: var(--red);
        border-radius: 2px;
      }
      .loader-ring-ticks::before {
        width: 6px; height: 2px;
        top: 50%; left: 0;
        transform: translateY(-50%);
      }
      .loader-ring-ticks::after {
        width: 6px; height: 2px;
        top: 50%; right: 0;
        transform: translateY(-50%);
      }
      @keyframes spinCW {
        to { transform: rotate(360deg); }
      }
      @keyframes spinCCW {
        to { transform: rotate(-360deg); }
      }
      @keyframes loaderPulseRing {
        0%, 100% { transform: scale(1); opacity: 0.18; }
        50%       { transform: scale(1.06); opacity: 0.45; }
      }
      /* Logo image in center */
      .loader-logo-img {
        position: relative;
        z-index: 2;
        width: 130px;
        height: 130px;
        object-fit: contain;
        animation: loaderLogoFloat 3s ease-in-out infinite;
        filter: drop-shadow(0 0 20px rgba(232,0,13,0.25));
      }
      @keyframes loaderLogoFloat {
        0%, 100% { transform: translateY(0px); }
        50%       { transform: translateY(-7px); }
      }
      /* Glow behind logo */
      .loader-glow {
        position: absolute;
        inset: 40px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232,0,13,0.1) 0%, transparent 70%);
        animation: loaderPulseRing 2.2s ease-in-out infinite;
      }
      /* Tagline */
      .loader-tagline {
        margin-top: 28px;
        font-family: "Bebas Neue", sans-serif;
        font-size: 22px;
        letter-spacing: 6px;
        color: rgba(255,255,255,0.85);
        text-transform: uppercase;
        animation: loaderTagline 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both;
      }
      .loader-tagline span { color: #e8000d; }
      @keyframes loaderTagline {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      /* Progress bar */
      .loader-bar-track {
        margin-top: 20px;
        width: 160px;
        height: 2px;
        background: rgba(255,255,255,0.07);
        border-radius: 2px;
        overflow: hidden;
        animation: loaderTagline 0.8s 0.6s cubic-bezier(0.16,1,0.3,1) both;
      }
      .loader-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, #e8000d, #ff4455);
        border-radius: 2px;
        animation: loaderFill 1.8s 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
        width: 0;
      }
      @keyframes loaderFill {
        to { width: 100%; }
      }
      /* Sub text */
      .loader-sub {
        margin-top: 10px;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.25);
        animation: loaderTagline 0.8s 0.7s cubic-bezier(0.16,1,0.3,1) both;
      }
      /* Dot particles */
      .loader-dots {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .loader-dot {
        position: absolute;
        width: 3px; height: 3px;
        border-radius: 50%;
        background: rgba(232,0,13,0.6);
        animation: loaderDotFloat linear infinite;
      }
      @keyframes loaderDotFloat {
        0%   { transform: translateY(100vh) scale(0); opacity: 0; }
        10%  { opacity: 1; }
        90%  { opacity: 0.5; }
        100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
      }