/* =========================================================
   01. DESIGN TOKENS
========================================================= */

:root {
  --red: #e52329;
  --red-hover: #c81920;
  --ink: #111315;
  --graphite: #292d32;
  --muted: #666b72;
  --surface: #f5f6f7;
  --border: #e7e9ec;
  --white: #ffffff;
  --dark: #181a1d;

  --radius: 18px;
  --shadow: 0 18px 55px rgba(17, 19, 21, 0.09);

  --container: 1180px;
}


/* =========================================================
   02. RESET & BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  overflow-x: hidden;

  background: var(--white);
  color: var(--ink);

  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;

  max-width: 100%;
}

a {
  color: inherit;
}

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

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

  margin-inline: auto;
}

.text-red {
  color: var(--red);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;

  margin-bottom: 26px;

  font-size: clamp(
    48px,
    5.5vw,
    79px
  );

  line-height: 0.99;

  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 20px;

  font-size: clamp(
    36px,
    4.3vw,
    58px
  );

  line-height: 1.05;

  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 8px;
}


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

.section {
  position: relative;

  padding: 100px 0;
}

.section-muted {
  background: var(--surface);
}

.section-label {
  margin-bottom: 14px;

  color: var(--red);

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

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.section-intro {
  max-width: 660px;

  margin-bottom: 0;

  color: var(--muted);

  font-size: 17px;
}


/* =========================================================
   03. BUTTONS & BRAND
========================================================= */

.brand {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: var(--ink);

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

  letter-spacing: -0.04em;

  text-decoration: none;
}

.brand-mark {
  display: grid;

  width: 34px;
  height: 34px;

  place-items: center;

  border-radius: 9px;

  background: var(--red);
  color: var(--white);

  box-shadow:
    0 7px 20px
    rgba(229, 35, 41, 0.22);
}

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 15px 22px;

  border: 0;
  border-radius: 10px;

  background: var(--red);
  color: var(--white);

  font-weight: 700;

  text-decoration: none;

  cursor: pointer;

  box-shadow:
    0 10px 26px
    rgba(229, 35, 41, 0.2);

  transition:
    background-color 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.button:hover {
  background: var(--red-hover);

  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.7;

  cursor: wait;

  transform: none;
}

.button-secondary {
  border:
    1px solid
    var(--border);

  background: var(--white);
  color: var(--ink);

  box-shadow: none;
}

.button-secondary:hover {
  background: var(--surface);
}

.button-small {
  padding: 12px 17px;

  font-size: 13px;
}

.button-full {
  width: 100%;
}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {
  position: relative;

  z-index: 100;

  background: var(--white);
}

.header-inner {
  display: flex;

  min-height: 82px;

  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;

  align-items: center;

  gap: 30px;
}

.main-nav > a:not(.button) {
  color: var(--graphite);

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

  text-decoration: none;
}

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


/* =========================================================
   05. HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;

  min-height: 720px;

  overflow: hidden;

  background: #111315;
  color: #ffffff;

  isolation: isolate;
}


/* =========================================================
   HERO BACKGROUND CAROUSEL
========================================================= */

.hero-carousel {
  position: absolute;

  inset: 0;

  z-index: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  pointer-events: none;
}

.hero-carousel-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  opacity: 0;

  transform: scale(1.04);

  transition:
    opacity 1.1s ease,
    transform 7s ease;
}


/* =========================================================
   SLIDE 1 - LIXIANG L7
========================================================= */

.hero-carousel-slide:nth-child(1) {
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 12, 15, 0.96) 0%,
      rgba(10, 12, 15, 0.90) 25%,
      rgba(10, 12, 15, 0.70) 47%,
      rgba(10, 12, 15, 0.28) 72%,
      rgba(10, 12, 15, 0.08) 100%
    ),
    url("https://www.auto-in-china.com/wp-content/uploads/2023/07/1-114.jpg");
}


/* =========================================================
   SLIDE 2 - LIXIANG L9
========================================================= */

.hero-carousel-slide:nth-child(2) {
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 12, 15, 0.96) 0%,
      rgba(10, 12, 15, 0.90) 25%,
      rgba(10, 12, 15, 0.70) 47%,
      rgba(10, 12, 15, 0.28) 72%,
      rgba(10, 12, 15, 0.08) 100%
    ),
    url("https://www.auto-in-china.com/wp-content/uploads/2023/08/li-auto-l9.jpg");
}


