@charset "UTF-8";
/* =====================================================================
   GLOBAL STYLESHEET ENTRY  →  compile to static/css/style.css
   ---------------------------------------------------------------------
   Compile:  sass static/scss/style.scss static/css/style.css --style=compressed
   Watch:    sass --watch static/scss/style.scss:static/css/style.css
   ---------------------------------------------------------------------
   FILE ORDER MATTERS. _brand.scss must stay first — it holds every
   customizable variable for re-theming each of the 7 company sites.
   ===================================================================== */
/* =====================================================================
   ⚙️  BRAND CONFIG  —  THE ONLY FILE YOU EDIT PER COMPANY
   ---------------------------------------------------------------------
   Every one of the 7 company sites should ship with its OWN copy of
   this file. Nothing else needs to change.
   ===================================================================== */
/* ---------------------------------------------------------------------
   1. BRAND IDENTITY (text used in templates is marked with
      <!-- BRAND: ... --> comments inside the HTML)
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   2. COLORS
   --------------------------------------------------------------------- */
/* Derived overlay tints — usually leave as-is */
/* ---------------------------------------------------------------------
   3. TYPOGRAPHY
      (If you change these, also swap the Google Fonts <link>
       tagged BRAND: FONTS inside base.html)
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   4. BRAND IMAGES / LOGO
      Logo paths are also referenced in header.html & footer.html
      (search for BRAND: LOGO). Use these variables for any CSS-driven
      background art.
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   5. SHAPE & MOTION (global feel — rarely changed)
   --------------------------------------------------------------------- */
/* =====================================================================
   BASE — reset, typography scale, shell, scroll animations, utilities
   ===================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #0a0a0c;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ---- Ambient page glow (premium depth, purely decorative) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(60vw 60vw at 12% -10%, rgba(230, 57, 70, 0.16), transparent 70%), radial-gradient(50vw 50vw at 100% 8%, rgba(216, 180, 106, 0.08), transparent 70%);
}

main {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------
   SHELL / CONTAINERS
   --------------------------------------------------------------------- */
.container,
.shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 46px);
}

.section {
  position: relative;
  padding-block: clamp(64px, 9vw, 130px);
}

.section--tight {
  padding-block: clamp(46px, 6vw, 80px);
}

/* ---------------------------------------------------------------------
   SECTION HEADINGS
   --------------------------------------------------------------------- */
.sec_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 56px);
}

.sec_head--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #d8b46a;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.sec_title {
  font-size: clamp(2.1rem, 6.4vw, 4.3rem);
}

.sec_title em {
  font-style: normal;
  color: #e63946;
}

.sec_sub {
  max-width: 62ch;
  color: #9b9ba5;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

.rule {
  width: 74px;
  height: 3px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#e63946), to(#d8b46a));
  background: linear-gradient(90deg, #e63946, #d8b46a);
}

/* ---------------------------------------------------------------------
   SCROLL REVEAL  (JS in base.html toggles .visible)
   --------------------------------------------------------------------- */
.scroll-reveal,
.reveal {
  opacity: 0;
  -webkit-transform: translate3d(0, 34px, 0);
          transform: translate3d(0, 34px, 0);
  -webkit-transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal--left {
  -webkit-transform: translate3d(-38px, 0, 0);
          transform: translate3d(-38px, 0, 0);
}

.reveal--right {
  -webkit-transform: translate3d(38px, 0, 0);
          transform: translate3d(38px, 0, 0);
}

.reveal--zoom {
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
}

.scroll-reveal.visible,
.reveal.visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .scroll-reveal,
  .reveal {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   UTILITIES
   --------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
}

.glass {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.055)), to(rgba(255, 255, 255, 0.015)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.mono_text {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
}

::-moz-selection {
  background: #e63946;
  color: #fff;
}

::selection {
  background: #e63946;
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0c;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e63946;
}

/* =====================================================================
   COMPONENTS — buttons, badges, vehicle cards, forms, tables
   ===================================================================== */
/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn--ghost,
.btn_secondary,
.btn_call_us,
.btn_video_watch, .btn,
.btn_primary,
.cta_btn,
.view_more_btn,
.about_btn,
.submit_btn,
.btn_filter_apply,
.btn_request_info,
.btn_calc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn,
.btn_primary,
.cta_btn,
.view_more_btn,
.about_btn,
.submit_btn,
.btn_filter_apply,
.btn_request_info,
.btn_calc {
  color: #fff;
  background: linear-gradient(135deg, #e63946, #b3202c);
  -webkit-box-shadow: 0 14px 34px rgba(230, 57, 70, 0.32);
          box-shadow: 0 14px 34px rgba(230, 57, 70, 0.32);
}

.btn:hover,
.btn_primary:hover,
.cta_btn:hover,
.view_more_btn:hover,
.about_btn:hover,
.submit_btn:hover,
.btn_filter_apply:hover,
.btn_request_info:hover,
.btn_calc:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 22px 48px rgba(230, 57, 70, 0.46);
          box-shadow: 0 22px 48px rgba(230, 57, 70, 0.46);
}

.btn--ghost,
.btn_secondary,
.btn_call_us,
.btn_video_watch {
  color: #f2f2f4;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn--ghost:hover,
.btn_secondary:hover,
.btn_call_us:hover,
.btn_video_watch:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: #e63946;
  color: #e63946;
  background: rgba(230, 57, 70, 0.12);
}

.btn:disabled,
.btn_calc:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

/* ---------------------------------------------------------------------
   BADGES / PILLS
   --------------------------------------------------------------------- */
.pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.sub_badge,
.contact-hero__tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(216, 180, 106, 0.5);
  border-radius: 999px;
  background: rgba(216, 180, 106, 0.1);
  color: #d8b46a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------
   VEHICLE CARD  (shared by arrivals + inventory grid)
   --------------------------------------------------------------------- */
.vehicle_card_link {
  display: block;
  height: 100%;
}

.arrival_card,
.vehicle_card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrival_card:hover,
.vehicle_card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.55);
  -webkit-box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
          box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.card_img_wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}

.card_img_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrival_card:hover .card_img_wrapper img,
.vehicle_card:hover .card_img_wrapper img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.card_img_wrapper::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.card_info,
.card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 22px 22px 24px;
}

.card_info h3,
.car_title {
  font-size: 1.18rem;
  letter-spacing: 0.03em;
}

.car_specs_pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.car_specs_pills span {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #9b9ba5;
  text-transform: uppercase;
}

.divider,
.title_divider {
  width: 100%;
  height: 1px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.09);
}

.card_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price,
.car_price {
  margin: 0;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  color: #e63946;
}

