:root {
  --header-height: 92px;
  --bg: #050705;
  --bg-soft: #0a0f0b;
  --panel: #101511;
  --panel-strong: #151d16;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f7f4;
  --muted: #a6ada5;
  --green: #39ff14;
  --green-dark: #1fb900;
  --green-soft: rgba(57, 255, 20, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  --bg: #f5f7f0;
  --bg-soft: #ffffff;
  --panel: #ffffff;
  --panel-strong: #ecf3ea;
  --line: rgba(10, 18, 10, 0.12);
  --text: #071006;
  --muted: #536052;
  --green: #24e20a;
  --green-dark: #18a600;
  --green-soft: rgba(36, 226, 10, 0.13);
  --shadow: 0 24px 70px rgba(20, 34, 18, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(57, 255, 20, 0.12), transparent 26rem),
    linear-gradient(180deg, #020302 0%, var(--bg) 48%, #080b08 100%);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  width: 100%;
  min-height: var(--header-height);
  margin: 0;
  padding: 18px max(20px, calc((100vw - 1480px) / 2));
  border-bottom: 1px solid transparent;
  background: #020302;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(2, 3, 2, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 108px;
  height: auto;
  object-fit: contain;
}

.brand-logo-light {
  display: none;
  background: none;
}


.desktop-nav {
  --nav-indicator-left: 0px;
  --nav-indicator-width: 0px;
  --nav-indicator-opacity: 0;
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-menu a {
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 2px;
}

.desktop-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: var(--nav-indicator-width);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0), var(--green) 18%, var(--green) 82%, rgba(57, 255, 20, 0));
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.48);
  opacity: var(--nav-indicator-opacity);
  transform: translateX(var(--nav-indicator-left));
  transition:
    transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.12s ease;
  pointer-events: none;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.desktop-nav a.is-active,
.mobile-menu a.is-active {
  color: var(--green);
}

.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible,
.lang-btn:focus-visible,
.menu-toggle:focus-visible {
  outline: none;
}

.mobile-menu a:focus-visible,
.lang-btn:focus-visible,
.menu-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.16);
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.065);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-phone:hover {
  border-color: rgba(57, 255, 20, 0.56);
  background: rgba(57, 255, 20, 0.12);
  color: var(--green);
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(57, 255, 20, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.11), transparent 22px),
    rgba(3, 7, 4, 0.78);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.theme-icon[data-icon="light"] {
  color: #ffb800;
}

.theme-icon[data-icon="dark"] {
  color: #f4f7ff;
}