/* =========================================================
   SLIDE 3 - GEELY EX5
========================================================= */

.hero-carousel-slide:nth-child(3) {
  background-image:
    linear-gradient(
      90deg,
      rgba(10, 12, 15, 0.96) 0%,
      rgba(10, 12, 15, 0.90) 25%,
      rgba(10, 12, 15, 0.70) 47%,
      rgba(10, 12, 15, 0.28) 72%,
      rgba(10, 12, 15, 0.08) 100%
    ),
    url("https://www.geely.com/-/media/project/web-portal/models/ex5/model-colors/new/silver/ex5-silver---2.png?h=1000&iar=0&w=1500&hash=7B6BDBC3D302ABB242EFCC9C5E4ED8EF");
}


/* =========================================================
   ACTIVE SLIDE
========================================================= */

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

  transform: scale(1);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-carousel-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(8, 10, 12, 0.05) 0%,
      rgba(8, 10, 12, 0) 45%,
      rgba(8, 10, 12, 0.60) 100%
    );
}


/* =========================================================
   HERO DECORATION
========================================================= */

.hero::after {
  position: absolute;

  right: -250px;
  bottom: -430px;

  z-index: 1;

  width: 760px;
  height: 760px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  pointer-events: none;

  content: "";
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 3;

  display: flex;

  min-height: 720px;

  align-items: center;

  padding-top: 80px;
  padding-bottom: 95px;
}