.btn_view {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b9ba5;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle_card:hover .btn_view {
  color: #e63946;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* SOLD states */
.sold_badge,
.sold_banner {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 16px;
  border-radius: 6px;
  background: #e63946;
  color: #fff;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.sold_card .card_img_wrapper img {
  -webkit-filter: grayscale(1) brightness(0.7);
          filter: grayscale(1) brightness(0.7);
}

/* ---------------------------------------------------------------------
   FORM CONTROLS — floating labels (structure preserved from source)
   --------------------------------------------------------------------- */
.field_group {
  position: relative;
  display: block;
}

.field_group input,
.field_group textarea,
.field_group select {
  width: 100%;
  padding: 25px 16px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  outline: none;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.field_group textarea {
  resize: vertical;
  min-height: 132px;
}

.field_group > label {
  position: absolute;
  top: 17px;
  left: 17px;
  pointer-events: none;
  font-size: 0.95rem;
  color: #9b9ba5;
  -webkit-transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.field_group input:focus,
.field_group textarea:focus {
  border-color: rgba(230, 57, 70, 0.8);
  -webkit-box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
          box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.field_group input:not(:-moz-placeholder) + label, .field_group textarea:not(:-moz-placeholder) + label {
  top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e63946;
}

.field_group input:not(:-ms-input-placeholder) + label, .field_group textarea:not(:-ms-input-placeholder) + label {
  top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e63946;
}

.field_group input:focus + label,
.field_group input:not(:placeholder-shown) + label,
.field_group textarea:focus + label,
.field_group textarea:not(:placeholder-shown) + label {
  top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e63946;
}

.focus_border {
  display: none;
} /* replaced by the glow ring above */
.form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Phone row: country select + number */
.phone_container {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.select_wrapper select {
  height: 100%;
  padding: 14px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9b9ba5 50%), linear-gradient(135deg, #9b9ba5 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.phone_input_wrapper {
  position: relative;
}

.phone_input_wrapper label {
  position: absolute;
  top: 17px;
  left: 17px;
  pointer-events: none;
  font-size: 0.95rem;
  color: #9b9ba5;
  -webkit-transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone_input_wrapper input:not(:-moz-placeholder) + label {
  top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e63946;
}

.phone_input_wrapper input:not(:-ms-input-placeholder) + label {
  top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e63946;
}

.phone_input_wrapper input:focus + label,
.phone_input_wrapper input:not(:placeholder-shown) + label {
  top: 7px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e63946;
}

.button_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.submit_btn {
  width: 100%;
}

.btn_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.submit_btn:hover .btn_icon {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media (max-width: 620px) {
  .form_row {
    grid-template-columns: 1fr;
  }
  .phone_container {
    grid-template-columns: 108px 1fr;
  }
}
/* ---------------------------------------------------------------------
   SPEC TABLE
   --------------------------------------------------------------------- */
.specs_data_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.specs_data_table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.specs_data_table tr:last-child {
  border-bottom: 0;
}

.specs_data_table th {
  width: 40%;
  padding: 15px 18px;
  text-align: left;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.specs_data_table td {
  padding: 15px 18px;
  color: #f2f2f4;
}

@media (max-width: 560px) {
  .specs_data_table th,
  .specs_data_table td {
    display: block;
    width: 100%;
  }
  .specs_data_table th {
    padding-bottom: 2px;
  }
  .specs_data_table td {
    padding-top: 0;
  }
}
/* =====================================================================
   LAYOUT — sticky header, mobile nav, hero slider, footer
   ===================================================================== */
/* ---------------------------------------------------------------------
   HEADER
   --------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
   HEADER
   Full replacement for the old header block.
   --------------------------------------------------------------------- */
.site_header {
  --bar-h: 88px; /* resting height  */
  --logo-h: 54px; /* logo always sits INSIDE the bar */
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid transparent;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* condensed state, set by the scroll handler in base.html */
.site_header.is_stuck {
  --bar-h: 66px;
  --logo-h: 40px;
  background: rgba(10, 10, 12, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(140%);
}

.header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 3vw, 40px);
  height: var(--bar-h);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 46px);
  /* Deliberately NOT transitioned. Animating the bar's height changes
     the document height mid-scroll, which feeds back into the scroll
     position and makes the header flicker. The logo carries the motion
     instead — see --logo-h. */
}

/* ---------- logo ---------- */
.logo_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.logo {
  height: var(--logo-h);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* the footer keeps its own, larger size */
.footer_logo {
  height: 90px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---------- navigation ---------- */
.navigation {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(4px, 1vw, 12px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation a {
  position: relative;
  display: block;
  padding: 10px 4px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b9ba5;
  white-space: nowrap;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  /* the rule under each item — grows from the centre */
}
.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e63946;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.navigation a:hover, .navigation a:focus-visible {
  color: #f2f2f4;
}
.navigation a:hover::after, .navigation a:focus-visible::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* current page: rule stays put, and a dot marks it */
.navigation a.is_active {
  color: #f2f2f4;
}
.navigation a.is_active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* padding so the underline has room to breathe */
.navigation li {
  padding-inline: clamp(6px, 0.9vw, 12px);
}

/* ---------- phone plate ---------- */
/* Two lines, mono digits — reads like the plate on a dealer desk
   rather than another pill button. */
.phone_plate {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone_plate:hover, .phone_plate:focus-visible {
  border-color: rgba(230, 57, 70, 0.65);
  background: rgba(230, 57, 70, 0.12);
}

.phone_plate_label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.phone_plate_number {
  font-family: "IBM Plex Mono", ui-monospace, monospace, ui-monospace, Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #f2f2f4;
  white-space: nowrap;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone_plate:hover .phone_plate_number {
  color: #e63946;
}

/* ---------- mobile controls ---------- */
.mobile_menu_btn,
.mobile_phone_btn {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.mobile_menu_btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #1a1a20;
  cursor: pointer;
  z-index: 2; /* stays above the open panel */
}

.mobile_menu_btn .bar {
  display: block;
  width: 18px;
  height: 1.5px;
  margin-inline: auto;
  background: #f2f2f4;
  -webkit-transition: opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile_menu_btn.open .bar:nth-child(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
          transform: translateY(6.5px) rotate(45deg);
}

.mobile_menu_btn.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile_menu_btn.open .bar:nth-child(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
          transform: translateY(-6.5px) rotate(-45deg);
}

.mobile_phone_btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(230, 57, 70, 0.5);
  background: rgba(230, 57, 70, 0.12);
}

.mobile_phone_btn .phone_icon {
  width: 17px;
  height: 17px;
  background: #e63946;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
}

/* ---------- mobile panel ---------- */
/* A full sheet under the bar, not a squeezed accordion.
   Positioned ABSOLUTE, not fixed: the header carries a backdrop-filter
   when stuck, and that makes it the containing block for any fixed
   descendant — which would collapse this panel to the height of the bar. */
.mobile_nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - var(--bar-h));
  z-index: 80;
  background: rgba(9, 9, 11, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* older browsers without dvh */
@supports not (height: 100dvh) {
  .mobile_nav {
    height: calc(100vh - var(--bar-h));
  }
}
.mobile_nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: none;
          transform: none;
}

.mobile_nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: clamp(20px, 6vw, 40px) clamp(18px, 4vw, 46px) clamp(28px, 8vw, 48px);
  overflow-y: auto;
}

.mobile_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile_nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile_nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: clamp(16px, 4.5vw, 22px) 2px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  letter-spacing: 0.04em;
  color: #9b9ba5;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile_nav li a:hover, .mobile_nav li a:focus-visible {
  color: #f2f2f4;
  padding-left: 8px;
}

.mobile_nav li a.is_active {
  color: #e63946;
  /* small marker so the current page is obvious */
}
.mobile_nav li a.is_active::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e63946;
}

/* links slide in one after another when the panel opens */
.mobile_nav.active li {
  -webkit-animation: nav_item_in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: nav_item_in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile_nav.active li:nth-child(1) {
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
}

.mobile_nav.active li:nth-child(2) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}

.mobile_nav.active li:nth-child(3) {
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}

.mobile_nav.active li:nth-child(4) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}

@-webkit-keyframes nav_item_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes nav_item_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.mobile_nav_phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(230, 57, 70, 0.5);
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.12);
}
.mobile_nav_phone span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9b9ba5;
}
.mobile_nav_phone b {
  font-family: "IBM Plex Mono", ui-monospace, monospace, ui-monospace, Consolas, monospace;
  font-size: 1.12rem;
  font-weight: 500;
  color: #f2f2f4;
}

/* page behind the panel must not scroll */
body.nav_open {
  overflow: hidden;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .site_header {
    --bar-h: 68px;
    --logo-h: 42px;
  }
  .site_header.is_stuck {
    --bar-h: 68px;
    --logo-h: 38px;
  }
  .navigation,
  .phone_plate {
    display: none;
  }
  .mobile_menu_btn,
  .mobile_phone_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  /* logo left, buttons right */
  .logo_box {
    margin-right: auto;
  }
  .header_box {
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site_header,
  .header_box,
  .logo,
  .navigation a,
  .navigation a::after,
  .mobile_nav,
  .mobile_menu_btn .bar {
    -webkit-transition: none;
    transition: none;
  }
  .mobile_nav.active li {
    -webkit-animation: none;
            animation: none;
  }
}
/* ---------------------------------------------------------------------
   HERO SLIDER
   --------------------------------------------------------------------- */
.hero_slider {
  position: relative;
  height: clamp(460px, 88vh, 900px);
  overflow: hidden;
  isolation: isolate;
}

.slider_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: heroZoom 12s ease-in-out infinite alternate;
          animation: heroZoom 12s ease-in-out infinite alternate;
}

@-webkit-keyframes heroZoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

@keyframes heroZoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.hero_slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(2%, #0a0a0c), color-stop(45%, rgba(10, 10, 12, 0.35)), to(rgba(10, 10, 12, 0.72)));
  background: linear-gradient(to top, #0a0a0c 2%, rgba(10, 10, 12, 0.35) 45%, rgba(10, 10, 12, 0.72) 100%);
}

.fixed_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  text-align: center;
  padding: 90px clamp(18px, 4vw, 46px);
}

.hero_eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #d8b46a;
}

.hero_title {
  max-width: 16ch;
  font-size: clamp(2.9rem, 11vw, 8rem);
  line-height: 0.88;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero_title span {
  color: #e63946;
}

.hero_lead {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.hero_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider_dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.slider_dots .dot {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider_dots .dot.active {
  width: 58px;
  background: #e63946;
}

.hero_stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 62px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(18px, 5vw, 60px);
}

.hero_stats .stat {
  text-align: center;
  min-width: 92px;
}

.hero_stats .stat b {
  display: block;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  color: #fff;
}

.hero_stats .stat span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 720px) {
  .hero_stats {
    display: none;
  }
}
/* ---------------------------------------------------------------------
   PAGE HERO BANNER (inner pages)
   --------------------------------------------------------------------- */
.page_hero_banner,
.contact-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(340px, 52vh, 520px);
  padding: clamp(70px, 10vw, 120px) clamp(18px, 4vw, 46px);
  text-align: center;
  overflow: hidden;
  background-image: url("https://images.pexels.com/photos/18610718/pexels-photo-18610718.jpeg?_gl=1*k4y5q3*_ga*MTcyNzA1MjAzMS4xNzg1NTEwNzA4*_ga_8JE65Q40S6*czE3ODU1MTA3MDgkbzEkZzEkdDE3ODU1MTA3MTYkajUyJGwwJGgw"); /* BRAND: banner image */
  background-position: center;
  background-size: cover;
}

.banner_overlay,
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3%, #0a0a0c), color-stop(60%, rgba(10, 10, 12, 0.62)), to(rgba(10, 10, 12, 0.8)));
  background: linear-gradient(to top, #0a0a0c 3%, rgba(10, 10, 12, 0.62) 60%, rgba(10, 10, 12, 0.8));
}

.banner_content,
.contact-hero__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  max-width: 800px;
}

.banner_content h1,
.contact-hero__title {
  font-size: clamp(2.4rem, 8vw, 5.2rem);
}

.banner_lead,
.contact-hero__subtitle {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site_footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(50px, 8vw, 110px);
  padding: clamp(52px, 7vw, 90px) 0 26px;
  overflow: hidden;
  background-image: url("https://images.pexels.com/photos/18610718/pexels-photo-18610718.jpeg?_gl=1*k4y5q3*_ga*MTcyNzA1MjAzMS4xNzg1NTEwNzA4*_ga_8JE65Q40S6*czE3ODU1MTA3MDgkbzEkZzEkdDE3ODU1MTA3MTYkajUyJGwwJGgw"); /* BRAND: footer background */
  background-position: center;
  background-size: cover;
}

.footer_overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 10, 12, 0.94)), to(rgba(10, 10, 12, 0.99)));
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.94), rgba(10, 10, 12, 0.99));
}

