
/* Sticky Bottom Action Bar */
.cta-dock{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1090; /* above headers/sections */
  display: flex; justify-content: center;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  pointer-events: none; /* inner handles clicks */
}

.cta-dock__inner{
  display: inline-flex; gap: 10px;
  
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  padding: 6px;
  pointer-events: auto; /* enable clicks */
  backdrop-filter: saturate(140%) blur(6px);
}

.cta-chip{
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px;
  background: #000000;
  color: #fff; text-decoration: none;
  padding: 10px 14px;
  line-height: 1; font-weight: 600; font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.cta-chip i{ font-size: 16px; line-height: 0; }

.cta-chip:hover,
.cta-chip:focus{
  background: #d32d2f;
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 8px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
  outline: none;
}

/* Make room so the bar doesn't cover page content */
body{ padding-bottom: calc(80px + env(safe-area-inset-bottom)); }

/* Responsive: on very small screens stack into two rows if needed */
@media (max-width: 390px){
  .cta-dock__inner{ flex-wrap: wrap; justify-content: center; }
}

/* Optional: hide on print */
@media print{
  .cta-dock{ display: none !important; }
}

/* --- Mobile-optimized CTA pill sizing --- */
@media (max-width: 600px){

  .cta-dock__inner {
    gap: 6px;
    padding: 4px;
  }

  .cta-chip {
    padding: 8px 10px;          /* smaller pill */
    font-size: 13px;            /* smaller text */
    gap: 6px;                   /* tighter spacing between icon/text */
    flex: 1 1 auto;             /* allows pills to fit side-by-side */
    justify-content: center;
    white-space: nowrap;
  }

  .cta-chip i {
    font-size: 14px;
  }
}

/*vehicle colours*/


      .legacy-hero {
        position: relative;
        min-height: 86vh;
        display: grid;
        place-items: center;
        background: #000;
      }
      .legacy-hero img {
        width: 100%;
        height: 86vh;
        object-fit: cover;
        opacity: 0.9;
      }
      .legacy-hero .legacy-hero-copy {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        text-align: center;
        padding: 24px;
      }
      .specs-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
      }
      @media (max-width: 991px) {
        .specs-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .legacy-hero,
        .legacy-hero img {
          height: 64vh;
        }
      }
      .feature-card {
        background: #0b0f1a;
        color: #fff;
        border-radius: 12px;
        padding: 28px;
        height: 100%;
      }
      .feature-card h4 {
        color: #fff;
      }
      .chip {
        display: inline-block;
        background: #111827;
        color: #e5e7eb;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 0.85rem;
      }
      .color-dot {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        box-shadow: 0 0 0 1px #3d3d3d;
        cursor: pointer;
      }
      .color-palette {
        display: inline-flex;
        gap: 12px;
        align-items: center;
      }
    