.hero-copy {
  position: relative;

  z-index: 3;

  width: min(
    720px,
    66%
  );
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero .eyebrow {
  display: flex;

  align-items: center;

  gap: 10px;

  margin:
    0 0 22px;

  color:
    rgba(
      255,
      255,
      255,
      0.82
    );

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

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.hero .eyebrow::before {
  width: 30px;
  height: 2px;

  flex-shrink: 0;

  background: var(--red);

  content: "";
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero h1 {
  max-width: 760px;

  margin:
    0 0 28px;

  color: #ffffff;

  font-size:
    clamp(
      50px,
      5.4vw,
      78px
    );

  font-weight: 800;

  line-height: 0.99;

  letter-spacing: -0.055em;

  text-shadow:
    0 5px 35px
    rgba(0, 0, 0, 0.32);
}

.hero .text-red {
  color: var(--red);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-lead {
  max-width: 610px;

  margin:
    0 0 34px;

  color:
    rgba(
      255,
      255,
      255,
      0.77
    );

  font-size: 17px;

  line-height: 1.65;
}


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

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.hero-actions .button {
  display: inline-flex;

  min-height: 50px;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 8px;

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

  text-decoration: none;

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

.hero-actions .button:hover {
  transform: translateY(-2px);
}

.hero-actions .button-secondary,
.button-hero-secondary {
  border:
    1px solid
    rgba(255, 255, 255, 0.26);

  background:
    rgba(255, 255, 255, 0.09);

  color: #ffffff;

  box-shadow: none;

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter:
    blur(12px);
}

.hero-actions .button-secondary:hover,
.button-hero-secondary:hover {
  border-color:
    rgba(255, 255, 255, 0.48);

  background:
    rgba(255, 255, 255, 0.17);

  color: #ffffff;
}


/* =========================================================
   HERO INFO
========================================================= */

.hero-info {
  display: flex;

  max-width: 650px;

  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;

  margin-top: 48px;
}


/* =========================================================
   HERO BRAND CHIPS
========================================================= */

.hero-brand-chips,
.hero .brand-chips {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 0;
}

.hero-brand-chips span,
.hero .brand-chips span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 8px 11px;

  border:
    1px solid
    rgba(255, 255, 255, 0.17);

  border-radius: 999px;

  background:
    rgba(17, 19, 21, 0.42);

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);
}


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

.hero-current-model {
  min-width: 160px;

  padding-left: 17px;

  border-left:
    2px solid
    var(--red);
}

.hero-current-model small {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(255, 255, 255, 0.48);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.hero-current-model strong {
  color: #ffffff;

  font-size: 17px;
  font-weight: 700;
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.hero-carousel-controls {
  position: absolute;

  right:
    max(
      30px,
      calc(
        (100vw - var(--container)) / 2
      )
    );

  bottom: 46px;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 9px;
}

.hero-carousel-dot {
  display: block;

  width: 10px;
  height: 10px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.45);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.hero-carousel-dot:hover {
  background:
    rgba(255, 255, 255, 0.82);

  transform: scale(1.1);
}

.hero-carousel-dot.is-active {
  width: 38px;

  background: var(--red);
}


/* =========================================================
   06. CUSTOMER PROBLEMS
========================================================= */

.problem-grid {
  display: grid;

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

  gap: 15px;

  margin-top: 48px;
}

.info-card {
  min-height: 220px;

  padding: 28px;

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

  border-radius:
    var(--radius);

  background:
    var(--white);

  transition: 0.25s ease;
}

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

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

.card-icon {
  display: grid;

  width: 46px;
  height: 46px;

  margin-bottom: 28px;

  place-items: center;

  border-radius: 13px;

  background: #fff1f1;
  color: var(--red);

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

.info-card h3 {
  font-size: 18px;
}

.info-card p {
  margin-bottom: 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================================================
   07. SERVICES
========================================================= */

.services-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  column-gap: 56px;

  margin-top: 48px;
}

.service-item {
  display: grid;

  grid-template-columns:
    54px 1fr 26px;

  gap: 12px;

  align-items: center;

  padding: 25px 4px;

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

  transition: 0.2s ease;
}

.service-item:hover {
  padding-left: 10px;
}

.service-item > span {
  color: var(--red);

  font-size: 13px;
  font-weight: 800;
}

.service-item h3 {
  margin: 0;

  font-size: 19px;
}

.service-item p {
  margin:
    4px 0 0;

  color: var(--muted);

  font-size: 13px;
}

.service-item > b {
  color: #a9adb2;

  font-size: 24px;
  font-weight: 400;
}

.service-item:hover > b {
  color: var(--red);
}


/* =========================================================
   08. CAR CHECK
========================================================= */

.check-car {
  position: relative;

  overflow: hidden;

  padding: 100px 0;

  background: var(--dark);

  color: var(--white);
}

.check-car::before {
  position: absolute;

  top: -220px;
  right: -180px;

  width: 520px;
  height: 520px;

  border:
    1px solid #2d3034;

  border-radius: 50%;

  pointer-events: none;

  content: "";
}

.check-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    43% 57%;

  gap: 80px;

  align-items: center;
}

.check-car .section-intro {
  color: #abb0b6;
}


/* =========================================================
   GEELY EX5 PHOTO - CHECK CAR SECTION
========================================================= */

.car-photo {
  overflow: hidden;

  width: 100%;

  margin: 34px 0 0;

  border-radius: 20px;

  background: #2a2d31;
}

.car-photo.car-photo-geely {
  position: relative;

  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 12 / 5;

  margin: 32px 0 0;

  overflow: hidden;

  border-radius: 18px;

  background-color: #292d31;

  background-image:
    url("https://geely.am/assets/images/c9/c97eac_EX5-model-selection---PC.jpg");

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  box-shadow: none;
}


/* =========================================================
   FORM
========================================================= */

.lead-form {
  padding: 34px;

  border-radius: 24px;

  background:
    var(--white);

  color: var(--ink);

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.25);
}

.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}

.lead-form label {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.lead-form label > span,
.lead-form legend {
  color: #555b62;

  font-size: 12px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;

  padding: 14px;

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

  border-radius: 10px;

  outline: none;

  background: #fafafa;

  color: var(--ink);

  font-family: inherit;
  font-size: 14px;

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

.lead-form textarea {
  min-height: 50px;

  line-height: 1.5;

  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #9a9fa5;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color:
    var(--red);

  background: var(--white);

  box-shadow:
    0 0 0 3px
    rgba(229, 35, 41, 0.08);
}

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

fieldset.form-full {
  margin: 0;
  padding: 0;

  border: 0;
}

.checkboxes {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 7px;
}

.checkboxes label {
  display: inline-flex;

  flex-direction: row;

  align-items: center;

  padding: 9px 10px;

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

  border-radius: 9px;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.checkboxes label:hover {
  border-color:
    rgba(229, 35, 41, 0.35);

  background:
    rgba(229, 35, 41, 0.03);
}

.checkboxes input {
  width: auto;

  accent-color:
    var(--red);
}

.form-note {
  margin:
    8px 0 0;

  color: #858a90;

  font-size: 11px;
}


/* =========================================================
   FORM STATUS
========================================================= */

.form-message {
  box-sizing: border-box;

  width: 100%;

  margin-top: 14px;
  padding: 13px 15px;

  border-radius: 10px;

  font-size: 13px;
  line-height: 1.5;
}

.form-message[hidden] {
  display: none;
}

.form-message strong {
  display: block;

  margin-bottom: 3px;
}

.form-message span {
  display: block;
}

.form-message-success {
  border:
    1px solid
    rgba(23, 114, 69, 0.20);

  background:
    rgba(23, 114, 69, 0.07);

  color: #177245;
}

.form-message-error {
  border:
    1px solid
    rgba(229, 35, 41, 0.20);

  background:
    rgba(229, 35, 41, 0.06);

  color: #b91f25;
}

#lead-submit:disabled {
  opacity: 0.7;

  cursor: wait;

  pointer-events: none;

  transform: none;
}


/* =========================================================
   09. HOW IT WORKS
========================================================= */

.steps {
  position: relative;

  display: grid;

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

  margin-top: 60px;
}

.steps::before {
  position: absolute;

  top: 14px;
  right: 1%;
  left: 1%;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--red),
      #f2b2b4
    );

  content: "";
}

.step {
  position: relative;

  padding-right: 25px;
}

.step i {
  position: relative;

  z-index: 1;

  display: block;

  width: 30px;
  height: 30px;

  margin-bottom: 27px;

  border:
    7px solid
    var(--white);

  border-radius: 50%;

  background:
    var(--red);

  box-shadow:
    0 0 0 1px
    #efb0b2;
}

.step span {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-size: 12px;
  font-weight: 800;
}

.step h3 {
  margin:
    0 0 7px;

  font-size: 16px;
}

.step p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
}


/* =========================================================
   10. FOOTER
========================================================= */

.site-footer {
  padding: 32px 0;

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

  background:
    var(--surface);
}

.footer-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.footer-inner small {
  color: #858a90;
}

.mobile-cta {
  display: none;
}


/* =========================================================
   11. TABLET
========================================================= */

@media (max-width: 900px) {

  .main-nav > a:not(.button) {
    display: none;
  }


  /* HERO */

  .hero {
    min-height: 690px;
  }

  .hero-content {
    min-height: 690px;

    align-items: flex-end;

    padding-top: 100px;
    padding-bottom: 110px;
  }

  .hero-copy {
    width: 84%;
  }

  .hero h1 {
    font-size:
      clamp(
        48px,
        8vw,
        68px
      );
  }

  .hero-carousel-slide {
    background-position:
      66% center;
  }

  .hero-carousel-controls {
    right: 24px;
    bottom: 38px;
  }

  .hero-info {
    max-width: 100%;
  }


  /* CONTENT */

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

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

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

    gap: 45px;
  }


  /* STEPS */

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

    gap: 24px;
  }

  .steps::before {
    top: 5px;
    right: auto;
    bottom: 5px;
    left: 14px;

    width: 2px;
    height: auto;

    background:
      linear-gradient(
        var(--red),
        #f2b2b4
      );
  }

  .step {
    padding:
      0 0 0 54px;
  }

  .step i {
    position: absolute;

    top: 0;
    left: 0;

    margin: 0;
  }

}