.footer_container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 46px);
}

.footer_main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 60px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.footer_brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.brand_logo_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footer_logo {
  height: 90px;
}

.brand_tagline {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.footer_nav_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 20px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.footer_nav_links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b9ba5;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer_nav_links a:hover {
  color: #e63946;
}

.footer_info_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.info_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.info_card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.info_icon {
  display: grid;
  place-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  color: #e63946;
}

.info_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.info_label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.info_value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f2f2f4;
  overflow-wrap: anywhere;
}

.info_card.highlight {
  border-color: rgba(230, 57, 70, 0.4);
}

.footer_divider {
  height: 1px;
  margin: clamp(28px, 4vw, 46px) 0 22px;
  background: rgba(255, 255, 255, 0.09);
}

.footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
}

.copyright_text {
  margin: 0;
  font-size: 0.78rem;
  color: #9b9ba5;
}

.legal_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #9b9ba5;
}

.legal_nav a:hover {
  color: #e63946;
}

.dot_sep {
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .footer_main {
    grid-template-columns: 1fr;
  }
}
/* =====================================================================
   PAGES — home, inventory, vehicle detail, shipping, contact
   ===================================================================== */
/* ---------------------------------------------------------------------
   HOME: marquee strip
   --------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  padding-block: 16px;
}

.marquee_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marqueeSlide 26s linear infinite;
          animation: marqueeSlide 26s linear infinite;
}

.marquee_track span {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.marquee_track span::after {
  content: "◆";
  margin-left: 46px;
  color: #e63946;
  font-size: 0.7rem;
  vertical-align: middle;
}

@-webkit-keyframes marqueeSlide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marqueeSlide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ---------------------------------------------------------------------
   HOME: purchase process — alternating flow on a centre rail
   Replaces the old `.process_steps / .process_step / .process_num …`
   block, and the whole `verify` block (that section is gone).
   --------------------------------------------------------------------- */
.pflow {
  --rail: clamp(60px, 7vw, 120px); /* width of the centre channel */
  --node: 44px; /* diameter of the numbered node */
  position: relative;
  list-style: none;
  margin: clamp(30px, 4vw, 56px) 0 0;
  padding: 0;
}

/* the centre line, faded at both ends */
.pflow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(7%, rgba(255, 255, 255, 0.09)), color-stop(93%, rgba(255, 255, 255, 0.09)), to(transparent));
  background: linear-gradient(to bottom, transparent 0, rgba(255, 255, 255, 0.09) 7%, rgba(255, 255, 255, 0.09) 93%, transparent 100%);
}

/* accent line that fills as the section scrolls past (progressive) */
.pflow_progress {
  display: none;
}

@supports (animation-timeline: view()) {
  .pflow_progress {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    margin-left: -0.5px;
    background: rgba(230, 57, 70, 0.55);
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-animation: pflow_fill linear both;
            animation: pflow_fill linear both;
    animation-timeline: view();
    animation-range: entry 25% cover 65%;
  }
}
@-webkit-keyframes pflow_fill {
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes pflow_fill {
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/* ---------- rows ---------- */
.pflow_item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--rail) minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: clamp(12px, 1.8vw, 24px);
}

