:root {
  --navy: #0a1d3a;
  --navy-2: #102a52;
  --blue: #123f7a;
  --red: #d71920;
  --white: #ffffff;
  --ink: #142033;
  --muted: #667085;
  --soft: #f5f7fb;
  --line: #e6eaf0;
  --green: #20b15a;
  --shadow: 0 18px 50px rgba(10, 29, 58, .12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}


/* =========================
   GLOBAL
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

section[id] {
  scroll-margin-top: 86px;
}


/* =========================
   LAYOUT
========================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 50px 0;
}

.section-tight {
  padding: 74px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: linear-gradient(135deg, #071427, #102a52);
  color: var(--white);
}

.section-dark-blue {
  background: linear-gradient(135deg, #0a1d3a 0%, #123f7a 100%);
  color: var(--white);
}


/* =========================
   SKIP LINK
========================= */

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: none;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #000;

  backdrop-filter: blur(14px);

  border-bottom: 2px solid #DD183B;

  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(10, 29, 58, .09);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;
  background: transparent;

  padding: 10px;
}

.menu-toggle span {
  display: block;

  height: 2px;

  background: #fff;

  margin: 5px 0;

  border-radius: 5px;

  transition: transform .2s ease;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  gap: 8px;

  min-height: 46px;

  padding: 11px 20px;

  border-radius: 10px;

  border: 1px solid transparent;

  font-weight: 800;
  font-size: 14px;

  line-height: 1.2;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: #fff;

  box-shadow: 0 8px 20px rgba(215, 25, 32, .22);
}

.btn-primary:hover {
  background: #b91218;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;

  box-shadow: 0 8px 20px rgba(32, 177, 90, .2);
}

.btn-whatsapp:hover {
  background: #18984b;
}

.btn-outline {
  border-color: #cbd3df;
  color: var(--navy);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--blue);
}

.btn-light {
  background: var(--green);
  box-shadow: 0 8px 20px rgba(7, 94, 84, .25);
  color: #fff;
}

.btn-light:hover {
  background: #064c44;
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-large {
  min-height: 54px;
  padding-inline: 25px;
  font-size: 15px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}


/* =========================
   HERO SLIDER
========================= */

.hero {
  position: relative;

  background: #0a1d3a;

  overflow: hidden;

  isolation: isolate;
}

.hero-track {
  position: relative;

  aspect-ratio: 1920 / 680;

  min-height: 320px;

  z-index: 1;
}


/* HERO SLIDES */

.hero-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  z-index: 0;

  pointer-events: none;

  transition:
    opacity .7s ease,
    visibility .7s ease;
}

.hero-slide.is-active {
  opacity: 1;

  visibility: visible;

  z-index: 1;
}

.hero-slide picture {
  display: block;

  width: 100%;

  height: 100%;

  pointer-events: none;
}

.hero-slide img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  pointer-events: none;

  user-select: none;
}


/* =========================
   SLIDER ARROWS
========================= */

.slider-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 100;

  width: 44px;

  height: 44px;

  border: 1px solid rgba(255, 255, 255, .45);

  border-radius: 50%;

  background: rgba(10, 29, 58, .45);

  color: #fff;

  font-size: 20px;

  display: grid;

  place-items: center;

  backdrop-filter: blur(8px);

  cursor: pointer;

  pointer-events: auto;

  user-select: none;

  touch-action: manipulation;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.slider-arrow:hover {
  background: rgba(10, 29, 58, .85);

  border-color: rgba(255, 255, 255, .8);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(.92);
}

.slider-arrow:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .7);

  outline-offset: 3px;
}

.slider-arrow-left {
  left: 24px;
}

.slider-arrow-right {
  right: 24px;
}


/* =========================
   SLIDER DOTS
========================= */

.slider-dots {
  display: flex;

  gap: 8px;

  justify-content: center;

  align-items: center;
}

.hero-dots {
  position: absolute;

  z-index: 100;

  bottom: 20px;

  left: 50%;

  transform: translateX(-50%);

  pointer-events: auto;
}

.slider-dot {
  width: 9px;

  height: 9px;

  border: 0;

  border-radius: 99px;

  background: rgba(255, 255, 255, .55);

  padding: 0;

  cursor: pointer;

  pointer-events: auto;

  touch-action: manipulation;

  transition:
    width .2s ease,
    background .2s ease;
}

.slider-dot.is-active {
  width: 28px;

  background: #fff;
}


/* =========================
   SECTION HEADING
========================= */