/* =========================================================
   12. MOBILE
========================================================= */

@media (max-width: 600px) {

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


  /* HEADER */

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

  .main-nav .button {
    padding: 11px 14px;

    font-size: 12px;
  }


  /* GLOBAL */

  h2 {
    font-size: 39px;
  }


  /* HERO */

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;

    align-items: flex-end;

    padding-top: 105px;
    padding-bottom: 115px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-carousel-slide {
    background-position:
      70% center;
  }

  .hero-carousel-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 10, 12, 0.13) 0%,
        rgba(8, 10, 12, 0.28) 25%,
        rgba(8, 10, 12, 0.67) 57%,
        rgba(8, 10, 12, 0.96) 86%,
        rgba(8, 10, 12, 1) 100%
      );
  }


  /* HERO TEXT */

  .hero .eyebrow {
    margin-bottom: 17px;

    font-size: 10px;
  }

  .hero h1 {
    max-width: 100%;

    margin-bottom: 22px;

    font-size:
      clamp(
        41px,
        12vw,
        54px
      );

    line-height: 1;

    letter-spacing: -0.05em;
  }

  .hero-lead {
    max-width: 96%;

    margin-bottom: 27px;

    font-size: 15px;

    line-height: 1.55;
  }


  /* HERO BUTTONS */

  .hero-actions {
    width: 100%;

    flex-direction: column;

    gap: 9px;
  }

  .hero-actions .button,
  .hero-actions .cv-button {
    width: 100%;

    min-height: 50px;
  }


  /* HERO INFO */

  .hero-info {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;

    margin-top: 28px;
  }

  .hero-current-model {
    display: none;
  }


  /* HERO CHIPS */

  .hero-brand-chips,
  .hero .brand-chips {
    gap: 6px;
  }

  .hero-brand-chips span,
  .hero .brand-chips span {
    padding: 7px 9px;

    font-size: 10px;
  }


  /* HERO DOTS */

  .hero-carousel-controls {
    right: 15px;
    bottom: 70px;
    left: 15px;

    justify-content: center;
  }

  .hero-carousel-dot {
    width: 9px;
    height: 9px;
  }

  .hero-carousel-dot.is-active {
    width: 32px;
  }


  /* SECTIONS */

  .section,
  .check-car {
    padding: 72px 0;
  }

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

  .info-card {
    min-height: auto;
  }


  /* CHECK CAR IMAGE */

  .car-photo.car-photo-geely {
    aspect-ratio: 16 / 9;

    margin-top: 26px;
  }


  /* FORM */

  .lead-form {
    padding: 22px;
  }

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

  .form-full {
    grid-column: auto;
  }

  .lead-form textarea {
    min-height: 90px;
  }

  .checkboxes {
    gap: 7px;
  }


  /* FOOTER */

  .footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }


  /* MOBILE CTA */

  .mobile-cta {
    position: fixed;

    z-index: 20;

    right: 14px;
    bottom: 12px;
    left: 14px;

    display: block;
  }

  .mobile-cta .button,
  .mobile-cta .cv-button {
    width: 100%;

    box-shadow:
      0 12px 35px
      rgba(229, 35, 41, 0.3);
  }

}