.pflow_item--left .pflow_card {
  grid-column: 1;
}

.pflow_item--right .pflow_card {
  grid-column: 3;
}

/* ---------- node on the rail ---------- */
.pflow_node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  width: var(--node);
  height: var(--node);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: #0a0a0c;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: #e63946;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pflow_item:hover .pflow_node {
  border-color: #e63946;
  background: #e63946;
  color: #fff;
}

/* ---------- cards ---------- */
.pflow_card {
  position: relative;
  padding: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pflow_card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(230, 57, 70, 0.45);
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
          box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* hairline stub joining card to node */
.pflow_card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc((var(--rail) - var(--node)) / 2);
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.pflow_item--left .pflow_card::after {
  left: 100%;
}

.pflow_item--right .pflow_card::after {
  right: 100%;
}

.pflow_step {
  display: block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

.pflow_title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  letter-spacing: 0.02em;
}

.pflow_text {
  margin: 0 0 clamp(18px, 2.2vw, 24px);
  font-size: 0.94rem;
  line-height: 1.7;
  opacity: 0.8;
}

.pflow_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #e63946;
}
.pflow_link em {
  font-style: normal;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pflow_link:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 4px;
}

.pflow_card:hover .pflow_link em {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}

/* ---------- responsive: rail moves to the left edge ---------- */
@media (max-width: 860px) {
  .pflow {
    --node: 40px;
  }
  .pflow::before,
  .pflow_progress {
    left: calc(var(--node) / 2);
  }
  .pflow_item {
    grid-template-columns: var(--node) minmax(0, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: clamp(16px, 4vw, 26px);
    padding-block: clamp(12px, 3vw, 18px);
  }
  .pflow_node {
    grid-column: 1;
    justify-self: start;
    margin-top: 26px;
  }
  .pflow_item--left .pflow_card,
  .pflow_item--right .pflow_card {
    grid-column: 2;
  }
  .pflow_card::after {
    top: 46px;
    left: auto;
    right: 100%;
    width: clamp(16px, 4vw, 26px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pflow_card,
  .pflow_node,
  .pflow_link em {
    -webkit-transition: none;
    transition: none;
  }
  .pflow_card:hover {
    -webkit-transform: none;
            transform: none;
  }
  .pflow_progress {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/* ---------------------------------------------------------------------
   PROCESS step 01 — verification dropdown (CCFS lookup)
   Append to the .pflow block.
   --------------------------------------------------------------------- */
.vbox {
  margin-top: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.vbox summary {
  list-style: none;
}
.vbox summary::-webkit-details-marker {
  display: none;
}

.vbox_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #e63946;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.vbox_head:hover {
  background: rgba(255, 255, 255, 0.04);
}
.vbox_head:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: -2px;
  border-radius: 14px;
}

/* plus → minus */
.vbox_icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.vbox_icon::before, .vbox_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.vbox_icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.vbox[open] .vbox_icon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.vbox_body {
  padding: 4px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-animation: vbox_open 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: vbox_open 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes vbox_open {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes vbox_open {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* ---------- the three lookup steps ---------- */
.vsteps {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.vsteps li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.85;
}
.vsteps li:last-child {
  padding-bottom: 0;
}
.vsteps b {
  color: #e63946;
  font-weight: 600;
}

.vstep_n {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border: 1px solid rgba(230, 57, 70, 0.45);
  border-radius: 50%;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.76rem;
  color: #e63946;
}

/* ---------- UBI number + copy ---------- */
.ubi_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.ubi_code {
  padding: 9px 14px;
  border: 1px dashed rgba(230, 57, 70, 0.5);
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.07);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: #f2f2f4;
  white-space: nowrap;
}

.ubi_copy {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: none;
  color: #9b9ba5;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ubi_copy:hover {
  border-color: rgba(230, 57, 70, 0.6);
  color: #f2f2f4;
}
.ubi_copy:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 2px;
}
.ubi_copy.is_copied {
  border-color: rgba(16, 185, 129, 0.6);
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

/* ---------- portal button ---------- */
.vbox_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid #e63946;
  border-radius: 14px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e63946;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.vbox_btn em {
  font-style: normal;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.vbox_btn:hover, .vbox_btn:focus-visible {
  background: #e63946;
  color: #fff;
}
.vbox_btn:hover em, .vbox_btn:focus-visible em {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

/* ---------- mobile ---------- */
@media (max-width: 560px) {
  .vbox_head {
    padding: 13px 14px;
    font-size: 0.9rem;
  }
  .vbox_body {
    padding: 4px 14px 16px;
  }
  .ubi_row {
    gap: 8px;
  }
  .ubi_code {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
    font-size: 0.96rem;
    letter-spacing: 0.1em;
  }
  .ubi_copy {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .vbox_btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vbox_body {
    -webkit-animation: none;
            animation: none;
  }
  .vbox_head, .vbox_icon::before, .vbox_icon::after,
  .ubi_copy, .vbox_btn, .vbox_btn em {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   HOME: reviews
   Replaces the old `.about_section / .about_layout / .stat_row` rules
   on the home page — keep them if other pages still use about markup.
   --------------------------------------------------------------------- */
.reviews {
  position: relative;
}

.reviews_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(16px, 2.4vw, 32px);
  padding-bottom: clamp(22px, 2.8vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.reviews_score {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.reviews_stars {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #e63946;
}

.reviews_score_text {
  font-size: 0.88rem;
  opacity: 0.72;
}
.reviews_score_text b {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  opacity: 1;
}

.reviews_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(28px, 3.4vw, 44px);
}

.review_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.review_card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  border-color: rgba(230, 57, 70, 0.4);
}

.review_stars {
  margin-bottom: clamp(14px, 1.8vw, 18px);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: #e63946;
}
.review_stars i {
  font-style: normal;
  opacity: 0.28;
}

.review_quote {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 0 clamp(18px, 2.2vw, 24px);
  font-size: 0.97rem;
  line-height: 1.7;
  opacity: 0.85;
}

.review_by {
  padding-top: clamp(16px, 2vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.review_by b {
  display: block;
  margin-bottom: 4px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}
.review_by span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.reviews_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 4vw, 50px);
}

.reviews_btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #e63946;
  border-radius: 2px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: #e63946;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.reviews_btn:hover, .reviews_btn:focus-visible {
  background: #e63946;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .review_card {
    -webkit-transition: none;
    transition: none;
  }
  .review_card:hover {
    -webkit-transform: none;
            transform: none;
  }
}
/* ---------------------------------------------------------------------
   HOME: reviews — mobile slider
   Add at the END of the reviews block. Desktop grid is untouched.
   Template needs no changes.
   --------------------------------------------------------------------- */
@media (max-width: 760px) {
  /* horizontal snap track, bleeding to the screen edges */
  .reviews_grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin-inline: calc(var(--container-pad, 20px) * -1);
    padding-inline: var(--container-pad, 20px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--container-pad, 20px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews_grid::-webkit-scrollbar {
    display: none;
  }
  .review_card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84%;
            flex: 0 0 84%; /* next card peeks in — signals swipe */
    scroll-snap-align: start;
    padding: 24px;
  }
  /* cards sit off-screen horizontally, so the reveal observer
     never fires for them — show them outright inside the track */
  .reviews_grid .scroll-reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .review_card:hover {
    -webkit-transform: none;
            transform: none;
  }
  .reviews_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
/* ---------------------------------------------------------------------
   CONTACT FORM SECTION (shared include)
   Full replacement — includes the phone field fixes.
   --------------------------------------------------------------------- */
.contact_section {
  position: relative;
  padding-block: clamp(64px, 9vw, 120px);
}

.contact_shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 4vw, 56px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 46px);
}

.contact_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.contact_perks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.contact_perks li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #9b9ba5;
}

.contact_perks li::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e63946;
  -webkit-box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
          box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.form_card {
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.015)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.header_block {
  margin-bottom: 22px;
}

.header_block h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.subheading {
  margin: 8px 0 0;
  color: #9b9ba5;
  font-size: 0.92rem;
}

.contact_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

/* screen-reader-only label (used by the phone number input) */
.sr_only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------
   PHONE FIELD — flag + dial code + number inside one control
   Every rule is scoped to .phone_group so the generic .field_group
   input/label styles can't fight it.
   --------------------------------------------------------------------- */
.phone_group {
  position: relative;
  /* the shared underline/focus bar is redundant here */
}
.phone_group .focus_border {
  display: none;
}

.phone_field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone_field:focus-within {
  border-color: rgba(230, 57, 70, 0.8);
  -webkit-box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
          box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

/* hard reset: kill inherited input chrome inside the control */
.phone_group .phone_field input {
  height: 100%;
  min-width: 0;
  border: 0 !important;
  border-radius: 0;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  outline: none;
}
.phone_group .phone_field input::-webkit-input-placeholder {
  color: #9b9ba5;
  opacity: 1;
}
.phone_group .phone_field input::-moz-placeholder {
  color: #9b9ba5;
  opacity: 1;
}
.phone_group .phone_field input:-ms-input-placeholder {
  color: #9b9ba5;
  opacity: 1;
}
.phone_group .phone_field input::-ms-input-placeholder {
  color: #9b9ba5;
  opacity: 1;
}
.phone_group .phone_field input::placeholder {
  color: #9b9ba5;
  opacity: 1;
}
.phone_group .phone_field input {
  /* stop Chrome autofill painting a white block over the field */
}
.phone_group .phone_field input:-webkit-autofill, .phone_group .phone_field input:-webkit-autofill:hover, .phone_group .phone_field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f2f2f4;
  -webkit-box-shadow: 0 0 0 1000px #1a1a20 inset !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

/* flag button */
.phone_group .cc_toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 100%;
  padding: 0 6px 0 13px;
  border: 0;
  border-radius: 14px 0 0 14px;
  background: none;
  color: #9b9ba5;
  cursor: pointer;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone_group .cc_toggle:hover {
  color: #f2f2f4;
}
.phone_group .cc_toggle:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: -3px;
}

.cc_flag {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.cc_caret {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone_group .cc_toggle[aria-expanded=true] .cc_caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* dial code — sized to its own content, never stretches */
.phone_group .cc_code {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 3.2rem;
  padding: 0 2px 0 0;
  text-align: left;
}

.phone_divider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
  width: 1px;
  height: 22px;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.09);
}

/* number input fills the rest */
.phone_input_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  height: 100%;
}

.phone_group .phone_input_wrapper input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  padding: 0 14px 0 0;
}

/* ---------- dropdown ---------- */
.cc_menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  left: 0;
  width: min(300px, 100vw - 40px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #121216;
  -webkit-box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.cc_menu[hidden] {
  display: none;
}

.phone_group .cc_search {
  width: 100%;
  height: 42px;
  margin-bottom: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 14px;
  background: #1a1a20 !important;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  outline: none;
}
.phone_group .cc_search:focus {
  border-color: rgba(230, 57, 70, 0.7) !important;
}

.cc_list {
  max-height: min(240px, 40vh);
  margin: 0;
  padding: 0;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  list-style: none;
  scrollbar-width: thin;
}

.cc_option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.88rem;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cc_option:hover, .cc_option:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.cc_option img {
  width: 24px;
  height: 18px;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.cc_name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cc_dial {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: #e63946;
}

.cc_empty {
  margin: 10px 4px 4px;
  font-size: 0.82rem;
  color: #9b9ba5;
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 940px) {
  .contact_shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .phone_field {
    height: 52px;
  }
  .phone_group .cc_toggle {
    padding-left: 11px;
  }
  .phone_group .cc_code {
    width: 3rem;
    font-size: 0.9rem;
  }
  .phone_divider {
    margin-right: 10px;
  }
  .phone_group .phone_input_wrapper input {
    font-size: 0.9rem;
  }
  .cc_menu {
    width: calc(100vw - 40px);
    max-width: 340px;
  }
}
@media (max-width: 380px) {
  .cc_caret {
    display: none;
  }
  .phone_group .cc_toggle {
    padding-right: 4px;
  }
  .phone_group .cc_code {
    width: 2.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cc_caret,
  .cc_option,
  .phone_field,
  .phone_group .cc_toggle {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   INVENTORY
   --------------------------------------------------------------------- */
.inventory_section {
  padding-block: clamp(46px, 6vw, 90px);
}

.filter_bar_form {
  margin-bottom: clamp(26px, 3.5vw, 44px);
}

.filter_bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.filter_group select,
.filter_group input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  outline: none;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter_group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.filter_group select:focus,
.filter_group input:focus {
  border-color: rgba(230, 57, 70, 0.8);
  -webkit-box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
          box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.btn_filter_apply {
  height: 52px;
  padding-inline: 26px;
}

.inventory_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.no_vehicles_msg {
  grid-column: 1/-1;
  padding: clamp(46px, 8vw, 90px) 24px;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  text-align: center;
}

.no_vehicles_msg h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.no_vehicles_msg p {
  color: #9b9ba5;
}

/* ---------------------------------------------------------------------
   INVENTORY: brand chips + result count
   Add under the existing .filter_bar rules.
   --------------------------------------------------------------------- */
/* five controls + apply button now share the bar */
.filter_bar {
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
}

.brand_chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.brand_chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: #1a1a20;
  color: #9b9ba5;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand_chip b {
  font-weight: 500;
  font-size: 0.74rem;
  opacity: 0.55;
}
.brand_chip:hover, .brand_chip:focus-visible {
  border-color: rgba(230, 57, 70, 0.6);
  color: #f2f2f4;
}
.brand_chip.is_active {
  border-color: #e63946;
  background: #e63946;
  color: #fff;
}
.brand_chip.is_active b {
  opacity: 0.75;
}

.result_count {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: #9b9ba5;
}

@media (max-width: 560px) {
  .brand_chips {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -20px;
    padding-inline: 20px;
    scrollbar-width: none;
  }
  .brand_chips::-webkit-scrollbar {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand_chip {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   INVENTORY: pagination
   Add under the .brand_chips rules.
   --------------------------------------------------------------------- */
.result_page {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0.7;
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: clamp(30px, 4vw, 50px);
}

.pager_nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.pager_btn,
.pager_num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: #9b9ba5;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pager_num {
  padding: 0 8px;
}

.pager_btn:hover,
.pager_num:hover {
  border-color: rgba(230, 57, 70, 0.6);
  color: #f2f2f4;
}

.pager_num.is_active {
  border-color: #e63946;
  background: #e63946;
  color: #fff;
}

.pager_btn.is_off {
  opacity: 0.35;
  pointer-events: none;
}

.pager_gap {
  padding: 0 4px;
  color: #9b9ba5;
  opacity: 0.6;
}

@media (max-width: 560px) {
  .pager {
    gap: 8px;
  }
  .pager_btn {
    padding: 0 12px;
    font-size: 0.82rem;
  }
  .pager_num {
    min-width: 38px;
    height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pager_btn, .pager_num {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   VEHICLE DETAIL
   --------------------------------------------------------------------- */
.vehicle_detail_section {
  padding-block: clamp(36px, 5vw, 70px);
}

.crumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.crumbs a:hover {
  color: #e63946;
}

.detail_hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: clamp(22px, 3vw, 42px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.hero_gallery_col {
  min-width: 0;
}

.main_image_container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #000;
}

.main_image_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery_nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery_nav:hover {
  background: #e63946;
  border-color: #e63946;
}

.gallery_nav.prev {
  left: 14px;
}

.gallery_nav.next {
  right: 14px;
}

.thumbnail_strip_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.thumbnail_strip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.thumbnail_strip::-webkit-scrollbar {
  display: none;
}

.thumb_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 108px;
          flex: 0 0 108px;
  height: 74px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.thumb_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumb_item:hover {
  opacity: 1;
}

.thumb_item.active {
  opacity: 1;
  border-color: #e63946;
}

.thumb_scroll_btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #f2f2f4;
  cursor: pointer;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.thumb_scroll_btn:hover {
  background: #e63946;
}

/* Right info column */
.hero_info_col {
  position: sticky;
  top: calc(84px + 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.055)), to(rgba(255, 255, 255, 0.015)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.header_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.vehicle_tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d8b46a;
}

.vehicle_main_title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.vehicle_price_tag {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: #e63946;
}

.quick_specs_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.spec_badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.spec_badge .label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.spec_badge .value {
  font-size: 0.92rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.action_buttons {
  display: grid;
  gap: 10px;
}

.action_buttons a {
  width: 100%;
}

/* Tabs */
.detail_tabs_container {
  margin-top: clamp(36px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
  overflow: hidden;
}

.tab_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  scrollbar-width: none;
}

.tab_navigation::-webkit-scrollbar {
  display: none;
}

.tab_btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9b9ba5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tab_btn:hover {
  color: #f2f2f4;
}

.tab_btn.active {
  background: #e63946;
  color: #fff;
}

.tab_content {
  display: none;
  padding: clamp(20px, 3vw, 36px);
}

.tab_content.active {
  display: block;
  -webkit-animation: tabFade 0.5s cubic-bezier(0.22, 1, 0.36, 1);
          animation: tabFade 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@-webkit-keyframes tabFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes tabFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.description_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
  gap: clamp(20px, 3vw, 40px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.section_title {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.formatted_description {
  color: #9b9ba5;
}

.formatted_description img {
  border-radius: 14px;
  margin-block: 14px;
}

.disclaimer_box {
  padding: 22px;
  border: 1px solid rgba(216, 180, 106, 0.32);
  border-radius: 14px;
  background: rgba(216, 180, 106, 0.07);
}

.disclaimer_box h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #d8b46a;
}

.disclaimer_box p {
  font-size: 0.86rem;
  color: #9b9ba5;
}

.media_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.video_link_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.video_url_text {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: #9b9ba5;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .detail_hero_grid {
    grid-template-columns: 1fr;
  }
  .hero_info_col {
    position: static;
  }
  .description_layout {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------------------------
   SHIPPING
   --------------------------------------------------------------------- */
.shipping_calculator_section {
  padding-block: clamp(50px, 7vw, 100px);
}

.section_title_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: clamp(26px, 3.4vw, 44px);
  text-align: center;
}

.calc_title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}

.title_stripe {
  width: 78px;
  height: 3px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#e63946), to(#d8b46a));
  background: linear-gradient(90deg, #e63946, #d8b46a);
}

.calculator_card {
  padding: clamp(20px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.055)), to(rgba(255, 255, 255, 0.015)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  -webkit-box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.calc_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 38px);
}

.calc_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.col_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.col_header label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.origin_address_box {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid #e63946;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.origin_address_box strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.origin_address_box p {
  margin: 0;
  font-size: 0.88rem;
  color: #9b9ba5;
}

.input_wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input_wrapper input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  outline: none;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.input_wrapper input:focus {
  border-color: rgba(230, 57, 70, 0.8);
  -webkit-box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
          box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.btn_calc {
  height: 56px;
}

.rate_badge {
  font-size: 0.8rem;
  color: #9b9ba5;
}

.rate_badge strong {
  color: #d8b46a;
}

.calc_results {
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.results_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.result_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.result_box.highlight {
  border-color: rgba(230, 57, 70, 0.45);
  background: rgba(230, 57, 70, 0.12);
}

.res_label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.res_value {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}

.available_cars_badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 18px;
  padding: 13px 20px;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 0.9rem;
  text-align: center;
}

.available_cars_badge strong {
  color: rgb(26.9253731343, 235.2746268657, 166.2358208955);
}

.disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #9b9ba5;
  text-align: center;
}

/* Process steps */
.shipping_process_section {
  padding-block: clamp(50px, 7vw, 100px);
}

.steps_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  margin-bottom: clamp(34px, 5vw, 60px);
}

.step_card {
  position: relative;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.step_card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.5);
}

.step_num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  color: #e63946;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
}

.step_card h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.step_card p {
  font-size: 0.88rem;
  color: #9b9ba5;
}

.shipping_cta_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 50px);
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: 22px;
  background: radial-gradient(70% 120% at 50% 0%, rgba(230, 57, 70, 0.22), transparent 70%), #121216;
  text-align: center;
}

.shipping_cta_box h3 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.shipping_cta_box p {
  max-width: 56ch;
  color: #9b9ba5;
}

.cta_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .calc_grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .input_wrapper {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------------------------
   SHIPPING: FAQ  (add after the calculator rules, before .shipping_cta_box)
   --------------------------------------------------------------------- */
.faq_section {
  padding-block: clamp(50px, 7vw, 100px);
}

.faq_list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.faq_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  /* remove the native marker */
}
.faq_item summary {
  list-style: none;
}
.faq_item summary::-webkit-details-marker {
  display: none;
}

.faq_q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.2vw, 24px) 4px;
  cursor: pointer;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  letter-spacing: 0.02em;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq_q:hover {
  color: #e63946;
}
.faq_q:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

/* plus → minus */
.faq_icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq_icon::before, .faq_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #e63946;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq_icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.faq_q:hover .faq_icon {
  border-color: rgba(230, 57, 70, 0.6);
}

.faq_item[open] .faq_icon {
  border-color: rgba(230, 57, 70, 0.6);
  background: rgba(230, 57, 70, 0.12);
}
.faq_item[open] .faq_icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq_a {
  padding: 0 4px clamp(20px, 2.4vw, 26px);
  max-width: 74ch;
}
.faq_a p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #9b9ba5;
}

/* open animation — falls back to an instant open where unsupported */
.faq_item[open] .faq_a {
  -webkit-animation: faq_open 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: faq_open 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes faq_open {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes faq_open {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.faq_more {
  margin-top: clamp(24px, 3vw, 34px);
  font-size: 0.92rem;
  text-align: center;
  color: #9b9ba5;
}

.faq_more .highlight_phone {
  white-space: nowrap;
}

.shipping_cta_section {
  padding-bottom: clamp(50px, 7vw, 100px);
}

@media (prefers-reduced-motion: reduce) {
  .faq_item[open] .faq_a {
    -webkit-animation: none;
            animation: none;
  }
  .faq_icon, .faq_icon::before, .faq_icon::after, .faq_q {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------------------- */
.contact-section {
  padding-block: clamp(50px, 7vw, 100px);
}

.contact-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 46px);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: clamp(20px, 3vw, 38px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  -webkit-filter: grayscale(0.6) invert(0.9) hue-rotate(180deg) contrast(0.9);
          filter: grayscale(0.6) invert(0.9) hue-rotate(180deg) contrast(0.9);
}

.info-cards-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.section-title {
  margin-bottom: 4px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-card:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  border-color: rgba(230, 57, 70, 0.5);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  color: #e63946;
}

.contact-card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-card__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.contact-card__value {
  font-size: 0.94rem;
  font-weight: 600;
  font-style: normal;
  overflow-wrap: anywhere;
}

.contact-card__link:hover {
  color: #e63946;
}

.hours-wrapper {
  margin-top: clamp(20px, 3vw, 38px);
}

.hours-card {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.015)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.hours-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hours-card__header h3 {
  font-size: 1.4rem;
}

.hours-card__header-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  color: #e63946;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0 clamp(20px, 4vw, 50px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
}

.hours-list__item .day {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.hours-list__item .time {
  font-size: 0.92rem;
  font-weight: 600;
}

.status-tag {
  padding: 5px 12px;
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.12);
  color: #e63946;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .map-card,
  .map-card iframe {
    min-height: 320px;
  }
}
/* flash message above the contact form — replaces .form_sent */
.form_note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  font-size: 0.9rem;
  -webkit-animation: form_note_in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: form_note_in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form_note_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  position: relative;
}
.form_note_icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.form_note--success {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.form_note--error {
  border-color: rgba(230, 57, 70, 0.45);
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
  /* cross instead of a tick */
}
.form_note--error .form_note_icon::after {
  left: 8px;
  top: 3px;
  width: 1.5px;
  height: 10px;
  border: 0;
  background: currentColor;
  -webkit-box-shadow: 0 0 0 0 currentColor;
          box-shadow: 0 0 0 0 currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form_note--error .form_note_icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 1.5px;
  height: 10px;
  background: currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@-webkit-keyframes form_note_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes form_note_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .form_note {
    -webkit-animation: none;
            animation: none;
  }
}
/* ---------------------------------------------------------------------
   CONTACT: car picker
   Replaces the old .car_picker / .car_picker_field / .car_preview rules.
   .form_about (the locked card on vehicle pages) stays as it is.
   --------------------------------------------------------------------- */
.car_field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}

.car_field .car_field_label,
.car_field label.car_field_label {
  /* The site's floating-label CSS targets `.field_group label` and sets
     position:absolute + a transform. This field is deliberately NOT a
     .field_group, and these resets make sure nothing leaks in anyway. */
  position: static;
  -webkit-transform: none;
          transform: none;
  inset: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b9ba5;
  pointer-events: auto;
}
.car_field .car_field_label em,
.car_field label.car_field_label em {
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* ---------- the plain select (no-JS fallback) ---------- */
.car_native {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
}
.car_native option, .car_native optgroup {
  background: #121216;
  color: #f2f2f4;
}

/* once the script runs it hides, but stays in the form */
.car_native.is_enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
}

/* ---------- trigger ---------- */
.car_trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.car_trigger:hover {
  border-color: #3a4046;
}
.car_trigger:focus-visible {
  outline: none;
  border-color: rgba(230, 57, 70, 0.8);
  -webkit-box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
          box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}
.car_trigger.is_picked {
  border-left: 2px solid #e63946;
}

.car_trigger_thumb {
  display: grid;
  place-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04) center/cover no-repeat;
  color: #9b9ba5;
}
.car_trigger_thumb svg {
  width: 22px;
  height: 22px;
}
.car_trigger_thumb.has_photo {
  border-color: transparent;
}
.car_trigger_thumb.has_photo svg {
  display: none;
}

.car_trigger_text {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.car_trigger_text .car_trigger_kicker {
  display: block;
  margin-bottom: 1px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b9ba5;
}
.car_trigger_text b {
  display: block;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.car_trigger_text i {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #9b9ba5;
}
.car_trigger_text i:empty {
  display: none;
}

.car_trigger_caret {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #9b9ba5;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.car_field.is_open .car_trigger_caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ---------- sheet ---------- */
.car_sheet {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: min(420px, 58vh);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #121216;
  -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  -webkit-animation: car_sheet_in 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: car_sheet_in 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.car_sheet[hidden] {
  display: none;
}

@-webkit-keyframes car_sheet_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes car_sheet_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* the head only shows on the mobile sheet */
.car_sheet_head {
  display: none;
}

.car_backdrop {
  display: none;
}
.car_backdrop[hidden] {
  display: none;
}

/* ---------- search ---------- */
.car_search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.car_search svg {
  position: absolute;
  left: 22px;
  width: 16px;
  height: 16px;
  color: #9b9ba5;
  pointer-events: none;
}
.car_search input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #1a1a20;
  color: #f2f2f4;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  outline: none;
}
.car_search input::-webkit-input-placeholder {
  color: #666c73;
}
.car_search input::-moz-placeholder {
  color: #666c73;
}
.car_search input:-ms-input-placeholder {
  color: #666c73;
}
.car_search input::-ms-input-placeholder {
  color: #666c73;
}
.car_search input::placeholder {
  color: #666c73;
}
.car_search input:focus {
  border-color: rgba(230, 57, 70, 0.7);
}

/* ---------- list ---------- */
.car_list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #3a4046 transparent;
}
.car_list::-webkit-scrollbar {
  width: 8px;
}
.car_list::-webkit-scrollbar-track {
  background: transparent;
}
.car_list::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #3a4046;
  background-clip: content-box;
}

.car_group {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px 8px 5px;
  background: #121216;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.car_option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  cursor: pointer;
  -webkit-transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.car_option:hover, .car_option:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}
.car_option.is_selected {
  background: rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: inset 2px 0 0 #e63946;
          box-shadow: inset 2px 0 0 #e63946;
}

/* the "any car" row is a reset, not a choice — keep it quiet */
.car_option--any {
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px 14px 0 0;
}
.car_option--any.is_selected {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.car_option--any .car_option_img.is_blank {
  display: grid;
  place-items: center;
}

.car_option_img {
  width: 54px;
  height: 40px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}
.car_option_img.is_blank {
  display: block;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  background: none;
}

.car_option_text {
  min-width: 0;
}
.car_option_text b {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.car_option_text i {
  display: block;
  margin-top: 1px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #9b9ba5;
}

.car_option_price {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: #e63946;
  white-space: nowrap;
}

.car_option--any .car_option_text b {
  color: #9b9ba5;
}

.car_empty {
  margin: 0;
  padding: 26px 16px 30px;
  text-align: center;
  font-size: 0.88rem;
  color: #9b9ba5;
}

/* ---------------------------------------------------------------------
   MOBILE — the dropdown becomes a bottom sheet.
   A 400px-tall floating panel is unusable on a phone; a sheet anchored
   to the bottom edge puts the list under the thumb.
   --------------------------------------------------------------------- */
@media (max-width: 560px) {
  .car_sheet {
    position: fixed;
    z-index: 200;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 82dvh;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px 16px 0 0;
    -webkit-animation: car_sheet_up 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
            animation: car_sheet_up 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  @supports not (max-height: 82dvh) {
    .car_sheet {
      max-height: 82vh;
    }
  }
  @-webkit-keyframes car_sheet_up {
    from {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    to {
      -webkit-transform: none;
              transform: none;
    }
  }
  @keyframes car_sheet_up {
    from {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    to {
      -webkit-transform: none;
              transform: none;
    }
  }
  .car_sheet_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 14px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    /* grab handle */
  }
  .car_sheet_head::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 38px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .car_sheet_title {
    font-family: "Bebas Neue", "Arial Narrow", sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }
  .car_sheet_close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    background: none;
    color: #9b9ba5;
    cursor: pointer;
  }
  .car_sheet_close svg {
    width: 16px;
    height: 16px;
  }
  .car_backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.6);
    -webkit-animation: car_fade_in 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
            animation: car_fade_in 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .car_backdrop[hidden] {
    display: none;
  }
  @-webkit-keyframes car_fade_in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes car_fade_in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* bigger tap targets */
  .car_option {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    padding: 10px 8px;
  }
  .car_option_img {
    width: 62px;
    height: 46px;
  }
  .car_list {
    padding: 6px 10px calc(10px + env(safe-area-inset-bottom));
  }
  .car_search {
    padding: 12px;
  }
  .car_search svg {
    left: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .car_sheet,
  .car_backdrop {
    -webkit-animation: none;
            animation: none;
  }
  .car_trigger,
  .car_trigger_caret,
  .car_option {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   ERROR PAGES — 404 / 403 / 500
   --------------------------------------------------------------------- */
.errpage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: clamp(520px, 72vh, 760px);
  padding-block: clamp(60px, 9vw, 120px);
  overflow: hidden;
  /* faint diagonal hatch, like a workshop floor marking */
}
.errpage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255, 255, 255, 0.017) 22px 44px);
}

.errpage_inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

/* ---------- the numeral ---------- */
.errpage_code {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(7rem, 19vw, 15rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 57, 70, 0.55);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* soft glow behind the outline */
  -webkit-filter: drop-shadow(0 0 34px rgba(230, 57, 70, 0.16));
          filter: drop-shadow(0 0 34px rgba(230, 57, 70, 0.16));
  -webkit-animation: errpage_in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: errpage_in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ---------- the message ---------- */
.errpage_body {
  -webkit-animation: errpage_in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
          animation: errpage_in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.errpage_title {
  margin: 10px 0 clamp(14px, 2vw, 20px);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.errpage_title em {
  font-style: normal;
  color: #e63946;
}

.errpage_text {
  max-width: 52ch;
  margin: 0 0 clamp(24px, 3.2vw, 34px);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ---------- buttons ---------- */
.errpage_actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.errpage_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 2px;
  background: #1a1a20;
  color: #9b9ba5;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  -webkit-transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.errpage_btn:hover, .errpage_btn:focus-visible {
  border-color: rgba(230, 57, 70, 0.6);
  color: #f2f2f4;
}

.errpage_btn--primary {
  border-color: #e63946;
  background: none;
  color: #e63946;
}
.errpage_btn--primary:hover, .errpage_btn--primary:focus-visible {
  background: #e63946;
  color: #fff;
}

/* ---------- footnote ---------- */
.errpage_help {
  margin: 0;
  padding-top: clamp(18px, 2.4vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  max-width: 52ch;
  font-size: 0.92rem;
  opacity: 0.75;
}
.errpage_help a {
  color: #e63946;
  -webkit-transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.errpage_help a:hover {
  opacity: 0.75;
}

/* ---------- per-code tint ---------- */
.errpage--403 .errpage_code {
  -webkit-text-stroke-color: rgba(155, 155, 165, 0.5);
  -webkit-filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.05));
          filter: drop-shadow(0 0 34px rgba(255, 255, 255, 0.05));
}

.errpage--500 .errpage_code {
  -webkit-text-stroke-color: rgba(245, 158, 11, 0.5);
  -webkit-filter: drop-shadow(0 0 34px rgba(245, 158, 11, 0.14));
          filter: drop-shadow(0 0 34px rgba(245, 158, 11, 0.14));
}

.errpage--500 .errpage_title em {
  color: #fbbf24;
}

/* ---------- animation ---------- */
@-webkit-keyframes errpage_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes errpage_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/* ---------- responsive ---------- */
@media (max-width: 780px) {
  .errpage_inner {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(8px, 3vw, 18px);
    text-align: left;
  }
  .errpage_code {
    font-size: clamp(6rem, 32vw, 11rem);
  }
}
@media (max-width: 480px) {
  .errpage_btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 14px 20px;
  }
}
/* Safari/Firefox without text-stroke support get a solid tint instead */
@supports not (-webkit-text-stroke: 1px red) {
  .errpage_code {
    color: rgba(230, 57, 70, 0.22);
  }
  .errpage--403 .errpage_code {
    color: rgba(255, 255, 255, 0.14);
  }
  .errpage--500 .errpage_code {
    color: rgba(245, 158, 11, 0.22);
  }
}
@media (prefers-reduced-motion: reduce) {
  .errpage_code,
  .errpage_body {
    -webkit-animation: none;
            animation: none;
  }
  .errpage_btn {
    -webkit-transition: none;
    transition: none;
  }
}
/* ---------------------------------------------------------------------
   LEGAL PAGES — privacy policy, terms of use
   --------------------------------------------------------------------- */
.legal_section {
  padding-block: clamp(46px, 6vw, 90px);
}

.legal_layout {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

/* ---------- jump links ---------- */
.legal_nav_col {
  position: sticky;
  top: calc(84px + 20px);
}

.legal_toc {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #121216;
}

.legal_toc_head {
  display: block;
  margin-bottom: 12px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.legal_toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.legal_toc li {
  counter-increment: toc;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.legal_toc li:first-child {
  border-top: 0;
}

.legal_toc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #9b9ba5;
  -webkit-transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.legal_toc a::before {
  content: counter(toc);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  font-size: 0.72rem;
  color: #e63946;
  opacity: 0.7;
}
.legal_toc a:hover, .legal_toc a:focus-visible {
  color: #f2f2f4;
}

/* ---------- body ---------- */
.legal_body {
  max-width: 72ch;
}
.legal_body h2 {
  margin: clamp(34px, 4.5vw, 52px) 0 14px;
  padding-top: clamp(20px, 2.6vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.02em;
  scroll-margin-top: calc(84px + 20px);
}
.legal_body h2:first-of-type {
  margin-top: clamp(26px, 3.4vw, 38px);
}
.legal_body h3 {
  margin: clamp(20px, 2.6vw, 28px) 0 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f2f2f4;
}
.legal_body p {
  margin: 0 0 14px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #9b9ba5;
}
.legal_body b {
  color: #f2f2f4;
  font-weight: 600;
}
.legal_body a {
  color: #e63946;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  -webkit-transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.legal_body a:hover {
  opacity: 0.75;
}
.legal_body ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.legal_body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #9b9ba5;
}
.legal_body ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e63946;
  opacity: 0.75;
}

.legal_meta {
  display: inline-block;
  margin: 0 0 clamp(20px, 2.6vw, 28px) !important;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 0.74rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.legal_lead {
  font-size: 1.05rem !important;
  line-height: 1.75;
  color: #f2f2f4 !important;
  opacity: 0.9;
}

/* ---------- contact block ---------- */
.legal_contact {
  margin-top: 22px;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 2px solid #e63946;
  border-radius: 14px;
  background: #121216;
}

.legal_contact_name {
  margin: 0 0 14px !important;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.2rem !important;
  letter-spacing: 0.04em;
  color: #f2f2f4 !important;
}

.legal_contact dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal_contact dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.legal_contact dt {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b9ba5;
}

.legal_contact dd {
  margin: 0;
  font-size: 0.95rem;
  color: #f2f2f4;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .legal_layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .legal_nav_col {
    position: static;
  }
  .legal_toc ol {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0 20px;
  }
}
@media (max-width: 520px) {
  .legal_contact dl > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .legal_toc a,
  .legal_body a {
    -webkit-transition: none;
    transition: none;
  }
}/*# sourceMappingURL=style.css.map */