.eyebrow {
  display: inline-block;

  color: var(--red);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: .13em;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.eyebrow-light {
  color: #d8e8ff;
}

.section-heading {
  max-width: 720px;

  text-align: center;

  margin: 0 auto 48px;
}

.section-heading h2,
.about-copy h1,
.trade-copy h2,
.final-cta h2,
.form-heading h2 {
  margin: 0;

  color: var(--navy);

  line-height: 1.12;

  letter-spacing: -.03em;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-heading p {
  margin: 14px auto 0;

  color: #000;

  max-width: 650px;
}

.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}

.section-heading-light p {
  opacity: .76;
}


/* =========================
   ABOUT
========================= */

.about-grid {
  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 68px;

  align-items: center;
}

.about-photo-wrap {
  position: relative;

  max-width: 520px;

  margin: auto;
}

.about-photo-wrap>img {
  width: 100%;

  border-radius: 24px;

  background: var(--soft);

  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;

  right: -20px;

  bottom: 24px;

  display: flex;

  align-items: center;

  gap: 10px;

  background: var(--red);

  color: #fff;

  padding: 14px 18px;

  border-radius: 16px;

  box-shadow: 0 14px 35px rgba(215, 25, 32, .28);
}

.experience-badge strong {
  font-size: 34px;

  line-height: 1;
}

.experience-badge span {
  font-size: 11px;

  font-weight: 800;

  line-height: 1.25;

  text-transform: uppercase;

  letter-spacing: .05em;
}

.about-copy h1 {
  font-size: clamp(38px, 5vw, 60px);

  margin-bottom: 20px;
}

.about-copy p {
  color: var(--ink);

  margin: 0 0 16px;
}

.about-copy .lead {
  color: var(--ink);

  font-size: 18px;
}

.hashtag-row {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin: 22px 0;
}

.hashtag-row span {
  background: #eef3f9;

  color: var(--blue);

  padding: 6px 10px;

  border-radius: 999px;

  font-size: 12px;

  font-weight: 800;
}

.about-actions {
  display: flex;

  gap: 20px;

  align-items: center;

  flex-wrap: wrap;
}


/* =========================
   USP
========================= */

.usp-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;

  margin-top: 76px;
}

.usp-card {
  border: 1px solid var(--line);

  background: #fff;

  border-radius: var(--radius);

  padding: 25px;

  box-shadow: 0 10px 35px rgba(10, 29, 58, .06);
}

.icon-circle {
  width: 44px;

  height: 44px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: #fff;

  background: var(--navy);

  font-size: 12px;

  font-weight: 900;

  margin-bottom: 18px;
}

.usp-card h2 {
  font-size: 17px;

  line-height: 1.35;

  margin: 0 0 8px;

  color: var(--navy);
}

.usp-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================
   MODEL
========================= */

.model-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.model-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 36px rgba(10, 29, 58, .07);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.model-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow);
}

.model-visual {
  aspect-ratio: 16 / 10;

  background: linear-gradient(180deg, #f7f9fc, #edf2f7);

  overflow: hidden;
}

.model-car {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.model-card-body {
  padding: 22px;
}

.model-logo {
  width: auto;

  height: 46px;

  max-width: 190px;

  object-fit: contain;

  object-position: left center;

  margin-bottom: 17px;
}

.price-label {
  margin: 0;

  color: var(--muted);

  font-size: 12px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .05em;
}

.model-price {
  margin: 2px 0 18px;

  color: var(--navy);

  font-size: 25px;

  font-weight: 900;

  letter-spacing: -.02em;
}

.model-actions {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.model-actions .btn-full {
  grid-column: 1 / -1;

  margin-top: 2px;
}

.section-note {
  margin: 28px auto 0;

  max-width: 850px;

  text-align: center;

  font-size: 12px;

  color: #7a8598;
}


/* =========================
   PROMOTION SLIDER
========================= */

.promo-slider {
  position: relative;

  max-width: 760px;

  margin: 0 auto;
}

.promo-stage {
  position: relative;

  aspect-ratio: 1076 / 1280;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: var(--shadow);

  background: var(--soft);
}

.promo-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  z-index: 0;

  transition:
    opacity .5s ease,
    visibility .5s ease;
}

.promo-slide.is-active {
  opacity: 1;

  visibility: visible;

  z-index: 1;
}

.promo-slide img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  pointer-events: none;
}

.promo-slider .slider-arrow {
  z-index: 100;
}

.promo-dots {
  margin-top: 18px;
}

.promo-dots .slider-dot {
  background: #cbd3df;
}

.promo-dots .slider-dot.is-active {
  background: var(--navy);
}


/* =========================
   CUSTOMER
========================= */

.customer-track {
  display: grid;

  grid-auto-flow: column;

  grid-auto-columns: calc((100% - 32px) / 3);

  gap: 16px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  padding: 6px 2px 16px;

  scrollbar-width: thin;
}

.customer-card {
  margin: 0;

  border-radius: 18px;

  overflow: hidden;

  scroll-snap-align: start;

  background: #17345f;

  aspect-ratio: 1 / 1;
}

.customer-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}