/* =========================================================
   13. VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-content {
    padding-bottom: 115px;
  }

}


/* =========================================================
   14. ACCESSIBILITY
========================================================= */

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

  html {
    scroll-behavior: auto;
  }

  .hero-carousel-slide {
    transform: none;

    transition:
      opacity 0.25s ease;
  }

  .hero-carousel-dot {
    transition: none;
  }

}
/* =========================================================
   15. COOKIE CONSENT
========================================================= */

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
  position: fixed;
  z-index: 1000;

  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  justify-content: center;

  pointer-events: none;
}

.cookie-banner-inner {
  display: grid;

  width: min(1180px, 100%);

  grid-template-columns:
    auto 1fr auto;

  gap: 20px;

  align-items: center;

  padding: 22px 24px;

  border: 1px solid var(--border);
  border-radius: 18px;

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

  color: var(--ink);

  box-shadow:
    0 20px 70px
    rgba(17,19,21,.18);

  pointer-events: auto;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* =========================================================
   COOKIE ICON
========================================================= */

.cookie-icon {
  display: grid;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  place-items: center;

  border-radius: 12px;

  background: var(--red);
  color: var(--white);

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

  box-shadow:
    0 8px 24px
    rgba(229,35,41,.22);
}

/* =========================================================
   COOKIE CONTENT
========================================================= */

.cookie-content h2 {
  margin: 0 0 5px;

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

  line-height: 1.25;
  letter-spacing: -.02em;
}

.cookie-content p {
  max-width: 650px;

  margin: 0 0 5px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.55;
}

.cookie-policy-link {
  color: var(--red);

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;
}

.cookie-policy-link:hover {
  text-decoration: underline;
}

/* =========================================================
   COOKIE ACTIONS
========================================================= */

.cookie-actions {
  display: flex;
  align-items: center;

  gap: 8px;
}

.cookie-button {
  appearance: none;
  -webkit-appearance: none;

  display: inline-flex;

  min-height: 42px;

  align-items: center;
  justify-content: center;

  padding: 10px 15px;

  border-radius: 9px;

  font-family: inherit;
  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

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

.cookie-button:hover {
  transform: translateY(-1px);
}

/* SETTINGS */

.cookie-button-settings {
  border: 1px solid var(--border);

  background: var(--white);
  color: var(--graphite);
}

.cookie-button-settings:hover {
  border-color: #c8cbd0;

  background: var(--surface);
}

/* REJECT */

.cookie-button-reject {
  border: 1px solid var(--graphite);

  background: var(--white);
  color: var(--graphite);
}

.cookie-button-reject:hover {
  background: var(--graphite);
  color: var(--white);
}

/* ACCEPT */

.cookie-button-accept {
  border: 1px solid var(--red);

  background: var(--red);
  color: var(--white);

  box-shadow:
    0 8px 22px
    rgba(229,35,41,.18);
}

.cookie-button-accept:hover {
  border-color: var(--red-hover);
  background: var(--red-hover);
}

/* =========================================================
   COOKIE MODAL
========================================================= */

.cookie-modal {
  position: fixed;

  z-index: 1100;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 24px;
}

.cookie-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(10,12,15,.62);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cookie-modal-card {
  position: relative;
  z-index: 1;

  width: min(620px,100%);

  max-height:
    calc(100vh - 48px);

  overflow-y: auto;

  padding: 30px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--white);
  color: var(--ink);

  box-shadow:
    0 35px 100px
    rgba(0,0,0,.32);
}

/* =========================================================
   COOKIE MODAL HEADER
========================================================= */

.cookie-modal-header {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 16px;
}

.cookie-modal-label {
  display: block;

  margin-bottom: 6px;

  color: var(--red);

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

  letter-spacing: .14em;

  text-transform: uppercase;
}

.cookie-modal-header h2 {
  margin: 0;

  font-size: 28px;

  line-height: 1.1;
  letter-spacing: -.04em;
}

.cookie-modal-close {
  display: grid;

  width: 38px;
  height: 38px;

  place-items: center;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: var(--surface);

  cursor: pointer;
}

/* =========================================================
   COOKIE CATEGORY
========================================================= */

.cookie-category {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding: 20px 0;

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

.cookie-category-content {
  flex: 1;
}

.cookie-category-title {
  display: flex;

  align-items: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 5px;
}

.cookie-category-content p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.55;
}

.cookie-always-active {
  padding: 4px 7px;

  border-radius: 999px;

  background:
    rgba(23,114,69,.08);

  color: #177245;

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

  text-transform: uppercase;
}

/* =========================================================
   COOKIE SWITCH
========================================================= */

.cookie-switch {
  position: relative;

  display: inline-block;

  width: 46px;
  height: 26px;

  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
}

.cookie-slider {
  position: absolute;

  inset: 0;

  border-radius: 999px;

  background: #d9dce0;
}

.cookie-slider::before {
  position: absolute;

  left: 4px;
  bottom: 4px;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: var(--white);

  content: "";
}

.cookie-switch input:checked + .cookie-slider {
  background: var(--red);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(20px);
}

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

.cookie-modal-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding-top: 22px;

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

.cookie-modal-actions {
  display: flex;
  gap: 8px;
}

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

@media (max-width:760px) {

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    grid-template-columns: auto 1fr;

    gap: 14px;

    padding: 18px;
  }

  .cookie-actions {
    display: grid;

    width: 100%;

    grid-template-columns:
      1fr 1fr;

    grid-column: 1 / -1;
  }

  .cookie-button-settings {
    grid-column: 1 / -1;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-modal {
    align-items: flex-end;

    padding: 10px;
  }

  .cookie-modal-card {
    width: 100%;

    max-height:
      calc(100vh - 20px);

    padding: 22px;

    border-radius: 20px;
  }

  .cookie-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-modal-actions {
    display: grid;

    grid-template-columns:
      1fr 1fr;
  }
}
.footer-center {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-policy {
  display: inline-block;

  padding: 8px 12px;

  border: 1px solid #e7e9ec;
  border-radius: 8px;

  background: #fff;
  color: #666b72;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;
}

.footer-policy:hover {
  border-color: #e52329;
  color: #e52329;
}