.theme-svg {
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-sun-core {
  fill: currentColor;
  stroke-width: 0;
}

.theme-sun-rays {
  stroke-width: 2;
}

.theme-svg-moon {
  fill: currentColor;
  stroke-width: 0;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(57, 255, 20, 0.62);
  background: rgba(57, 255, 20, 0.12);
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 98px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(57, 255, 20, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.11), transparent 22px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(3, 7, 4, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 -10px 22px rgba(0, 0, 0, 0.2),
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(57, 255, 20, 0.07);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.language-switch::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc((100% - 10px) / 2);
  height: calc(100% - 10px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 42%),
    linear-gradient(135deg, #40ff22 0%, #23e20c 62%, #18b804 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -6px 10px rgba(2, 47, 0, 0.24),
    0 0 18px rgba(57, 255, 20, 0.34);
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s ease;
}

.language-switch.is-pl::before {
  transform: translateX(100%);
}

.lang-btn {
  position: relative;
  z-index: 1;
  flex: 1 0 0;
  min-width: 40px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

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

.lang-btn.is-active {
  color: #071006;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}

.menu-toggle.is-open {
  border-color: rgba(57, 255, 20, 0.6);
  background: rgba(57, 255, 20, 0.08);
  color: var(--green);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

main {
  padding-top: var(--header-height);
}

.section {
  width: min(100% - 40px, 1480px);
  margin: 0 auto;
  padding: 68px 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

@media (min-width: 901px) and (pointer: fine) {
  .section {
    min-height: calc(100svh - var(--header-height));
  }

  .split-section,
  .help-section,
  .cars-section,
  .start-section,
  .terms-section,
  .form-section {
    align-content: center;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  gap: clamp(34px, 4.4vw, 76px);
  width: min(100% - 32px, 1620px);
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(30px, 4.6svh, 56px);
  padding-bottom: clamp(28px, 4.4svh, 52px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 78% 44%, rgba(57, 255, 20, 0.14), transparent 20rem),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.05), transparent 18rem);
  opacity: 0.9;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.98) 0%, rgba(5, 7, 5, 0.9) 36%, rgba(5, 7, 5, 0.42) 66%, rgba(5, 7, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.96) 0%, rgba(5, 7, 5, 0.12) 34%, rgba(5, 7, 5, 0.22) 70%, rgba(5, 7, 5, 0.94) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.platforms {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.07);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 800;
}

.platforms span {
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  max-width: 590px;
  margin-bottom: 20px;
  font-size: clamp(38px, 3.55vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: clamp(14px, 2svh, 18px);
  font-size: clamp(42px, 3.45vw, 66px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead,
.section-copy,
.form-copy p,
.terms-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.hero .lead {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.earnings-card {
  position: relative;
  display: grid;
  gap: 6px;
  width: min(100%, 440px);
  margin: 22px 0 24px;
  padding: 16px 18px 17px;
  border: 1px solid rgba(57, 255, 20, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(57, 255, 20, 0.15), transparent 7rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(5, 9, 5, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(57, 255, 20, 0.08);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.earnings-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--green), transparent);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.5);
}

.earnings-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.earnings-card strong {
  color: var(--text);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.22;
}

.earnings-card small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.35vw, 22px);
  width: min(100%, 720px);
  margin-left: auto;
}

.hero-stat-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(54px, 4.4vw, 68px) 1fr;
  grid-template-rows: auto 1fr auto;
  gap: clamp(13px, 1vw, 18px) clamp(14px, 1.2vw, 18px);
  min-height: clamp(260px, 26svh, 280px);
  padding: clamp(20px, 1.7vw, 28px);
  border: 1px solid rgba(57, 255, 20, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(57, 255, 20, 0.12), transparent 8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(5, 9, 5, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-stat-card.is-primary {
  grid-row: auto;
  background:
    linear-gradient(145deg, rgba(57, 255, 20, 0.1), rgba(255, 255, 255, 0.026)),
    rgba(4, 10, 5, 0.56);
}

.hero-stat-card::after {
  content: "";
  display: block;
  width: clamp(42px, 3.2vw, 52px);
  height: clamp(42px, 3.2vw, 52px);
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  background-image: var(--stat-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-stat-card::before {
  content: "";
  display: block;
  width: clamp(54px, 4.4vw, 68px);
  height: clamp(54px, 4.4vw, 68px);
  grid-column: 1;
  grid-row: 1;
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.44), transparent 18px),
    rgba(57, 255, 20, 0.13);
  box-shadow: 0 12px 28px rgba(57, 255, 20, 0.12);
}

.hero-stat-card:nth-child(1) {
  --stat-icon: url("./assets/stat-income.png");
}

.hero-stat-card:nth-child(2) {
  --stat-icon: url("./assets/stat-deposit.png");
}

.hero-stat-card:nth-child(3) {
  --stat-icon: url("./assets/stat-car.png");
}

.hero-stat-card:nth-child(4) {
  --stat-icon: url("./assets/stat-support.png");
}

.hero-stat-card span {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(11px, 0.76vw, 13px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-card strong {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.18;
}

.hero-stat-card small {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.46;
  font-weight: 650;
}

.hero-side {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: clamp(500px, calc(100svh - var(--header-height) - 82px), 680px);
  padding: clamp(18px, 2vw, 28px) 0;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  right: max(-4vw, -56px);
  bottom: clamp(-36px, -2.5svh, -14px);
  width: min(1120px, 76vw);
  height: clamp(300px, 44svh, 520px);
  background-image: url("./assets/hero-car.png?v=20260710-hero");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.54;
  filter: saturate(1.06) contrast(1.04) brightness(0.86);
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.82) 18%, #000 46%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.82) 18%, #000 46%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  mask-composite: intersect;
}

.hero-direct-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 650;
}

.hero-direct-contact a {
  color: var(--text);
  border-bottom: 1px solid rgba(57, 255, 20, 0.34);
  font-weight: 850;
}

.hero-direct-contact a:hover {
  color: var(--green);
  border-color: var(--green);
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: clamp(18px, 2.4svh, 24px) 0 clamp(22px, 3svh, 28px);
  padding: 0;
  list-style: none;
}

.hero-points li,
.terms-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.hero-points li::before,
.terms-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-actions .btn {
  position: relative;
  min-height: 54px;
  padding: 0 18px;
  overflow: hidden;
  white-space: nowrap;
}

.hero-actions .btn-primary {
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(135deg, #42ff22 0%, #29ee0d 58%, #18c704 100%);
  box-shadow:
    0 22px 52px rgba(57, 255, 20, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transform: translateX(-58%);
  transition: opacity 0.24s ease, transform 0.36s ease;
}

.hero-actions .btn-primary:hover::after {
  opacity: 1;
  transform: translateX(58%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #061005;
  box-shadow: 0 18px 42px rgba(57, 255, 20, 0.24);
}

.btn-outline {
  border-color: var(--green);
  background: rgba(4, 8, 4, 0.8);
  color: var(--text);
}

.header-cta {
  position: relative;
  min-height: 48px;
  min-width: 178px;
  padding: 0 24px;
  border-color: rgba(57, 255, 20, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(3, 7, 4, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 -12px 24px rgba(0, 0, 0, 0.2),
    0 16px 38px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(57, 255, 20, 0.07);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.13), transparent 28px),
    linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.12), transparent);
  opacity: 0.55;
  pointer-events: none;
  transform: translateX(-42%);
  transition: opacity 0.24s ease, transform 0.32s ease;
}

.header-cta:hover {
  border-color: rgba(57, 255, 20, 0.64);
  background:
    linear-gradient(180deg, rgba(57, 255, 20, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 5, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(57, 255, 20, 0.16);
}

.header-cta:hover::before {
  opacity: 1;
  transform: translateX(24%);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-car {
  border-color: rgba(57, 255, 20, 0.32);
  background:
    radial-gradient(circle at 22% 18%, rgba(57, 255, 20, 0.13), transparent 32px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(4, 9, 5, 0.74);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 14px 36px rgba(0, 0, 0, 0.28);
}

.btn-car::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.72);
}

.btn-car:hover {
  border-color: rgba(57, 255, 20, 0.68);
  background:
    radial-gradient(circle at 22% 18%, rgba(57, 255, 20, 0.22), transparent 36px),
    linear-gradient(180deg, rgba(57, 255, 20, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 5, 0.86);
}

.btn-arrow {
  font-size: 20px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.feature-card,
.step-card {
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.info-card span,
.feature-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.info-card p,
.feature-card p,
.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 650;
}

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

.advantage-section {
  width: min(100% - 40px, 1500px);
  overflow: hidden;
}

.advantage-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.advantage-head h2 {
  max-width: 820px;
}

.advantage-controls {
  display: flex;
  gap: 12px;
  padding-bottom: 4px;
}

.advantage-arrow {
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.14), transparent 20px),
    rgba(57, 255, 20, 0.1);
}

.advantage-carousel {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-right: 0;
  padding: 4px 2px 12px 0;
}

.advantage-carousel::-webkit-scrollbar {
  display: none;
}

.advantage-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-columns: clamp(300px, 29vw, 392px);
  gap: 16px;
  width: max-content;
}

.advantage-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 16%, rgba(57, 255, 20, 0.18), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.022)),
    rgba(8, 13, 9, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-snap-align: start;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(57, 255, 20, 0.14);
  border-radius: 50%;
}

.advantage-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  border-radius: 8px;
  background: #020302;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.18);
}

.advantage-card h3 {
  max-width: 320px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(24px, 1.55vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
}

.advantage-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}

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

.cars-section {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: clamp(26px, 3.4vh, 40px);
  width: min(100% - 32px, 1500px);
  padding-top: clamp(24px, 3.6vh, 42px);
  padding-bottom: clamp(24px, 3.6vh, 42px);
}

.cars-head {
  display: grid;
  justify-items: center;
  width: min(100%, 900px);
  margin-bottom: 0;
  text-align: center;
}

.cars-head .eyebrow {
  margin-bottom: 12px;
}

.cars-head h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.04;
}

.cars-head .section-copy {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(57, 255, 20, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 20, 0.72);
  background: rgba(57, 255, 20, 0.1);
}

.car-slider {
  position: relative;
  --arrow-size: 58px;
  --arrow-gap: 0px;
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 0;
}

.car-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.car-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: var(--arrow-size);
  height: var(--arrow-size);
  transform: translateY(-50%);
  border-color: rgba(57, 255, 20, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 10, 6, 0.86);
  color: var(--text);
  font-size: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.car-arrow:hover {
  transform: translateY(calc(-50% - 1px));
  border-color: rgba(57, 255, 20, 0.64);
  background:
    linear-gradient(145deg, rgba(57, 255, 20, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(5, 10, 6, 0.92);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

.car-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  background: currentColor;
  filter: none;
  transform: translate(-50%, -50%);
  -webkit-mask: var(--arrow-icon) center / contain no-repeat;
  mask: var(--arrow-icon) center / contain no-repeat;
}

.car-arrow-prev {
  left: 14px;
  --arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E");
}

.car-arrow-prev::before {
  transform: translate(-50%, -50%);
}

.car-arrow-next {
  right: 14px;
  --arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
}

.car-arrow-next::before {
  transform: translate(-50%, -50%);
}

.car-card {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.78fr);
  width: 100%;
  min-height: clamp(430px, 52svh, 540px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 22%, rgba(57, 255, 20, 0.15), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56);
  overflow: hidden;
  animation: carSlideIn 0.26s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.car-card.is-selected {
  border-color: rgba(57, 255, 20, 0.78);
  box-shadow: 0 24px 70px rgba(57, 255, 20, 0.13), var(--shadow);
}

.car-image-wrap {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.38)),
    rgba(0, 0, 0, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.car-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 64%, rgba(5, 7, 5, 0.52)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 22%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 1;
}

.car-image {
  position: relative;
  z-index: 0;
  width: 108%;
  height: 100%;
  min-height: clamp(430px, 52svh, 540px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.car-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2vh, 24px);
  padding: clamp(30px, 3.4vw, 54px);
  background:
    radial-gradient(circle at 85% 15%, rgba(57, 255, 20, 0.12), transparent 12rem),
    rgba(6, 9, 7, 0.9);
}

.car-card h3 {
  max-width: 420px;
  margin: 0 0 14px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.02;
}

.car-card p {
  margin: 0;
}

.car-counter {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.car-mobile-cue {
  display: none;
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.car-meta span,
.car-deposit {
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  background: rgba(57, 255, 20, 0.075);
}

.car-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 850;
}

.car-price {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.12;
  font-weight: 900;
}

.car-description {
  max-width: 380px;
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.car-deposit {
  display: grid;
  gap: 4px;
  max-width: 380px;
  margin-top: 12px;
  padding: 11px 13px;
}

.car-deposit strong {
  color: var(--green);
  font-size: 14px;
}

.car-deposit span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.car-note {
  max-width: 380px;
  margin-top: 10px !important;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.car-select-btn {
  width: 100%;
  min-height: 58px;
  border-color: rgba(57, 255, 20, 0.38);
  background: rgba(57, 255, 20, 0.1);
  color: var(--text);
}

.car-card.is-selected .car-select-btn {
  background: var(--green);
  color: #061005;
  box-shadow: 0 18px 38px rgba(57, 255, 20, 0.18);
}

@media (min-width: 901px) and (pointer: fine) and (max-height: 960px) {
  .cars-section {
    gap: clamp(18px, 2.3vh, 26px);
    padding-top: clamp(18px, 2.6vh, 28px);
    padding-bottom: clamp(18px, 2.6vh, 28px);
  }

  .cars-head h2 {
    max-width: 900px;
    margin-bottom: 10px;
    font-size: clamp(36px, 3.5vw, 54px);
  }

  .cars-head .section-copy {
    max-width: 740px;
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.45;
  }

  .car-card {
    min-height: 440px;
  }

  .car-image {
    min-height: 440px;
  }

  .car-card-content {
    gap: 18px;
    padding: clamp(22px, 2.4vw, 34px);
  }

  .car-card h3 {
    margin-bottom: 12px;
    font-size: clamp(30px, 2.45vw, 42px);
  }

  .car-counter {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .car-meta {
    margin-bottom: 12px;
  }

  .car-meta span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .car-price {
    font-size: clamp(21px, 1.8vw, 28px);
  }

  .car-description {
    margin-top: 9px !important;
    font-size: 14px;
    line-height: 1.42;
  }

  .car-deposit {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .car-deposit span,
  .car-note {
    font-size: 13px;
    line-height: 1.38;
  }

  .car-note {
    margin-top: 10px !important;
  }

  .car-select-btn {
    min-height: 48px;
  }
}

@keyframes carSlideIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.start-section {
  padding-top: 52px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  counter-increment: step;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 44px;
  color: rgba(57, 255, 20, 0.86);
  font-size: 18px;
  font-weight: 900;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 50%;
}

.terms-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 10%, rgba(57, 255, 20, 0.13), transparent 20rem),
    linear-gradient(145deg, rgba(18, 28, 19, 0.98), rgba(8, 10, 8, 0.98));
  box-shadow: var(--shadow);
}

.terms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.form-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-bottom: 110px;
}

.form-section.is-car-focus .lead-form {
  animation: leadFormFocus 1.35s ease;
}

.direct-contact {
  display: grid;
  gap: 5px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

.direct-contact a {
  width: fit-content;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.16);
  border-bottom: 1px solid rgba(57, 255, 20, 0.42);
  transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.direct-contact a:hover {
  color: var(--green);
  border-color: var(--green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.26);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-link {
  min-width: 132px;
  min-height: 48px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.contact-link:not([aria-disabled="true"]) {
  border-color: rgba(57, 255, 20, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(4, 9, 5, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.contact-link:not([aria-disabled="true"]):hover {
  border-color: rgba(57, 255, 20, 0.62);
  box-shadow: 0 0 26px rgba(57, 255, 20, 0.12);
}

.contact-link[aria-disabled="true"] {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.4);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

@keyframes leadFormFocus {
  0% {
    border-color: rgba(57, 255, 20, 0.22);
    box-shadow: var(--shadow);
    transform: translateY(0);
  }

  24% {
    border-color: rgba(57, 255, 20, 0.86);
    box-shadow: 0 26px 78px rgba(57, 255, 20, 0.18), var(--shadow);
    transform: translateY(-4px);
  }

  100% {
    border-color: rgba(57, 255, 20, 0.22);
    box-shadow: var(--shadow);
    transform: translateY(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 9px;
}

label,
legend {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

label strong {
  color: var(--green);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 54px;
  padding: 0 16px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 14px 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(57, 255, 20, 0.7);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.08);
}

.date-picker {
  position: relative;
}

.date-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 48px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.date-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.date-trigger.is-open::after {
  transform: translateY(-36%) rotate(225deg);
}

.date-trigger.is-open,
.date-trigger:focus-visible {
  border-color: rgba(57, 255, 20, 0.7);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.08);
  outline: none;
}

.calendar-popover {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  width: min(330px, calc(100vw - 48px));
  padding: 16px;
  border: 1px solid rgba(57, 255, 20, 0.26);
  border-radius: 8px;
  background: rgba(8, 12, 9, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.calendar-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.calendar-head strong {
  text-align: center;
  font-size: 15px;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.calendar-nav:hover,
.calendar-day:hover {
  border-color: rgba(57, 255, 20, 0.58);
  background: rgba(57, 255, 20, 0.1);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.calendar-day,
.calendar-empty {
  min-height: 34px;
}

.calendar-day {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.calendar-day.is-today {
  color: var(--green);
}

.calendar-day.is-selected {
  border-color: var(--green);
  background: var(--green);
  color: #061005;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
  margin: 0;
  min-height: 142px;
  padding: 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.choice-title {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 2px;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.2;
}

.choice-group.is-invalid {
  border-color: rgba(255, 134, 124, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 134, 124, 0.08);
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  user-select: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.choice-card input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  position: relative;
  z-index: 1;
}

.choice-card span::before {
  display: none;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(57, 255, 20, 0.5);
  background:
    linear-gradient(180deg, rgba(57, 255, 20, 0.11), rgba(57, 255, 20, 0.055)),
    rgba(0, 0, 0, 0.16);
}

.choice-card:focus-within {
  border-color: rgba(57, 255, 20, 0.74);
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.09);
}

.choice-card:has(input:checked),
.choice-card.is-checked {
  border-color: rgba(57, 255, 20, 0.98);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    var(--green);
  color: #061005;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 12px 26px rgba(57, 255, 20, 0.22);
}

.choice-card:has(input:checked)::after,
.choice-card.is-checked::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 12px;
  border: solid #061005;
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
  opacity: 0.92;
}

.choice-error {
  grid-column: 1 / -1;
  min-height: 0;
}

.choice-error:not(:empty) {
  min-height: 19px;
}

.choice-group label:not(.choice-card) {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 650;
}

input[type="radio"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.submit-row {
  display: grid;
  gap: 10px;
}

.trust-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-submit.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.field-error,
.form-status {
  min-height: 20px;
  color: #ff867c;
  font-size: 14px;
  line-height: 1.35;
}

.form-status {
  margin: 0;
  padding: 0;
}

.form-status.is-success {
  color: var(--green);
}

.form-status:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(255, 134, 124, 0.28);
  border-radius: 8px;
  background: rgba(255, 134, 124, 0.08);
}

.form-status.is-success:not(:empty) {
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.09);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
}

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

.footer-brand-logo {
  display: block;
  width: 98px;
  height: auto;
  object-fit: contain;
}

.footer-brand-logo-light {
  display: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.footer-links a {
  font-weight: 850;
}

.footer-links a:hover {
  color: var(--green);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .site-header {
    width: 100%;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-right: 14px;
    padding-left: 14px;
  }

  .desktop-nav,
  .header-phone,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 11, 8, 0.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
  }

  .mobile-menu a.is-active {
    border-color: rgba(57, 255, 20, 0.28);
    background: rgba(57, 255, 20, 0.09);
    box-shadow: inset 3px 0 0 var(--green);
  }

  .section {
    width: min(100% - 28px, 1380px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(34px, 5.5svh, 58px);
    padding-bottom: clamp(44px, 7svh, 72px);
  }

  .hero::before {
    background:
      radial-gradient(circle at 54% 58%, rgba(57, 255, 20, 0.16), transparent 17rem),
      radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.04), transparent 14rem);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, 0.96) 0%, rgba(5, 7, 5, 0.72) 26%, rgba(5, 7, 5, 0.86) 72%, #050705 100%),
      linear-gradient(90deg, rgba(5, 7, 5, 0.96) 0%, rgba(5, 7, 5, 0.74) 50%, rgba(5, 7, 5, 0.94) 100%),
      radial-gradient(circle at 56% 54%, rgba(57, 255, 20, 0.22), transparent 17rem);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-side {
    min-height: auto;
    padding: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 700px);
    margin: 26px 0 0;
  }

  .hero-stat-card,
  .hero-stat-card.is-primary {
    min-height: 190px;
    grid-row: auto;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 760px);
    height: clamp(210px, 34svh, 300px);
    margin: 18px auto 0;
    background-position: center bottom;
    opacity: 0.72;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

  .split-section,
  .terms-panel,
  .form-section {
    grid-template-columns: 1fr;
  }

  .advantage-section {
    width: min(100% - 28px, 1380px);
  }

  .advantage-head {
    align-items: start;
  }

  .advantage-track {
    grid-auto-columns: minmax(300px, 380px);
  }

  .advantage-card {
    min-height: 320px;
  }

  .cars-head {
    max-width: 760px;
  }

  .cars-head .section-copy {
    max-width: 680px;
  }

  .car-slider {
    width: min(100%, 900px);
    padding: 0 52px;
  }

  .car-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .car-image-wrap {
    min-height: 340px;
  }

  .car-image {
    min-height: 340px;
  }

  .car-image-wrap::after {
    background: linear-gradient(180deg, transparent 60%, rgba(5, 7, 5, 0.72));
  }

  .car-card-content {
    padding: 30px;
  }

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

@media (max-width: 680px) {

  .advantage-controls,
  .car-arrow {
    display: none;
  }

  :root {
    --header-height: 74px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    gap: 10px;
    padding: 12px;
  }

  .brand-logo {
    width: 92px;
    height: auto;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    min-width: 94px;
    min-height: 40px;
    padding: 3px;
    border-radius: 999px;
  }

  .language-switch::before {
    top: 3px;
    left: 3px;
    width: calc((100% - 6px) / 2);
    height: calc(100% - 6px);
  }

  .lang-btn {
    min-width: 36px;
    height: 34px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    left: 12px;
    right: 12px;
  }

  .section {
    width: min(100% - 24px, 1380px);
    padding: 50px 0;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 68% 46%, rgba(57, 255, 20, 0.13), transparent 12rem),
      radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.04), transparent 10rem);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, 0.98) 0%, rgba(5, 7, 5, 0.74) 30%, rgba(5, 7, 5, 0.86) 72%, #050705 100%),
      linear-gradient(90deg, rgba(5, 7, 5, 0.98) 0%, rgba(5, 7, 5, 0.68) 52%, rgba(5, 7, 5, 0.94) 100%),
      radial-gradient(circle at 54% 56%, rgba(57, 255, 20, 0.2), transparent 14rem);
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .platforms {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero-points {
    margin: 22px 0 26px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin: 20px 0 0;
    padding: 0;
    overflow: visible;
  }

  .hero-stat-card,
  .hero-stat-card.is-primary {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    min-height: 142px;
    padding: 12px;
  }

  .hero-stat-card::before {
    width: 42px;
    height: 42px;
  }

  .hero-stat-card::after {
    width: 33px;
    height: 33px;
  }

  .hero-stat-card span {
    font-size: 10px;
  }

  .hero-stat-card strong {
    font-size: 16px;
    line-height: 1.18;
  }

  .hero-stat-card small {
    font-size: 10.5px;
    line-height: 1.32;
  }

  .hero-direct-contact {
    display: flex;
    margin-top: 12px;
    font-size: 13px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .btn-primary {
    grid-column: 1 / -1;
  }

  .hero-actions .btn {
    min-height: 52px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-visual {
    height: clamp(170px, 28svh, 230px);
    margin-top: 14px;
    background-size: min(620px, 124vw) auto;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .card-grid,
  .feature-grid,
  .steps,
  .terms-list,
  .choice-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .advantage-head {
    display: grid;
    gap: 18px;
    margin-bottom: 22px;
  }

  .advantage-controls {
    padding-bottom: 0;
  }

  .advantage-carousel {
    margin-right: -12px;
    padding-right: 12px;
  }

  .advantage-track {
    grid-auto-columns: minmax(272px, 82vw);
    gap: 12px;
  }

  .advantage-card {
    min-height: 300px;
    padding: 22px;
  }

  .advantage-index {
    margin-bottom: 48px;
  }

  .advantage-card h3 {
    font-size: 28px;
  }

  .cars-section {
    width: min(100% - 24px, 1380px);
    gap: 22px;
  }

  .cars-head {
    text-align: center;
  }

  .cars-head h2 {
    max-width: 360px;
    margin-bottom: 12px;
  }

  .cars-head .section-copy {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.48;
  }

  .car-slider {
    width: 100%;
    padding: 0;
  }

  .car-arrow {
    top: 130px;
    width: 46px;
    height: 46px;
    font-size: 0;
  }

  .car-arrow-prev {
    left: 10px;
  }

  .car-arrow-next {
    right: 10px;
  }

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

  .car-image-wrap {
    min-height: clamp(205px, 56vw, 235px);
    place-items: center;
  }

  .car-image {
    width: min(100%, 430px);
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    transform: translateY(-2px);
    image-rendering: auto;
  }

  .car-card-content {
    gap: 20px;
    padding: 22px;
  }

  .car-mobile-cue {
    display: grid;
    grid-template-columns: 22px auto 22px;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .car-mobile-cue > span {
    position: relative;
    display: block;
    width: 22px;
    height: 18px;
    color: var(--green);
    opacity: 0.86;
  }

  .car-mobile-cue > span::before {
    content: "";
    position: absolute;
    inset: 3px 5px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
  }

  .car-mobile-cue > span:first-child::before {
    transform: rotate(135deg);
  }

  .car-mobile-cue > span:last-child::before {
    transform: rotate(-45deg);
  }

  .car-mobile-dots {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(57, 255, 20, 0.28);
    border-radius: 999px;
    background: rgba(57, 255, 20, 0.08);
  }

  .car-mobile-dots button {
    width: 8px;
    height: 8px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .car-mobile-dots button.is-active {
    width: 24px;
    background: var(--green);
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.42);
  }

  .car-counter {
    margin-bottom: 12px;
  }

  .car-card h3 {
    font-size: 28px;
  }

  .car-price {
    font-size: 19px;
  }

  .car-note {
    font-size: 14px;
  }

  .calendar-popover {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    z-index: 2;
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  }

  .calendar-head {
    grid-template-columns: 40px 1fr 40px;
    gap: 6px;
    margin-bottom: 12px;
  }

  .calendar-nav {
    width: 40px;
    height: 40px;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }

  .calendar-day,
  .calendar-empty {
    min-height: 35px;
  }

  .calendar-day {
    font-size: 13px;
  }

  .choice-group {
    padding: 14px;
  }

  .info-card,
  .feature-card,
  .step-card {
    min-height: auto;
  }

  .step-card::before {
    margin-bottom: 28px;
  }

  .terms-panel,
  .lead-form {
    padding: 22px;
  }

  .direct-contact {
    margin-top: 16px;
    font-size: 15px;
  }

  .direct-contact a {
    font-size: 19px;
  }

  .site-footer {
    width: min(100% - 24px, 1380px);
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand-logo {
    height: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.12fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(57, 255, 20, 0.24);
    border-radius: 8px;
    background:
      radial-gradient(circle at 14% 20%, rgba(57, 255, 20, 0.12), transparent 8rem),
      rgba(3, 6, 3, 0.92);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.46),
      0 0 24px rgba(57, 255, 20, 0.08);
    backdrop-filter: blur(14px);
    transform: translateY(0);
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-sticky-cta a:first-child,
  .mobile-sticky-cta a:last-child {
    border-color: rgba(57, 255, 20, 0.36);
  }

  .mobile-sticky-cta a:last-child {
    background: linear-gradient(135deg, #42ff22, #20dc08);
    color: #061005;
    box-shadow: 0 0 22px rgba(57, 255, 20, 0.2);
  }
}

@media (max-width: 430px) {
  .car-image {
    width: min(104%, 430px);
  }
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 76% 18%, rgba(36, 226, 10, 0.11), transparent 28rem),
    linear-gradient(180deg, #f7f9f2 0%, #eef4ea 54%, #ffffff 100%);
  color: var(--text);
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(8, 18, 8, 0.07);
  box-shadow: 0 18px 48px rgba(20, 34, 18, 0.08);
}

html[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.74);
  border-bottom-color: rgba(8, 18, 8, 0.1);
}

html[data-theme="light"] .desktop-nav,
html[data-theme="light"] .header-phone {
  color: rgba(7, 16, 6, 0.78);
}

html[data-theme="light"] .brand-logo-dark {
  display: none;
}

html[data-theme="light"] .brand-logo-light {
  display: block;
}

html[data-theme="light"] .language-switch,
html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .header-cta {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 24px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 236, 0.82));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.64),
    0 12px 34px rgba(20, 34, 18, 0.1);
}

html[data-theme="light"] .lang-btn {
  color: rgba(7, 16, 6, 0.72);
}

html[data-theme="light"] .lang-btn.is-active {
  color: #071006;
}

html[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 78% 44%, rgba(36, 226, 10, 0.08), transparent 20rem),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.72), transparent 18rem);
}

html[data-theme="light"] .hero::after {
  background:
    linear-gradient(90deg, rgba(241, 245, 237, 0.99) 0%, rgba(241, 245, 237, 0.9) 38%, rgba(241, 245, 237, 0.42) 70%, rgba(241, 245, 237, 0.74) 100%),
    linear-gradient(180deg, #f1f5ed 0%, rgba(241, 245, 237, 0.2) 38%, rgba(241, 245, 237, 0.18) 70%, #f1f5ed 100%);
}

html[data-theme="light"] .platforms,
html[data-theme="light"] .earnings-card,
html[data-theme="light"] .advantage-card,
html[data-theme="light"] .info-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .step-card,
html[data-theme="light"] .terms-panel,
html[data-theme="light"] .lead-form,
html[data-theme="light"] .car-card {
  border-color: rgba(24, 166, 0, 0.18);
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 226, 10, 0.12), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 245, 232, 0.8));
  box-shadow: var(--shadow);
}

html[data-theme="light"] .hero-visual {
  background-image: url("./assets/hero-car-light.png?v=20260710-hero-light");
  opacity: 0.68;
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
}

html[data-theme="light"] .hero-stat-card {
  border-color: rgba(24, 166, 0, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 226, 10, 0.1), transparent 8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(237, 246, 232, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 30px rgba(20, 34, 18, 0.08);
}

html[data-theme="light"] .hero-stat-card.is-primary {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(229, 244, 224, 0.58));
}

html[data-theme="light"] .hero-stat-card::after {
  border-color: rgba(24, 166, 0, 0.11);
}

html[data-theme="light"] .hero-stat-card::before {
  border-color: rgba(24, 166, 0, 0.16);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.68), transparent 18px),
    rgba(36, 226, 10, 0.12);
}

html[data-theme="light"] .platforms,
html[data-theme="light"] .hero-stat-card span,
html[data-theme="light"] .earnings-card span,
html[data-theme="light"] .hero-stat-card small,
html[data-theme="light"] .hero-direct-contact,
html[data-theme="light"] .advantage-card p,
html[data-theme="light"] .info-card p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .step-card p,
html[data-theme="light"] .terms-list li,
html[data-theme="light"] .hero-points li,
html[data-theme="light"] .car-meta span,
html[data-theme="light"] .car-description,
html[data-theme="light"] .car-deposit span,
html[data-theme="light"] .direct-contact,
html[data-theme="light"] .site-footer {
  color: rgba(7, 16, 6, 0.74);
}

html[data-theme="light"] .footer-brand-logo-dark {
  display: none;
}

html[data-theme="light"] .footer-brand-logo-light {
  display: block;
}

html[data-theme="light"] .hero-stat-card strong,
html[data-theme="light"] .earnings-card strong,
html[data-theme="light"] .advantage-card h3,
html[data-theme="light"] .car-card h3,
html[data-theme="light"] .car-price,
html[data-theme="light"] .direct-contact a,
html[data-theme="light"] .hero-direct-contact a {
  color: var(--text);
}

html[data-theme="light"] .btn-ghost,
html[data-theme="light"] .btn-car,
html[data-theme="light"] .contact-link:not([aria-disabled="true"]),
html[data-theme="light"] .car-select-btn {
  background:
    radial-gradient(circle at 22% 18%, rgba(36, 226, 10, 0.12), transparent 34px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 236, 0.78));
  color: var(--text);
}

html[data-theme="light"] .advantage-index,
html[data-theme="light"] .car-card-content,
html[data-theme="light"] .car-image-wrap {
  background: rgba(246, 250, 243, 0.9);
}

html[data-theme="light"] .car-image-wrap {
  background:
    linear-gradient(90deg, rgba(245, 249, 243, 0), rgba(238, 246, 234, 0.72)),
    #f3f7ef;
}

html[data-theme="light"] .car-image-wrap::after {
  background:
    linear-gradient(90deg, transparent 76%, rgba(246, 250, 243, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 34%, rgba(255, 255, 255, 0.16));
}

html[data-theme="light"] .car-image {
  filter: saturate(1.02) contrast(1.02) brightness(1);
}

html[data-theme="light"] .car-mobile-cue > span {
  color: var(--green-dark);
}

html[data-theme="light"] .car-mobile-dots {
  border-color: rgba(36, 226, 10, 0.36);
  background: rgba(36, 226, 10, 0.09);
}

html[data-theme="light"] .car-mobile-dots button {
  background: rgba(7, 16, 6, 0.22);
}

html[data-theme="light"] .car-mobile-dots button.is-active {
  background: var(--green);
  box-shadow: 0 0 16px rgba(36, 226, 10, 0.34);
}

html[data-theme="light"] .car-arrow {
  color: #071006;
  border-color: rgba(24, 166, 0, 0.34);
  background:
    radial-gradient(circle at 35% 25%, rgba(57, 255, 20, 0.16), transparent 28px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 228, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.78),
    0 16px 36px rgba(20, 34, 18, 0.18);
}

html[data-theme="light"] .car-arrow:hover {
  border-color: rgba(24, 166, 0, 0.58);
  background:
    radial-gradient(circle at 35% 25%, rgba(57, 255, 20, 0.24), transparent 30px),
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(225, 244, 220, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 18px 42px rgba(20, 34, 18, 0.2);
}

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea,
html[data-theme="light"] .date-trigger,
html[data-theme="light"] .choice-card,
html[data-theme="light"] .choice-group,
html[data-theme="light"] .calendar-popover,
html[data-theme="light"] .calendar-day {
  border-color: rgba(7, 16, 6, 0.13);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

html[data-theme="light"] select {
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

html[data-theme="light"] .choice-card:hover {
  border-color: rgba(36, 226, 10, 0.48);
  background:
    linear-gradient(180deg, rgba(36, 226, 10, 0.12), rgba(36, 226, 10, 0.055)),
    rgba(255, 255, 255, 0.84);
}

html[data-theme="light"] .choice-card:has(input:checked),
html[data-theme="light"] .choice-card.is-checked {
  border-color: rgba(36, 226, 10, 0.98);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    var(--green);
  color: #061005;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.54),
    0 12px 28px rgba(36, 226, 10, 0.22);
}

html[data-theme="light"] label,
html[data-theme="light"] .choice-title {
  color: rgba(7, 16, 6, 0.8);
}

html[data-theme="light"] .mobile-menu {
  background: rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .mobile-menu a,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .mobile-sticky-cta a {
  color: rgba(7, 16, 6, 0.86);
}

html[data-theme="light"] .mobile-sticky-cta {
  background:
    radial-gradient(circle at 14% 20%, rgba(36, 226, 10, 0.14), transparent 8rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(20, 34, 18, 0.18);
}

html[data-theme="light"] .mobile-sticky-cta a:last-child,
html[data-theme="light"] .btn-primary,
html[data-theme="light"] .car-card.is-selected .car-select-btn {
  color: #061005;
}

@media (max-width: 1040px) {
  html[data-theme="light"] .hero::after {
    background:
      linear-gradient(180deg, rgba(247, 249, 242, 0.98) 0%, rgba(247, 249, 242, 0.72) 30%, rgba(247, 249, 242, 0.82) 72%, #f7f9f2 100%),
      linear-gradient(90deg, rgba(247, 249, 242, 0.96) 0%, rgba(247, 249, 242, 0.64) 52%, rgba(247, 249, 242, 0.94) 100%),
      radial-gradient(circle at 54% 56%, rgba(36, 226, 10, 0.18), transparent 14rem);
  }
}

/* --------------------------------------------------------------------------
   Hero background integration — 2026-07-10
   The car is now a true full-width background layer instead of a separate
   image inside the right column. The section also reaches the viewport edges,
   removing the visible rectangular cutoffs on wide screens.
   -------------------------------------------------------------------------- */

.hero.section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(24px, calc((100vw - 1540px) / 2 + 30px));
  background: var(--bg);
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background-image: url("./assets/hero-car.png?v=20260710-hero");
  background-repeat: no-repeat;
  background-position: center 58%;
  background-size: cover;
  opacity: 0.82;
  filter: saturate(1.04) contrast(1.03) brightness(0.9);
  pointer-events: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero::before {
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(57, 255, 20, 0.15), transparent 25rem),
    radial-gradient(circle at 40% 8%, rgba(255, 255, 255, 0.045), transparent 24rem);
}

.hero::after {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5, 7, 5, 0.99) 0%,
      rgba(5, 7, 5, 0.94) 28%,
      rgba(5, 7, 5, 0.62) 48%,
      rgba(5, 7, 5, 0.28) 70%,
      rgba(5, 7, 5, 0.54) 100%),
    linear-gradient(180deg,
      rgba(5, 7, 5, 0.9) 0%,
      rgba(5, 7, 5, 0.08) 32%,
      rgba(5, 7, 5, 0.14) 68%,
      rgba(5, 7, 5, 0.97) 100%);
}

.hero-side {
  isolation: auto;
}

.hero-stats {
  position: relative;
  z-index: 3;
}

html[data-theme="light"] .hero.section {
  background: #f4f7f0;
}

html[data-theme="light"] .hero-visual {
  background-image: url("./assets/hero-car-light.png?v=20260710-hero-light");
  background-position: center 58%;
  background-size: cover;
  opacity: 0.88;
  filter: saturate(1.01) contrast(1.015) brightness(1.01);
}

html[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 72% 44%, rgba(36, 226, 10, 0.1), transparent 26rem),
    radial-gradient(circle at 38% 8%, rgba(255, 255, 255, 0.92), transparent 24rem);
}

html[data-theme="light"] .hero::after {
  background:
    linear-gradient(90deg,
      rgba(245, 248, 241, 0.99) 0%,
      rgba(245, 248, 241, 0.95) 28%,
      rgba(245, 248, 241, 0.66) 48%,
      rgba(245, 248, 241, 0.2) 70%,
      rgba(245, 248, 241, 0.48) 100%),
    linear-gradient(180deg,
      rgba(245, 248, 241, 0.92) 0%,
      rgba(245, 248, 241, 0.05) 34%,
      rgba(245, 248, 241, 0.12) 68%,
      rgba(245, 248, 241, 0.98) 100%);
}

@media (max-width: 1240px) {
  .site-header {
    padding-inline: 20px;
  }

  .header-phone,
  .header-cta {
    display: none;
  }

  .hero.section {
    padding-inline: 24px;
  }

  .hero-visual {
    background-position: 57% 60%;
  }
}

@media (max-width: 1040px) {
  .hero.section {
    padding-inline: 22px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-position: 57% 70%;
    background-size: auto 74%;
    opacity: 0.62;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(5, 7, 5, 0.98) 0%,
        rgba(5, 7, 5, 0.84) 30%,
        rgba(5, 7, 5, 0.48) 58%,
        rgba(5, 7, 5, 0.9) 82%,
        #050705 100%),
      linear-gradient(90deg,
        rgba(5, 7, 5, 0.97) 0%,
        rgba(5, 7, 5, 0.62) 56%,
        rgba(5, 7, 5, 0.82) 100%);
  }

  html[data-theme="light"] .hero-visual {
    background-position: 57% 70%;
    background-size: auto 74%;
    opacity: 0.66;
  }

  html[data-theme="light"] .hero::after {
    background:
      linear-gradient(180deg,
        rgba(247, 249, 242, 0.98) 0%,
        rgba(247, 249, 242, 0.88) 30%,
        rgba(247, 249, 242, 0.5) 58%,
        rgba(247, 249, 242, 0.9) 82%,
        #f7f9f2 100%),
      linear-gradient(90deg,
        rgba(247, 249, 242, 0.98) 0%,
        rgba(247, 249, 242, 0.66) 56%,
        rgba(247, 249, 242, 0.84) 100%);
  }
}

@media (max-width: 680px) {
  .hero.section {
    padding-inline: 12px;
  }

  .hero-visual {
    background-position: 54% 76%;
    background-size: auto 54%;
    opacity: 0.44;
  }

  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(5, 7, 5, 0.99) 0%,
        rgba(5, 7, 5, 0.9) 34%,
        rgba(5, 7, 5, 0.58) 62%,
        rgba(5, 7, 5, 0.94) 84%,
        #050705 100%),
      linear-gradient(90deg,
        rgba(5, 7, 5, 0.98) 0%,
        rgba(5, 7, 5, 0.66) 54%,
        rgba(5, 7, 5, 0.9) 100%);
  }

  html[data-theme="light"] .hero-visual {
    background-position: 54% 76%;
    background-size: auto 54%;
    opacity: 0.5;
  }

  html[data-theme="light"] .hero::after {
    background:
      linear-gradient(180deg,
        rgba(247, 249, 242, 0.99) 0%,
        rgba(247, 249, 242, 0.92) 34%,
        rgba(247, 249, 242, 0.6) 62%,
        rgba(247, 249, 242, 0.94) 84%,
        #f7f9f2 100%),
      linear-gradient(90deg,
        rgba(247, 249, 242, 0.99) 0%,
        rgba(247, 249, 242, 0.7) 54%,
        rgba(247, 249, 242, 0.92) 100%);
  }
}