/* =========================
   WHY
========================= */

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.why-card {
  position: relative;

  min-height: 210px;

  padding: 30px;

  border-radius: var(--radius);

  border: 1px solid var(--line);

  background: #fff;

  overflow: hidden;
}

.why-number {
  color: #dae3ef;

  font-size: 44px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -.06em;
}

.why-card h3 {
  margin: 20px 0 8px;

  color: var(--navy);

  font-size: 20px;
}

.why-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================
   TRADE
========================= */

.trade-banner-grid {
  display: grid;

  grid-template-columns: 1fr .9fr;

  gap: 50px;

  align-items: center;
}

.trade-copy h2 {
  color: #fff;

  font-size: clamp(34px, 4vw, 50px);
}

.trade-copy p {
  color: rgba(255, 255, 255, .76);

  font-size: 17px;

  max-width: 650px;

  margin: 18px 0 26px;
}

.trade-image img {
  width: 100%;

  border-radius: 20px;
}


/* =========================
   FORMS
========================= */

.forms-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

  align-items: start;
}

.form-panel {
  padding: 32px;

  border: 1px solid var(--line);

  border-radius: 22px;

  background: #fff;

  box-shadow: 0 14px 44px rgba(10, 29, 58, .08);
}

.form-panel-accent {
  border-top: 4px solid var(--red);
}

.form-heading h2 {
  font-size: clamp(27px, 3vw, 36px);
}

.form-heading p {
  margin: 10px 0 25px;

  color: #000;

  font-size: 14px;
}

.lead-form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.field {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #344054;

  font-size: 13px;

  font-weight: 800;
}

.field label span {
  color: var(--red);
}

.field input,
.field textarea,
.field select {
  width: 100%;

  border: 1px solid #cfd6e1;

  border-radius: 10px;

  background: #fff;

  color: var(--ink);

  padding: 11px 13px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);

  box-shadow: 0 0 0 3px rgba(18, 63, 122, .1);
}

.field textarea {
  resize: vertical;

  min-height: 110px;
}

.radio-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: 100%;
  min-height: 44px;

  background: var(--soft);
  padding: 10px 12px;
  border-radius: 9px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;

  color: #111;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.radio-row label:hover {
  background: #eef2f7;
}

.radio-row input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;

  width: 18px;
  height: 18px;

  margin: 0;

  flex-shrink: 0;

  border: 1.5px solid #cfd6e1;
  border-radius: 50%;

  background: #fff;

  cursor: pointer;

  position: relative;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.radio-row input[type="radio"]:checked {
  border-color: var(--navy);
}

.radio-row input[type="radio"]:checked::before {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: var(--navy);
}

.radio-row input[type="radio"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 63, 122, .12);
}

/* Optional: highlight whole label when selected */
.radio-row label:has(input[type="radio"]:checked) {
  background: #edf3fa;
}

.form-tip {
  background: #f4f8ff;

  border: 1px solid #dce8f8;

  color: #44546a;

  padding: 12px 14px;

  border-radius: 10px;

  font-size: 12px;
}


/* =========================
   FAQ
========================= */

.faq-layout {
  display: grid;

  grid-template-columns: .8fr 1.2fr;

  gap: 64px;

  align-items: start;
}

.faq-heading {
  text-align: left;

  margin: 0;

  position: sticky;

  top: 110px;
}

.faq-heading p {
  margin-left: 0;
}

.faq-list {
  display: grid;

  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);

  border-radius: 13px;

  background: #fff;

  padding: 0 18px;
}

.faq-list summary {
  list-style: none;

  cursor: pointer;

  padding: 18px 32px 18px 0;

  font-weight: 800;

  color: var(--navy);

  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  font-size: 22px;

  color: var(--red);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  margin: -4px 0 18px;

  color: var(--muted);

  font-size: 14px;
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
  padding: 76px 0;

  background: linear-gradient(125deg, #d71920, #a80f15);

  color: #fff;
}

.final-cta-inner {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;
}

.final-cta h2 {
  color: #fff;

  font-size: clamp(30px, 4vw, 50px);
}

.final-cta p {
  margin: 15px 0 0;

  max-width: 740px;

  color: rgba(255, 255, 255, .82);
}

.final-cta .btn {
  flex-shrink: 0;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #071427;

  color: #fff;

  padding-top: 60px;
}

.footer-top {
  display: grid;

  grid-template-columns: 1.8fr .7fr .7fr;

  gap: 60px;

  padding-bottom: 42px;
}

.footer-brand img {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 620px;

  color: rgba(255, 255, 255, .65);

  margin: 0 0 18px;

  font-size: 14px;
}

.footer-contact {
  display: flex;

  flex-wrap: wrap;

  gap: 14px 20px;
}

.footer-contact a {
  color: #fff;

  font-size: 13px;

  font-weight: 700;
}

.footer-links h2 {
  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: .08em;

  margin: 0 0 16px;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .68);

  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);

  padding: 22px 0 30px;

  text-align: center;
}

