﻿    /* ============ TOKENS ============ */
    :root {
      --red: #E4232A;
      --red-dark: #A8161C;
      --black: #0C0C0C;
      --charcoal: #1B1B1D;
      --grey: #6E7175;
      --grey-light: #F2F2F3;
      --grey-lighter: #FAFAFA;
      --white: #FFFFFF;
      --line: #E7E7E8;
      --font-display: 'Rajdhani', sans-serif;
      --font-body: 'Inter', sans-serif;
      --shadow-sm: 0 2px 10px rgba(12, 12, 12, .06);
      --shadow-md: 0 12px 30px rgba(12, 12, 12, .12);
      --radius: 14px;
      --header-h: 76px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--white);
      line-height: 1.5;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: .3px;
      line-height: 1.1;
    }

    .container {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .eyebrow {
      font-family: var(--font-display);
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-size: 13px;
      color: var(--red);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 3px;
      background: var(--red);
      display: inline-block;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 14px;
    }

    .section-sub {
      color: var(--grey);
      max-width: 560px;
      font-size: 16px;
      margin-bottom: 44px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 28px;
      border-radius: 8px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .5px;
      text-transform: uppercase;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 8px 20px rgba(228, 35, 42, .35);
    }

    .btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(228, 35, 42, .45);
    }

    .btn-dark {
      background: var(--black);
      color: var(--white);
    }

    .btn-dark:hover {
      background: #000;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-outline {
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
    }

    .btn-outline:hover {
      background: var(--black);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: var(--grey-light);
      color: var(--charcoal);
    }

    .btn-ghost:hover {
      background: var(--line);
    }

    .btn-sm {
      padding: 10px 18px;
      font-size: 13px;
    }

    /* ============ SPEED STRIPE SIGNATURE DIVIDER ============ */
    .stripe-divider {
      width: 100%;
      height: 34px;
      background:
        repeating-linear-gradient(115deg,
          var(--black) 0 26px,
          var(--red) 26px 44px,
          var(--black) 44px 70px,
          var(--white) 70px 74px);
      position: relative;
      overflow: hidden;
    }

    .stripe-divider.thin {
      height: 14px;
    }

    /* ============ HEADER ============ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--header-h);
      background: white;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      transition: transform .35s ease, box-shadow .3s ease, background .3s ease;
    }

    .site-header.hide {
      transform: translateY(-100%);
    }

    .site-header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-wrap img {
      height: 75px;
      width: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .main-nav a {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .3px;
      position: relative;
      padding: 6px 0;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--red);
      transition: width .25s ease;
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--grey-light);
      transition: background .25s ease, transform .25s ease;
    }

    .icon-btn:hover {
      background: var(--red);
      color: #fff;
      transform: scale(1.06);
    }

    .icon-btn svg {
      width: 20px;
      height: 20px;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      display: block;
      width: 22px;
      height: 2px;
      background: var(--black);
      position: relative;
      transition: .25s;
    }

    .nav-toggle span::before {
      position: absolute;
      top: -7px;
    }

    .nav-toggle span::after {
      position: absolute;
      top: 7px;
    }

    /* ============ HERO ============ */
    /* ============ PROMO BANNER (standalone image, sits below header) ============ */
    .promo-banner {
      position: relative;
      width: 100%;
      padding-top: var(--header-h);
      background: #0C0C0C;
      line-height: 0;
    }

    .promo-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      
      background: linear-gradient(115deg, #0C0C0C 0%, #1B1B1D 45%, #2a1414 100%);
      color: #fff;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 90px);
      pointer-events: none;
    }

    .road-track {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 120px;
      background: repeating-linear-gradient(90deg, transparent 0 60px, rgba(255, 255, 255, .5) 60px 100px);
      opacity: .08;
      animation: roadMove 3s linear infinite;
    }

    @keyframes roadMove {
      from {
        background-position-x: 0;
      }

      to {
        background-position-x: 160px;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 20px 0;
    }

    .hero-copy .eyebrow {
      color: #FF7A7F;
      padding-left:10px;
    }

    .hero-copy .eyebrow::before {
      background: #FF7A7F;
    }

    .hero-copy h1 {
      font-size: clamp(34px, 5vw, 58px);
      margin-bottom: 20px;
      padding-left: 10px;
    }

    .hero-copy h1 span {
      color: var(--red);
    }

    .hero-copy p {
      font-size: 18px;
      color: rgba(255, 255, 255, .78);
      max-width: 520px;
      margin-bottom: 28px;
      padding-left:10px;
    }

    .trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 22px;
      margin-bottom: 36px;
      padding-left:10px;
    }

    .trust-points li {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .3px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff;
    }

    .trust-points li::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      flex: none;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    /* Hero enquiry form card */
    .hero-form-card {
      background: #fff;
      color: var(--charcoal);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-md);
      animation: floatCard 5s ease-in-out infinite;
    }

    @keyframes floatCard {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .hero-form-card h3 {
      font-size: 24px;
      margin-bottom: 4px;
    }

    .hero-form-card .form-note {
      color: var(--grey);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .field {
      margin-bottom: 14px;
    }

    .field label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .4px;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 6px;
      font-family: var(--font-display);
    }

    .field input,
    .field select {
      width: 100%;
      padding: 13px 14px;
      border: 1.5px solid var(--line);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 15px;
      background: var(--grey-lighter);
      transition: border-color .2s ease, background .2s ease;
    }

    .field input:focus,
    .field select:focus {
      outline: none;
      border-color: var(--red);
      background: #fff;
    }

    .chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip-group input {
      display: none;
    }

    .chip-group label {
      padding: 9px 14px;
      border: 1.5px solid var(--line);
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      font-family: var(--font-display);
      cursor: pointer;
      transition: .2s;
    }

    .chip-group input:checked+label {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    .hero-form-card .btn {
      width: 100%;
      margin-top: 6px;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .form-success {
      display: none;
      background: #eafbea;
      color: #1e7a1e;
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 14px;
      font-weight: 600;
      margin-top: 12px;
    }

    .form-success.show {
      display: block;
      animation: fadeIn .4s ease;
    }

    /* ============ REVEAL ANIMATION ============ */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .7s cubic-bezier(.16, .8, .24, 1), transform .7s cubic-bezier(.16, .8, .24, 1);
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(.92);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal-scale.in-view {
      opacity: 1;
      transform: scale(1);
    }

    .reveal-stagger .stagger-item {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal-stagger.in-view .stagger-item {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* ============ TRUST STRIP (marquee) ============ */
    .trust-strip {
      background: var(--black);
      color: #fff;
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .marquee {
      display: flex;
      width: max-content;
      animation: marquee 26s linear infinite;
    }

    .marquee:hover {
      animation-play-state: paused;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 22px 40px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: .4px;
      border-right: 1px solid rgba(255, 255, 255, .12);
      white-space: nowrap;
    }

    .marquee-item svg {
      width: 20px;
      height: 20px;
      color: var(--red);
      flex: none;
    }

    /* ============ ABOUT ============ */
    .about {
      padding: 100px 0;
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 60px;
      align-items: center;
    }

    .about-visual {
      position: relative;
      border-radius: var(--radius);
      background: white;
      aspect-ratio: 4/5;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .about-visual .stat {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      padding: 18px 22px;
      box-shadow: var(--shadow-md);
      z-index: 3;
      white-space: nowrap;
    }

    .about-visual .stat h4 {
      font-size: 32px;
      color: var(--red);
    }

    .about-visual .stat span {
      font-size: 12px;
      color: var(--grey);
      text-transform: uppercase;
      letter-spacing: .5px;
      font-weight: 600;
    }

    .stat-1 {
      top: 8%;
      left: -6%;
    }

    .stat-2 {
      bottom: 10%;
      right: -6%;
    }

    .about-copy p {
      color: var(--grey);
      font-size: 16.5px;
      margin-bottom: 24px;
    }

    .about-copy .btn {
      margin-top: 6px;
    }

    /* -- Static image section (left side of About Us) -- */
    .about-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fff;
      border-radius: var(--radius);
      padding: 36px;
    }

    /* ============ TABS / BIKE EXPLORE ============ */
    .explore {
      padding: 100px 0;
      background: var(--grey-lighter);
    }

    .tab-bar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      border-bottom: 2px solid var(--line);
      padding-bottom: 0;
    }

    .tab-btn {
      padding: 14px 22px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .3px;
      color: var(--grey);
      position: relative;
      text-transform: uppercase;
    }

    .tab-btn::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      height: 3px;
      width: 0;
      background: var(--red);
      transition: width .25s ease;
    }

    .tab-btn.active {
      color: var(--black);
    }

    .tab-btn.active::after {
      width: 100%;
    }

    .tab-panel {
      display: none;
    }

    .tab-panel.active {
      display: block;
      animation: fadeIn .5s ease;
    }

    .bike-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 24px;
    }

    .bike-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow-sm);
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
      overflow: hidden;
    }

    .bike-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }

    .bike-card .cat-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      background: var(--grey-light);
      padding: 5px 10px;
      border-radius: 20px;
      margin-bottom: 14px;
      font-family: var(--font-display);
    }

    .bike-card .bike-visual {
      height: 160px;
      border-radius: 10px;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #fff, #f1f1f2);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--line);
    }

    .bike-card .bike-visual svg {
      width: 70%;
      height: auto;
      color: var(--charcoal);
      opacity: .85;
      transition: transform .4s ease;
    }

    .bike-card:hover .bike-visual svg {
      transform: translateX(6px) scale(1.04);
    }

    .bike-card .bike-visual img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 10px;
      transition: transform .5s cubic-bezier(.16, .8, .24, 1);
    }

    .bike-card:hover .bike-visual img {
      transform: scale(1.07);
    }

    .bike-card .bike-visual .fallback-icon {
      position: absolute;
      inset: 0;
      align-items: center;
      justify-content: center;
    }

    .bike-card h4 {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .bike-card .best-for {
      color: var(--grey);
      font-size: 13.5px;
      margin-bottom: 16px;
    }

    .bike-card .card-cta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .bike-card .card-cta a {
      font-size: 12.5px;
      font-weight: 700;
      font-family: var(--font-display);
      letter-spacing: .3px;
      padding: 8px 12px;
      border-radius: 6px;
      background: var(--grey-light);
      text-transform: uppercase;
      transition: .2s;
    }

    .bike-card .card-cta a.primary {
      background: var(--red);
      color: #fff;
    }

    .bike-card .card-cta a:hover {
      filter: brightness(.94);
    }

    /* ============ WHY BUY / FEATURES ============ */
    .why {
      padding: 100px 0;
      background: var(--black);
      color: #fff;
      position: relative;
    }

    .why .section-sub {
      color: rgba(255, 255, 255, .65);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(255, 255, 255, .08);
    }

    .feature-card {
      background: var(--black);
      padding: 36px 30px;
      transition: background .3s ease;
    }

    .feature-card:hover {
      background: #161616;
    }

    .feature-card .num {
      font-family: var(--font-display);
      font-size: 14px;
      color: var(--red);
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .feature-card h4 {
      font-size: 21px;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: rgba(255, 255, 255, .6);
      font-size: 14.5px;
    }

    /* ============ FINANCE ============ */
    .finance {
      padding: 100px 0;
      background: linear-gradient(120deg, #fff 55%, var(--grey-lighter) 55%);
    }

    .finance-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .finance-points {
      display: grid;
      gap: 14px;
      margin: 26px 0 30px;
    }

    .finance-points li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15.5px;
      color: var(--charcoal);
    }

    .finance-points li svg {
      width: 20px;
      height: 20px;
      color: var(--red);
      flex: none;
      margin-top: 2px;
    }

    .finance-form {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-md);
      border-top: 5px solid var(--red);
    }

    .finance-form h3 {
      margin-bottom: 20px;
      font-size: 22px;
    }

    .radio-row {
      display: flex;
      gap: 10px;
    }

    .radio-row label {
      flex: 1;
      text-align: center;
      padding: 11px;
      border: 1.5px solid var(--line);
      border-radius: 8px;
      font-weight: 600;
      font-family: var(--font-display);
      cursor: pointer;
      font-size: 14px;
      transition: .2s;
    }

    .radio-row input {
      display: none;
    }

    .radio-row input:checked+label {
      background: var(--black);
      color: #fff;
      border-color: var(--black);
    }

    /* ============ LOCATIONS ============ */
    .locations {
      padding: 100px 0;
      background: var(--grey-lighter);
    }

    .loc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    .loc-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow .3s ease, transform .3s ease;
    }

    .loc-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-6px);
    }

    .loc-map {
      height: 190px;
      position: relative;
      overflow: hidden;
      background: var(--grey-lighter);
    }

    .loc-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      filter: grayscale(.15) contrast(1.05);
    }

    .loc-map-overlay {
      position: absolute;
      inset: 0;
      background: rgba(12, 12, 12, .28);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: opacity .3s ease, background .3s ease;
    }

    .loc-map-overlay:hover {
      background: rgba(12, 12, 12, .4);
    }

    .loc-map-overlay .loc-map-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--charcoal);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: .4px;
      text-transform: uppercase;
      padding: 9px 16px;
      border-radius: 20px;
      box-shadow: var(--shadow-sm);
    }

    .loc-map-overlay .loc-map-hint svg {
      width: 15px;
      height: 15px;
      color: var(--red);
    }

    .loc-map.is-active .loc-map-overlay {
      opacity: 0;
      pointer-events: none;
    }

    .loc-body {
      padding: 24px;
    }

    .loc-body h4 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .loc-body p {
      color: var(--grey);
      font-size: 14.5px;
      margin-bottom: 6px;
    }

    .loc-body .timing {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--red);
      font-family: var(--font-display);
      margin: 10px 0 18px;
    }

    .loc-cta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* ============ REVIEWS ============ */
    .reviews {
      padding: 100px 0;
      background: #fff;
      overflow: hidden;
    }

    .reviews-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .rating-badge {
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--grey-lighter);
      padding: 16px 24px;
      border-radius: var(--radius);
    }

    .rating-badge .score {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 700;
      color: var(--black);
    }

    .stars {
      color: var(--red);
      font-size: 18px;
      letter-spacing: 2px;
    }

    .rating-badge .count {
      font-size: 13px;
      color: var(--grey);
    }

    .review-track-wrap {
      position: relative;
      margin-top: 30px;
      overflow: hidden;
    }

    .review-track-wrap::before,
    .review-track-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }

    .review-track-wrap::before {
      left: 0;
      background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
    }

    .review-track-wrap::after {
      right: 0;
      background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
    }

    .review-track {
      display: flex;
      gap: 22px;
      width: max-content;
      animation: reviewScroll 32s linear infinite;
    }

    .review-track:hover {
      animation-play-state: paused;
    }

    @keyframes reviewScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .review-card {
      min-width: 320px;
      max-width: 320px;
      background: var(--grey-lighter);
      border-radius: var(--radius);
      padding: 26px;
      transition: transform .3s ease;
    }

    .review-card:hover {
      transform: translateY(-6px);
    }

    .review-card .stars {
      margin-bottom: 14px;
    }

    .review-card p {
      font-size: 15px;
      color: var(--charcoal);
      margin-bottom: 20px;
      min-height: 96px;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      flex: none;
    }

    .reviewer h5 {
      font-size: 14.5px;
    }

    .reviewer span {
      font-size: 12.5px;
      color: var(--grey);
    }

    .review-cta-row {
      display: flex;
      justify-content: flex-end;
      margin-top: 20px;
    }

    /* ============ WHY HERO ============ */
    .why-hero {
      padding: 100px 0;
      background: var(--grey-lighter);
    }

    .icon-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
    }

    .icon-item {
      background: #fff;
      border-radius: var(--radius);
      padding: 26px 16px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .icon-item:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: var(--shadow-md);
    }

    .icon-item svg {
      width: 34px;
      height: 34px;
      color: var(--red);
      margin-bottom: 14px;
    }

    .icon-item span {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
    }

    /* ============ FAQ ============ */
    .faq {
      padding: 100px 0;
      background: #fff;
    }

    .faq-list {
      max-width: 1180px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 60px;
    }

    .faq-col {
      display: flex;
      flex-direction: column;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-q {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 4px;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 17px;
      text-align: left;
    }

    .faq-q .plus {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--grey-light);
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s ease, background .3s ease;
      position: relative;
    }

    .faq-q .plus::before,
    .faq-q .plus::after {
      content: "";
      position: absolute;
      background: var(--charcoal);
      transition: .3s;
    }

    .faq-q .plus::before {
      width: 10px;
      height: 2px;
    }

    .faq-q .plus::after {
      width: 2px;
      height: 10px;
    }

    .faq-item.open .plus {
      background: var(--red);
      transform: rotate(180deg);
    }

    .faq-item.open .plus::before,
    .faq-item.open .plus::after {
      background: #fff;
    }

    .faq-item.open .plus::after {
      transform: scaleY(0);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }

    .faq-a p {
      padding: 0 4px 22px;
      color: var(--grey);
      font-size: 15px;
      max-width: 680px;
    }

    /* ============ FINAL CTA ============ */
    .final-cta {
      position: relative;
      padding: 110px 0;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background: linear-gradient(120deg, var(--black), #241010 60%, var(--red-dark));
    }

    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 90px);
    }

    .final-cta .container {
      position: relative;
      z-index: 2;
    }

    .final-cta h2 {
      font-size: clamp(30px, 5vw, 48px);
      margin-bottom: 16px;
    }

    .final-cta p {
      color: rgba(255, 255, 255, .75);
      max-width: 520px;
      margin: 0 auto 34px;
      font-size: 17px;
    }

    .final-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ============ DISCLAIMER + FOOTER ============ */
    .disclaimer {
      background: var(--grey-lighter);
      padding: 20px 0;
    }

    .disclaimer p {
      font-size: 12px;
      color: var(--grey);
      max-width: 900px;
      line-height: 1.7;
    }

    footer {
      background: var(--black);
      color: rgba(255, 255, 255, .7);
      padding: 60px 0 15px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-grid img {
      height: 56px;
      margin-bottom: 14px;
      border-radius: 6px;
    }

    .footer-grid p {
      font-size: 14px;
      color: rgba(255, 255, 255, .55);
      max-width: 280px;
    }

    .footer-col h5 {
      font-family: var(--font-display);
      color: #fff;
      font-size: 15px;
      margin-bottom: 16px;
      letter-spacing: .4px;
      text-transform: uppercase;
    }

    .footer-col a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, .6);
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--red);
    }

    .footer-col a svg {
      width: 16px;
      height: 16px;
      flex: none;
      color: var(--red);
    }

    .footer-col a:hover svg {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 24px;
      font-size: 13px;
      color: rgba(255, 255, 255, .45);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* ============ MOBILE STICKY BAR ============ */
    .mobile-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      display: none;
      background: #fff;
      box-shadow: 0 -6px 20px rgba(0, 0, 0, .12);
      padding: 10px 14px;
      transform: translateY(100%);
      transition: transform .35s ease;
    }

    .mobile-bar.show {
      transform: translateY(0);
    }

    .mobile-bar-inner {
      display: flex;
      gap: 10px;
    }

    .mobile-bar-inner a {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 11.5px;
      letter-spacing: .3px;
      padding: 9px 4px;
      border-radius: 8px;
      text-transform: uppercase;
    }

    .mobile-bar-inner a svg {
      width: 20px;
      height: 20px;
    }

    .mobile-bar-inner a.call {
      background: var(--grey-light);
      color: var(--charcoal);
    }

    .mobile-bar-inner a.whatsapp {
      background: #25D366;
      color: #fff;
    }

    .mobile-bar-inner a.ride {
      background: var(--red);
      color: #fff;
    }

    /* Back to top */
    .back-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 998;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--black);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: .3s;
      box-shadow: var(--shadow-md);
    }

    .back-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-top:hover {
      background: var(--red);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width:1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-form-card {
        max-width: 520px;
      }

      .about-grid,
      .finance-grid {
        grid-template-columns: 1fr;
      }

      .about-visual {
        max-width: 420px;
        margin: 0 auto;
      }

      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .icon-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .loc-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width:720px) {

      .main-nav,
      .header-cta .btn {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .icon-btn.wa-desktop {
        display: none;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .icon-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .mobile-bar {
        display: block;
      }

      .finance {
        background: #fff;
      }

      .stat-1,
      .stat-2 {
        position: static;
        margin: 10px auto;
        width: fit-content;
      }

      .about-visual {
        display: none;
      }

      .reviews-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .faq-list {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: .001s !important;
        transition-duration: .001s !important;
      }
    }

    .footer-link {
      color: #ffffff;
      text-decoration: none;
    }

    .footer-link:hover {
      color: var(--red);
      text-decoration: underline;
    }