.footer-bottom p {
  margin: 5px 0;

  color: rgba(255, 255, 255, .5);

  font-size: 11px;
}

.footer-bottom .disclaimer {
  color: rgba(255, 255, 255, .68);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .8);

  text-decoration: underline;
}


/* =========================
   FLOATING ACTIONS
========================= */

.floating-actions {
  position: fixed;

  right: 18px;

  bottom: 18px;

  z-index: 900;

  display: flex;

  flex-direction: column;

  gap: 9px;
}

.floating-actions a {
  min-width: 104px;

  padding: 12px 16px;

  border-radius: 999px;

  color: #fff;

  font-size: 12px;

  font-weight: 900;

  text-align: center;

  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.float-wa {
  background: var(--green);
}

.float-call {
  display: none;

  background: var(--blue);
}


/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity .55s ease,
    transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: none;
}


/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
  padding: 72px 0 48px;

  background: linear-gradient(135deg, #0a1d3a, #123f7a);

  color: #fff;
}

.legal-hero h1 {
  margin: 0;

  font-size: clamp(38px, 5vw, 58px);

  letter-spacing: -.035em;

  line-height: 1.08;
}

.legal-hero p {
  margin: 10px 0 0;

  color: rgba(255, 255, 255, .72);
}

.legal-content {
  padding: 70px 0 90px;
}

.legal-prose {
  max-width: 860px;

  margin: auto;
}

.legal-prose h2 {
  color: var(--navy);

  font-size: 24px;

  margin: 38px 0 12px;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p,
.legal-prose li {
  color: #4f5d72;
}

.legal-prose ul {
  padding-left: 22px;
}

.legal-callout {
  background: var(--soft);

  border-left: 4px solid var(--red);

  padding: 18px 20px;

  border-radius: 0 12px 12px 0;

  margin: 28px 0;
}

.back-home {
  display: inline-flex;

  margin-top: 26px;

  font-weight: 800;

  color: var(--blue);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

  .main-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================
   MOBILE NAV / TABLET
========================= */

@media (max-width: 900px) {

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
    color: #fff;
  }

  .main-nav {
    position: absolute;

    left: 0;

    right: 0;

    top: 68px;

    margin: 0;

    padding: 16px 20px 22px;

    display: grid;

    gap: 0;

    background: #fff;

    border-top: 1px solid var(--line);

    box-shadow: 0 18px 30px rgba(10, 29, 58, .12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-8px);

    transition: .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;

    visibility: visible;

    transform: none;
  }

  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid #edf0f4;
    color: #000;
  }

  .about-grid,
  .trade-banner-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 42px;
  }

  .trade-banner-grid {
    gap: 30px;
  }

  .faq-heading {
    position: static;
  }

  .forms-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .section {
    padding: 60px 0;
  }

  .section-tight {
    padding: 56px 0;
  }

  .hero-track {
    aspect-ratio: 4 / 5;

    min-height: 0;
  }

  .slider-arrow {
    width: 38px;

    height: 38px;

    font-size: 16px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .hero-dots {
    bottom: 12px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .experience-badge {
    right: -5px;

    bottom: 14px;
  }

  .usp-grid {
    grid-template-columns: 1fr;

    margin-top: 46px;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .customer-track {
    grid-auto-columns: 78%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .trade-copy br,
  .final-cta h2 br {
    display: none;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .field,
  .field-full {
    grid-column: 1 / -1;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .floating-actions {
    right: 12px;

    bottom: 12px;

    left: 12px;

    flex-direction: row;
  }

  .floating-actions a {
    flex: 1;

    min-width: 0;
  }

  .float-call {
    display: block;
  }

  .about-photo-wrap {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .about-photo-wrap>img {
    width: 100%;
    max-width: 300px;
    height: auto;

    object-fit: contain;
    object-position: center bottom;

    border-radius: 0;
    background: transparent;
    box-shadow: none;

    margin: 0 auto;
  }

  .hero-slide picture,
  .hero-slide img {
    width: 100%;
    height: 100%;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand img {
    height: 37px;
  }

  .about-actions {
    align-items: stretch;

    flex-direction: column;
  }

  .about-actions .btn,
  .about-actions .text-link {
    width: 100%;

    text-align: center;
  }

  .model-card-body {
    padding: 18px;
  }

  .model-price {
    font-size: 23px;
  }

  .customer-track {
    grid-auto-columns: 86%;
  }

  .radio-row {
    gap: 8px;
  }

  .radio-row label {
    width: 100%;
    min-height: 44px;

    padding: 10px 12px;

    font-size: 14px;
  }

  .radio-row input[type="radio"] {
    width: 18px;
    height: 18px;
  }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

}