:root {
  color-scheme: dark;
  --bg: #020406;
  --panel: #090c10;
  --panel-2: #0d1117;
  --line: rgba(255, 255, 255, 0.18);
  --soft-line: rgba(255, 255, 255, 0.1);
  --text: #f2f5f8;
  --muted: #a9afb7;
  --blue: #1497ff;
  --red: #ff1717;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-y: auto;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 15% 8%, rgba(20, 151, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 85% 18%, rgba(255, 23, 23, 0.08), transparent 24rem),
    linear-gradient(180deg, #030507 0%, #020406 48%, #03070a 100%);
  color: var(--text);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn {
  font: inherit;
}

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

.site-header,
main,
.site-footer {
  width: min(956px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--soft-line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 248px;
}

.brand-mark-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.brand-word-img {
  width: 178px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  flex: 1;
  font-size: 12px;
  color: #eef3f8;
}

.nav a {
  opacity: 0.9;
  position: relative;
  transition: color 180ms var(--ease-out), opacity 180ms var(--ease-out), text-shadow 180ms var(--ease-out);
}

.nav a::after,
.section-head a::after,
.featured-info a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.nav a:hover,
.section-head a:hover {
  color: var(--blue);
  opacity: 1;
  text-shadow: 0 0 14px rgba(20, 151, 255, 0.62);
}

.nav a:hover::after,
.section-head a:hover::after,
.featured-info a:hover::after {
  transform: scaleX(1);
}

.btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 5px;
  background: transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform 190ms var(--ease-out),
    box-shadow 190ms var(--ease-out),
    background 190ms var(--ease-out),
    border-color 190ms var(--ease-out),
    color 190ms var(--ease-out);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.26) 45%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 430ms var(--ease-out);
  pointer-events: none;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn-red {
  color: #fff;
  border-color: var(--red);
  background: rgba(255, 23, 23, 0.16);
  box-shadow: inset 0 0 20px rgba(255, 23, 23, 0.13);
}

.btn-red:hover {
  background: rgba(255, 23, 23, 0.25);
  box-shadow:
    0 0 20px rgba(255, 23, 23, 0.32),
    inset 0 0 22px rgba(255, 23, 23, 0.2);
}

.btn-blue {
  color: #dff2ff;
  border-color: var(--blue);
  background: rgba(20, 151, 255, 0.08);
}

.btn-blue:hover {
  background: rgba(20, 151, 255, 0.18);
  box-shadow:
    0 0 20px rgba(20, 151, 255, 0.28),
    inset 0 0 22px rgba(20, 151, 255, 0.15);
}

.btn-soft {
  color: #dff2ff;
  border-color: rgba(20, 151, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(20, 151, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 0 22px rgba(20, 151, 255, 0.08);
}

.btn-soft:hover {
  color: #fff;
  border-color: rgba(20, 151, 255, 0.95);
  background:
    linear-gradient(135deg, rgba(20, 151, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 0 20px rgba(20, 151, 255, 0.2),
    inset 0 0 26px rgba(20, 151, 255, 0.12);
}

.ghost {
  color: #ff2929;
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: 405px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 26px 6px 18px;
}

.hero-copy {
  position: relative;
  padding: 17px 0 0 30px;
}

.accent-bars {
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 124px;
  border-top: 58px solid var(--blue);
  border-bottom: 58px solid var(--red);
}

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

h1,
h2 {
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.34);
}

h1 {
  max-width: 355px;
  margin-bottom: 18px;
  font-size: 35px;
  line-height: 1.08;
  letter-spacing: 2px;
}

.hero-copy p {
  max-width: 360px;
  color: #c1c7cf;
  font-size: 16px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 20px 0 13px;
}

.payment-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #f4f7fb;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(20, 151, 255, 0.12);
}

.payment-shield {
  width: 38px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 8px rgba(20, 151, 255, 0.5))
    drop-shadow(0 0 16px rgba(20, 151, 255, 0.18));
}

.payment-shield .check {
  stroke-width: 5;
}

.featured-card,
.filters,
.car-card,
.format-card,
.cta {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.featured-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  top: 0;
  align-self: center;
  margin-bottom: 0;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.featured-card:hover,
.car-card:hover,
.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 151, 255, 0.42);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(20, 151, 255, 0.12);
}

.badge,
.ribbon {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 13px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.media,
.car-image {
  position: relative;
  background: #10151b;
}

.featured-card .media::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 150px;
  height: 46px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.media img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.featured-card:hover .media img,
.car-card:hover .car-image img {
  transform: scale(1.035);
  filter: brightness(1.08) contrast(1.05);
}

.media::after,
.car-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition:
    transform 190ms var(--ease-out),
    border-color 190ms var(--ease-out),
    box-shadow 190ms var(--ease-out),
    background 190ms var(--ease-out);
}

.play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(20, 151, 255, 0.18);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(20, 151, 255, 0.42);
}

.play::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 18px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.play.small {
  width: 42px;
  height: 42px;
  border-width: 2px;
}

.play.small::after {
  left: 16px;
  top: 11px;
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 13px;
}

.featured-info {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px;
}

.featured-info strong {
  font-size: 17px;
}

.featured-info a,
.section-head a {
  color: #8cc8ff;
  position: relative;
  transition: color 180ms var(--ease-out), text-shadow 180ms var(--ease-out);
}

.featured-info a:hover {
  color: #c7e8ff;
  text-shadow: 0 0 13px rgba(20, 151, 255, 0.5);
}

.main-choice-section {
  width: 100%;
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 28% 50%, rgba(0, 140, 255, 0.12), transparent 32%),
    radial-gradient(circle at 72% 50%, rgba(255, 25, 45, 0.12), transparent 32%);
}

.main-choice-container {
  max-width: 956px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.main-choice-button {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transform: translateZ(0);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
}

.main-choice-button::before,
.main-choice-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.main-choice-button::before {
  z-index: 1;
  inset: 18px 28px;
  border-radius: 22px;
  opacity: 0.28;
}

.main-choice-button::after {
  z-index: 3;
  inset: 1px;
  border-radius: 27px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      transparent 22%,
      transparent 70%,
      rgba(255, 255, 255, 0.05)
    );
}

.main-choice-button:hover {
  transform: translateY(-4px);
}

.main-choice-button:active {
  transform: translateY(-1px) scale(0.992);
}

.button-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.main-choice-button-blue {
  border: 1px solid rgba(43, 160, 255, 0.72);
  background:
    linear-gradient(135deg, #06111d 0%, #02070d 55%, #020406 100%);
  box-shadow:
    0 0 28px rgba(0, 135, 255, 0.18),
    inset 0 0 40px rgba(0, 135, 255, 0.08);
}

.main-choice-button-blue::before {
  border-top: 1px solid rgba(120, 210, 255, 0.18);
  border-bottom: 1px solid rgba(120, 210, 255, 0.08);
  background:
    linear-gradient(90deg, transparent, rgba(0, 145, 255, 0.08), transparent);
}

.main-choice-button-blue:hover,
.main-choice-button-blue:focus-visible {
  border-color: rgba(90, 195, 255, 1);
  box-shadow:
    0 0 44px rgba(0, 145, 255, 0.36),
    inset 0 0 54px rgba(0, 145, 255, 0.16);
}

.main-choice-button-red {
  border: 1px solid rgba(255, 45, 65, 0.72);
  background:
    linear-gradient(135deg, #160407 0%, #080204 55%, #020202 100%);
  box-shadow:
    0 0 28px rgba(255, 20, 45, 0.18),
    inset 0 0 40px rgba(255, 20, 45, 0.08);
}

.main-choice-button-red::before {
  border-top: 1px solid rgba(255, 90, 100, 0.16);
  border-bottom: 1px solid rgba(255, 90, 100, 0.08);
  background:
    linear-gradient(90deg, transparent, rgba(255, 20, 45, 0.08), transparent);
}

.main-choice-button-red:hover,
.main-choice-button-red:focus-visible {
  border-color: rgba(255, 75, 90, 1);
  box-shadow:
    0 0 44px rgba(255, 20, 45, 0.36),
    inset 0 0 54px rgba(255, 20, 45, 0.16);
}

.car-front-lights,
.car-rear-lights {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.front-light {
  position: absolute;
  top: 50%;
  width: 185px;
  height: 30px;
  transform: translateY(-50%);
  opacity: 0.34;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(80, 180, 255, 0.18) 12%,
      rgba(145, 220, 255, 0.95) 42%,
      rgba(245, 255, 255, 1) 52%,
      rgba(75, 165, 255, 0.85) 64%,
      transparent 100%
    );
  clip-path: polygon(0 50%, 18% 20%, 76% 24%, 100% 50%, 76% 76%, 18% 80%);
  filter: blur(0.2px);
  box-shadow:
    0 0 12px rgba(40, 180, 255, 0.45),
    0 0 32px rgba(0, 140, 255, 0.2);
  transition:
    opacity 350ms var(--ease-out),
    filter 350ms var(--ease-out),
    transform 350ms var(--ease-out),
    box-shadow 350ms var(--ease-out);
}

.front-light-left {
  left: 32px;
}

.front-light-right {
  right: 32px;
  transform: translateY(-50%) scaleX(-1);
}

.front-beam {
  position: absolute;
  top: 50%;
  width: 240px;
  height: 80px;
  transform: translateY(-50%);
  opacity: 0;
  filter: blur(14px);
  background:
    radial-gradient(
      ellipse at center,
      rgba(70, 175, 255, 0.42) 0%,
      rgba(70, 175, 255, 0.14) 42%,
      transparent 72%
    );
  transition:
    opacity 350ms var(--ease-out),
    transform 350ms var(--ease-out);
}

.front-beam-left {
  left: -20px;
}

.front-beam-right {
  right: -20px;
}

.main-choice-button-blue:hover .front-light,
.main-choice-button-blue:focus-visible .front-light,
.main-choice-button-blue:active .front-light {
  opacity: 1;
  filter: brightness(1.45) saturate(1.25);
  box-shadow:
    0 0 18px rgba(100, 210, 255, 0.9),
    0 0 50px rgba(0, 145, 255, 0.55),
    0 0 90px rgba(0, 145, 255, 0.24);
}

.main-choice-button-blue:hover .front-light-left,
.main-choice-button-blue:focus-visible .front-light-left,
.main-choice-button-blue:active .front-light-left {
  transform: translateY(-50%) translateX(6px);
}

.main-choice-button-blue:hover .front-light-right,
.main-choice-button-blue:focus-visible .front-light-right,
.main-choice-button-blue:active .front-light-right {
  transform: translateY(-50%) scaleX(-1) translateX(6px);
}

.main-choice-button-blue:hover .front-beam,
.main-choice-button-blue:focus-visible .front-beam,
.main-choice-button-blue:active .front-beam {
  opacity: 1;
}

.rear-light {
  position: absolute;
  top: 50%;
  width: 190px;
  height: 26px;
  transform: translateY(-50%);
  opacity: 0.32;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 0, 35, 0.18) 16%,
      rgba(255, 35, 55, 1) 42%,
      rgba(255, 105, 105, 1) 52%,
      rgba(255, 20, 40, 0.9) 64%,
      transparent 100%
    );
  clip-path: polygon(0 38%, 76% 38%, 100% 50%, 76% 62%, 0 62%);
  box-shadow:
    0 0 12px rgba(255, 20, 45, 0.42),
    0 0 30px rgba(255, 20, 45, 0.22);
  transition:
    opacity 350ms var(--ease-out),
    filter 350ms var(--ease-out),
    transform 350ms var(--ease-out),
    box-shadow 350ms var(--ease-out);
}

.rear-light-left {
  left: 34px;
}

.rear-light-right {
  right: 34px;
  transform: translateY(-50%) scaleX(-1);
}

.rear-glow {
  position: absolute;
  top: 50%;
  width: 230px;
  height: 76px;
  transform: translateY(-50%);
  opacity: 0;
  filter: blur(15px);
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 25, 45, 0.45) 0%,
      rgba(255, 25, 45, 0.16) 42%,
      transparent 74%
    );
  transition:
    opacity 350ms var(--ease-out),
    transform 350ms var(--ease-out);
}

.rear-glow-left {
  left: -20px;
}

.rear-glow-right {
  right: -20px;
}

.main-choice-button-red:hover .rear-light,
.main-choice-button-red:focus-visible .rear-light,
.main-choice-button-red:active .rear-light {
  opacity: 1;
  filter: brightness(1.45) saturate(1.3);
  box-shadow:
    0 0 18px rgba(255, 70, 90, 0.9),
    0 0 50px rgba(255, 20, 45, 0.58),
    0 0 90px rgba(255, 20, 45, 0.26);
}

.main-choice-button-red:hover .rear-light-left,
.main-choice-button-red:focus-visible .rear-light-left,
.main-choice-button-red:active .rear-light-left {
  transform: translateY(-50%) translateX(-6px);
}

.main-choice-button-red:hover .rear-light-right,
.main-choice-button-red:focus-visible .rear-light-right,
.main-choice-button-red:active .rear-light-right {
  transform: translateY(-50%) scaleX(-1) translateX(-6px);
}

.main-choice-button-red:hover .rear-glow,
.main-choice-button-red:focus-visible .rear-glow,
.main-choice-button-red:active .rear-glow {
  opacity: 1;
}

.main-choice-label {
  position: relative;
  z-index: 5;
  color: #f7f9fb;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.main-choice-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.main-choice-button-blue:focus-visible {
  color: #6ac6ff;
}

.main-choice-button-red:focus-visible {
  color: #ff5f70;
}

.filters {
  border-radius: 8px;
  padding: 11px;
  margin: 0 0 10px;
}

.select-row,
.tag-row {
  display: grid;
  gap: 12px;
}

.select-row {
  grid-template-columns: repeat(8, minmax(80px, 1fr)) 124px;
  margin-bottom: 10px;
}

.tag-row {
  grid-template-columns: repeat(6, 1fr);
}

.filters button {
  min-height: 33px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  color: #d7dde5;
  padding: 0 11px;
  font-size: 12px;
  text-align: left;
  transition:
    transform 170ms var(--ease-out),
    border-color 170ms var(--ease-out),
    background 170ms var(--ease-out),
    box-shadow 170ms var(--ease-out);
}

.filters button:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 151, 255, 0.48);
  background: rgba(20, 151, 255, 0.09);
  box-shadow: 0 0 16px rgba(20, 151, 255, 0.12);
}

.filters .select-row button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters .search {
  justify-content: center;
  text-align: center;
  border-color: #278bdc;
  background: rgba(20, 151, 255, 0.17);
  color: #fff;
}

.tag-row button {
  text-align: center;
  color: #c7cdd5;
}

.section {
  padding: 12px 6px 14px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: 2px;
}

h2::after {
  content: "";
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0 52%, transparent 52% 60%, var(--red) 60% 100%);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.car-card {
  overflow: hidden;
  border-radius: 6px;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.car-image {
  aspect-ratio: 1.95;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.car-card h3,
.car-card p,
.car-card div {
  padding-inline: 12px;
}

.car-card h3 {
  margin: 9px 0 3px;
  font-size: 14px;
}

.car-card p {
  margin-bottom: 4px;
  font-size: 12px;
  color: var(--muted);
}

.car-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
}

.car-card strong {
  font-size: 16px;
}

.car-card span {
  color: #b7bec7;
  font-size: 13px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.benefit-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050608;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 151, 255, 0.34);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(20, 151, 255, 0.1);
}

.benefit-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
  will-change: transform;
}

.benefit-grid article:hover img {
  transform: scale(1.025);
  filter: brightness(1.1) contrast(1.06);
}

.icon,
.format-icon {
  width: 52px;
  height: 52px;
  display: inline-block;
  position: relative;
}

.shield-icon {
  border: 4px solid #dfe9f4;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: linear-gradient(135deg, #073352, #1497ff 48%, #05101a 49%);
  clip-path: polygon(50% 0, 100% 16%, 88% 78%, 50% 100%, 12% 78%, 0 16%);
}

.speed-icon {
  border: 4px solid #e9edf2;
  border-radius: 50%;
}

.speed-icon::before {
  content: "";
  position: absolute;
  inset: 25px 25px auto 7px;
  height: 3px;
  background: #e9edf2;
}

.owner-icon::before,
.owner-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #e9edf2;
}

.owner-icon::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 2px;
}

.owner-icon::after {
  width: 46px;
  height: 26px;
  border-radius: 26px 26px 0 0;
  border-bottom: 0;
  bottom: 2px;
}

.eye-icon {
  border: 4px solid #e9edf2;
  border-radius: 75% 10%;
  transform: rotate(45deg);
}

.eye-icon::after {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px #1a1d22;
}

.section-note {
  color: #b6bdc6;
  margin: -8px 0 18px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.format-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.format-card.recommended {
  border-color: transparent;
}

.format-card.recommended:hover {
  border-color: transparent;
  box-shadow: none;
}

.ribbon {
  left: 50%;
  top: -1px;
  width: 160px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--red);
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%);
}

.format-icon {
  margin: 0 auto 8px;
}

.format-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.format-card:hover img {
  transform: scale(1.018);
  filter: brightness(1.08) contrast(1.04);
}

.voice-icon {
  border: 4px solid #e9edf2;
  border-top: 0;
  border-radius: 0 0 28px 28px;
  width: 34px;
  height: 60px;
}

.voice-icon::before,
.voice-icon::after {
  content: "";
  position: absolute;
  background: #e9edf2;
}

.voice-icon::before {
  width: 4px;
  height: 28px;
  left: 14px;
  bottom: -26px;
}

.voice-icon::after {
  width: 42px;
  height: 4px;
  left: -8px;
  bottom: -26px;
}

.video-icon {
  border: 4px solid #e9edf2;
  width: 56px;
  height: 44px;
  border-radius: 3px;
}

.video-icon::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: -14px;
  height: 13px;
  border: 4px solid #e9edf2;
  transform: rotate(-10deg);
}

.format-card h3 {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.format-card.recommended h3 {
  color: var(--red);
}

.format-card strong {
  display: block;
  margin-bottom: 10px;
  color: #c7cdd5;
  font-size: 16px;
}

.format-card p {
  color: #b6bdc6;
  line-height: 1.42;
  font-size: 14px;
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 5px;
  color: #70beff;
  font-size: 14px;
  transition: background 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.format-card:hover .pill {
  transform: translateY(-1px);
  background: rgba(20, 151, 255, 0.1);
  box-shadow: 0 0 14px rgba(20, 151, 255, 0.16);
}

.pill.red {
  border-color: var(--red);
  color: #ff3939;
}

.format-card:hover .pill.red {
  background: rgba(255, 23, 23, 0.11);
  box-shadow: 0 0 14px rgba(255, 23, 23, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.fee {
  margin: 18px 0 12px;
  color: #b6bdc6;
  text-align: center;
}

.center {
  margin-inline: auto;
}

.process {
  padding-top: 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.steps article {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.steps article:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.steps img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  height: auto;
  object-fit: cover;
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.steps article:hover img {
  transform: scale(1.015);
  filter: brightness(1.08) contrast(1.05);
}

.cta {
  min-height: 136px;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin: 16px 0 26px;
  border-radius: 8px;
  overflow: hidden;
}

.cta img {
  width: 100%;
  height: 136px;
  object-fit: cover;
}

.cta h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.16;
}

.cta h2::after {
  display: none;
}

.cta p {
  margin: 8px 0 0;
  color: #bfc6cf;
  font-size: 16px;
  line-height: 1.35;
}

.cta-actions {
  padding-right: 26px;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(140px, 0.8fr));
  gap: 28px;
  padding: 28px 0 30px;
  border-top: 1px solid var(--soft-line);
  color: #c6ccd4;
}

.site-footer .brand {
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand .payment-note {
  font-size: 14px;
}

.footer-brand .payment-shield {
  width: 30px;
  height: 34px;
}

.footer-nav,
.footer-seller,
.footer-contact,
.footer-social,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 9px;
  font-style: normal;
  font-size: 14px;
}

.site-footer strong {
  color: #f4f7fb;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  transition: color 180ms var(--ease-out), text-shadow 180ms var(--ease-out);
}

.site-footer a:hover {
  color: #8cc8ff;
  text-shadow: 0 0 12px rgba(20, 151, 255, 0.34);
}

.footer-legal {
  grid-column: 2 / -1;
  grid-template-columns: repeat(3, max-content);
  gap: 16px;
  color: #8f98a4;
  font-size: 13px;
}

.seller-page .site-header,
.seller-page main,
.seller-page .site-footer {
  width: min(1180px, calc(100% - 44px));
}

.seller-hero {
  min-height: 360px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 42px;
  padding: 18px 0 10px;
}

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

.seller-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 23, 23, 0.78);
  border-radius: 4px;
  color: #ffb3b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 23, 23, 0.08);
  box-shadow: 0 0 18px rgba(255, 23, 23, 0.12);
}

.seller-kicker::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--red);
}

.seller-hero h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: #f6f8fb;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.1),
    0 18px 34px rgba(0, 0, 0, 0.54);
}

.seller-hero p {
  max-width: 520px;
  margin: 14px 0 0;
  color: #c5ccd5;
  font-size: 17px;
  line-height: 1.38;
}

.seller-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}

.seller-hero-actions .btn {
  min-width: 178px;
}

.seller-hero-copy .payment-note {
  margin-top: 14px;
}

.seller-hero-visual {
  min-height: 335px;
  position: relative;
  display: grid;
  align-items: end;
  justify-items: end;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 42%, rgba(255, 23, 23, 0.32), transparent 22%),
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.64)),
    #05070a;
}

.seller-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 6, 0.88), transparent 48%),
    radial-gradient(circle at 80% 33%, rgba(255, 23, 23, 0.36), transparent 14%);
  pointer-events: none;
}

.seller-hero-visual::after {
  content: "";
  position: absolute;
  right: 46px;
  top: 96px;
  width: 260px;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, #ff1717 28%, #ffeded 50%, #ff1717 72%, transparent);
  box-shadow:
    0 0 16px rgba(255, 23, 23, 0.82),
    0 0 54px rgba(255, 23, 23, 0.45);
  transform: skewX(-10deg);
}

.seller-hero-visual img {
  width: min(620px, 92%);
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.82;
  filter: brightness(0.62) contrast(1.18) saturate(0.88);
  transform: scaleX(-1) translateX(-4%);
}

.seller-hero-glass {
  position: absolute;
  right: 34px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 18px;
  min-width: 220px;
  padding: 22px 26px;
  border: 1px solid rgba(20, 151, 255, 0.72);
  border-right-color: rgba(255, 23, 23, 0.62);
  border-radius: 16px;
  background: rgba(4, 8, 13, 0.62);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 28px rgba(20, 151, 255, 0.14),
    0 0 24px rgba(255, 23, 23, 0.12);
}

.seller-hero-glass span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #eef4fa;
  font-size: 16px;
}

.seller-hero-glass svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seller-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 10px;
  padding: 16px 20px;
  border: 1px solid var(--soft-line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 15% 0, rgba(20, 151, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.seller-process article {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 14px;
  padding: 0 18px;
  transition:
    transform 220ms var(--ease-out),
    filter 220ms var(--ease-out);
}

.seller-process article:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -5px;
  top: 50%;
  color: #aab4bf;
  font-size: 34px;
  transform: translateY(-54%);
}

.seller-process article:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.seller-step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 151, 255, 0.78);
  border-radius: 50%;
  color: #f7fbff;
  box-shadow: 0 0 18px rgba(20, 151, 255, 0.22);
}

.seller-step-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #d8e8f8;
}

.seller-step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seller-process h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.seller-process p {
  margin: 0;
  color: #b7c0cb;
  font-size: 13px;
  line-height: 1.34;
}

.seller-formats {
  padding: 8px 0 10px;
}

.seller-section-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 12px;
}

.seller-section-head h2 {
  margin-bottom: 4px;
  font-size: clamp(26px, 3vw, 34px);
}

.seller-section-head p {
  max-width: 710px;
  margin: 0 auto;
  color: #c3cbd4;
  font-size: 16px;
  line-height: 1.35;
}

.seller-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: 34px;
}

.seller-format-card {
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  transition:
    transform 280ms var(--ease-out),
    filter 280ms var(--ease-out);
}

.seller-format-card:hover,
.seller-format-card:focus-visible {
  transform: translateY(-6px) scale(1.015);
  filter:
    brightness(1.08)
    drop-shadow(0 0 28px rgba(20, 151, 255, 0.16))
    drop-shadow(0 0 22px rgba(255, 23, 23, 0.1));
  outline: 0;
}

.seller-format-card img {
  width: 100%;
  max-width: 340px;
  height: auto;
}

.seller-bottom-cta {
  min-height: 124px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: 28px;
  margin: 10px 0 28px;
  padding: 20px 28px;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 13% 50%, rgba(20, 151, 255, 0.14), transparent 18%),
    radial-gradient(circle at 86% 50%, rgba(255, 23, 23, 0.12), transparent 20%),
    rgba(255, 255, 255, 0.025);
}

.seller-speed-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 151, 255, 0.65);
  border-radius: 50%;
  color: #dfeeff;
  box-shadow:
    inset 0 0 20px rgba(20, 151, 255, 0.12),
    0 0 20px rgba(20, 151, 255, 0.16);
}

.seller-speed-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seller-bottom-cta h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.seller-bottom-cta p {
  margin: 8px 0 0;
  color: #bec7d1;
}

.seller-cta-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.seller-form-cta-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 520px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 56px;
  border: 1px solid rgba(255, 70, 90, 0.72);
  border-radius: 999px;
  color: #f7f9fb;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(8, 14, 22, 0.98), rgba(18, 20, 28, 0.95));
  box-shadow:
    0 0 34px rgba(255, 24, 45, 0.22),
    0 0 24px rgba(0, 145, 255, 0.12),
    inset 0 0 30px rgba(255, 255, 255, 0.035);
  transition:
    transform 280ms var(--ease-out),
    border-color 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    background 280ms var(--ease-out);
}

.seller-form-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.18;
  filter: blur(10px);
  background:
    linear-gradient(90deg, rgba(255, 24, 45, 0.75) 0%, rgba(255, 24, 45, 0.22) 18%, rgba(0, 145, 255, 0.28) 52%, rgba(255, 24, 45, 0.55) 100%);
  transition:
    opacity 280ms var(--ease-out),
    filter 280ms var(--ease-out);
}

.seller-form-cta-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 24, 45, 0.75), rgba(0, 145, 255, 0.55), rgba(255, 24, 45, 0.75));
  padding: 1px;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.85;
}

.seller-form-cta-text {
  position: relative;
  z-index: 2;
  color: #f5f7fa;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.55);
}

.seller-form-cta-arrow {
  position: relative;
  z-index: 2;
  color: #ff5a66;
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 300;
  transition:
    transform 280ms var(--ease-out),
    color 280ms var(--ease-out),
    text-shadow 280ms var(--ease-out);
}

.seller-form-cta-button:hover,
.seller-form-cta-button:focus-visible {
  transform: translateY(-3px) scale(1.018);
  border-color: rgba(255, 88, 105, 1);
  box-shadow:
    0 0 46px rgba(255, 24, 45, 0.32),
    0 0 32px rgba(0, 145, 255, 0.18),
    inset 0 0 36px rgba(255, 255, 255, 0.05);
  outline: 0;
}

.seller-form-cta-button:hover::before,
.seller-form-cta-button:focus-visible::before {
  opacity: 0.32;
  filter: blur(14px);
}

.seller-form-cta-button:hover .seller-form-cta-arrow,
.seller-form-cta-button:focus-visible .seller-form-cta-arrow {
  transform: translateX(6px);
  color: #ff6b76;
  text-shadow: 0 0 18px rgba(255, 35, 55, 0.45);
}

.seller-form-cta-button:active {
  transform: translateY(-1px) scale(0.995);
}

.seller-form-section {
  padding: 4px 0 34px;
  scroll-margin-top: 92px;
}

.seller-form-section:target .seller-form {
  animation: sellerFormPulse 1100ms var(--ease-out);
}

@keyframes sellerFormPulse {
  0%,
  100% {
    box-shadow: none;
  }
  35% {
    box-shadow:
      0 0 38px rgba(20, 151, 255, 0.18),
      0 0 34px rgba(255, 23, 23, 0.1);
  }
}

.seller-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0, rgba(20, 151, 255, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.025);
}

.seller-form label {
  display: grid;
  gap: 8px;
  color: #dce4ed;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.seller-form input,
.seller-form select,
.seller-form textarea {
  width: 100%;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: rgba(2, 6, 10, 0.86);
  color: #f4f7fb;
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
  outline: 0;
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.seller-form textarea {
  resize: vertical;
}

.seller-form input:focus,
.seller-form select:focus,
.seller-form textarea:focus {
  border-color: rgba(20, 151, 255, 0.75);
  background: rgba(4, 10, 16, 0.95);
  box-shadow: 0 0 22px rgba(20, 151, 255, 0.14);
}

.seller-form select.is-autofilled {
  animation: sellerFormatAutofill 1200ms var(--ease-out);
}

@keyframes sellerFormatAutofill {
  0%,
  100% {
    border-color: var(--soft-line);
    box-shadow: none;
  }
  32% {
    border-color: rgba(20, 151, 255, 0.86);
    box-shadow:
      0 0 24px rgba(20, 151, 255, 0.22),
      0 0 18px rgba(255, 23, 23, 0.08);
  }
}

.seller-form-message,
.seller-submit {
  grid-column: 1 / -1;
}

.seller-submit {
  justify-self: center;
  min-width: 260px;
  margin-top: 8px;
}

.how-page .site-header,
.how-page main,
.how-page .site-footer {
  width: min(1180px, calc(100% - 44px));
}

.how-page main {
  position: relative;
}

.how-page main::before {
  content: "";
  position: fixed;
  inset: 70px 0 auto;
  height: 78vh;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 72%, rgba(20, 151, 255, 0.22), transparent 24%),
    radial-gradient(circle at 92% 72%, rgba(255, 23, 23, 0.2), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.how-hero {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 42px;
  padding: 18px 0 16px;
}

.how-hero-copy {
  position: relative;
  padding-left: 42px;
}

.how-hero h1 {
  margin: 0;
  max-width: 490px;
  color: transparent;
  background:
    linear-gradient(180deg, #fff 0%, #d8e0e8 38%, #adb8c4 72%, #fbfcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(48px, 5.8vw, 78px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.5);
}

.how-hero h1::after {
  content: "";
  display: inline-block;
  width: 0.72em;
  height: 0.08em;
  margin-left: 0.08em;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 23, 23, 0.5);
  transform: translateY(-0.08em);
}

.how-hero p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #c6cdd6;
  font-size: 20px;
  line-height: 1.32;
}

.how-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.how-hero-actions .btn {
  min-width: 190px;
}

.how-hero-actions .btn span,
.how-bottom-cta .btn span {
  transition: transform 180ms var(--ease-out);
}

.how-hero-actions .btn:hover span,
.how-bottom-cta .btn:hover span {
  transform: translateX(5px);
}

.how-hero-visual {
  min-height: 300px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.48fr;
  align-items: stretch;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 42%, rgba(255, 23, 23, 0.2), transparent 24%),
    radial-gradient(circle at 58% 30%, rgba(20, 151, 255, 0.14), transparent 22%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.how-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(2, 4, 6, 0.5)),
    url("/assets/hero-car.png") right center / 48% auto no-repeat;
  opacity: 0.42;
  filter: brightness(0.72) contrast(1.16);
  pointer-events: none;
}

.how-video-card,
.how-owner-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 8, 13, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.how-video-card {
  min-height: 270px;
}

.how-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) contrast(1.12);
}

.how-video-card strong,
.how-video-card a {
  position: absolute;
  z-index: 2;
  left: 16px;
}

.how-video-card strong {
  bottom: 38px;
  color: #fff;
  font-size: 21px;
}

.how-video-card a {
  bottom: 16px;
  color: #8fcfff;
  font-size: 13px;
}

.how-video-card:hover .play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 30px rgba(20, 151, 255, 0.32);
}

.how-owner-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.how-owner-card > span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-owner-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.how-owner-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 151, 255, 0.6);
  border-radius: 50%;
  background: rgba(20, 151, 255, 0.14);
}

.how-owner-row strong,
.how-owner-row small {
  display: block;
}

.how-owner-row small {
  color: #b8c1cc;
}

.how-owner-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cdd5de;
  font-size: 13px;
}

.how-owner-card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.how-owner-card li::after {
  content: "✓";
  color: var(--blue);
}

.how-hero-mark {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 0;
  width: 116px;
  opacity: 0.65;
  mix-blend-mode: screen;
}

.how-tabs {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: -4px auto 22px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.028);
}

.how-tabs a {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 52px;
  color: #aeb7c2;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.how-tabs a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transition: transform 180ms var(--ease-out);
}

.how-tabs a:hover,
.how-tabs a.is-active {
  color: #f5f8fb;
  background: rgba(20, 151, 255, 0.06);
}

.how-tabs a.is-active::after,
.how-tabs a:hover::after {
  transform: scaleX(1);
}

.how-process-section {
  scroll-margin-top: 88px;
  padding: 0 0 20px;
}

.how-process-section .section-head {
  margin-bottom: 14px;
}

.how-process-section .section-head h2,
.how-why .section-head h2,
.how-bottom-cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}

.how-process-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.how-text-step {
  display: grid;
  align-content: start;
  gap: 12px;
}

.how-text-step::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(20, 151, 255, 0.34);
}

.how-text-step:has(.how-step-number.red)::before {
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 23, 23, 0.32);
}

.how-step-number {
  color: #8bd3ff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-shadow: 0 0 18px rgba(20, 151, 255, 0.22);
}

.how-step-number.red {
  color: #ff6c6c;
  text-shadow: 0 0 18px rgba(255, 23, 23, 0.22);
}

.how-process-grid article,
.how-why article {
  position: relative;
  min-height: 132px;
  padding: 24px 18px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  transition:
    transform 230ms var(--ease-out),
    border-color 230ms var(--ease-out),
    box-shadow 230ms var(--ease-out);
}

.how-process-grid .how-image-step {
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.how-image-step img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(20, 151, 255, 0.08));
  transition:
    transform 260ms var(--ease-out),
    filter 260ms var(--ease-out);
}

.how-process-grid .how-image-step:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}

.how-image-step:hover img {
  transform: scale(1.018);
  filter: drop-shadow(0 0 26px rgba(20, 151, 255, 0.16));
}

.how-process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.how-process-grid .how-image-step:not(:last-child)::after {
  display: none;
}

.how-process-grid article:hover,
.how-why article:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 151, 255, 0.42);
  box-shadow:
    0 0 22px rgba(20, 151, 255, 0.1),
    0 16px 42px rgba(0, 0, 0, 0.18);
}

.how-step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(20, 151, 255, 0.68);
  border-radius: 50%;
  color: #58bdff;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.12), transparent 26%),
    radial-gradient(circle, rgba(20, 151, 255, 0.18), rgba(20, 151, 255, 0.055) 58%, rgba(0, 0, 0, 0.2));
  box-shadow:
    0 0 22px rgba(20, 151, 255, 0.2),
    inset 0 0 18px rgba(20, 151, 255, 0.08);
  transition:
    color 230ms var(--ease-out),
    border-color 230ms var(--ease-out),
    box-shadow 230ms var(--ease-out),
    transform 230ms var(--ease-out);
}

.how-step-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.how-step-icon.red {
  border-color: rgba(255, 23, 23, 0.7);
  color: #ff5757;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.11), transparent 26%),
    radial-gradient(circle, rgba(255, 23, 23, 0.18), rgba(255, 23, 23, 0.055) 58%, rgba(0, 0, 0, 0.22));
  box-shadow:
    0 0 22px rgba(255, 23, 23, 0.2),
    inset 0 0 18px rgba(255, 23, 23, 0.08);
}

.how-step-icon svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 5px rgba(20, 151, 255, 0.32))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
}

.how-step-icon.red svg {
  filter:
    drop-shadow(0 0 5px rgba(255, 23, 23, 0.34))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08));
}

.how-process-grid article:hover .how-step-icon,
.how-why article:hover .how-step-icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(87, 190, 255, 0.9);
  color: #8bd3ff;
  box-shadow:
    0 0 30px rgba(20, 151, 255, 0.26),
    inset 0 0 22px rgba(20, 151, 255, 0.11);
}

.how-process-grid article:hover .how-step-icon.red,
.how-why article:hover .how-step-icon.red {
  border-color: rgba(255, 78, 78, 0.95);
  color: #ff7777;
  box-shadow:
    0 0 30px rgba(255, 23, 23, 0.28),
    inset 0 0 22px rgba(255, 23, 23, 0.1);
}

.how-process-grid h3,
.how-why h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.18;
  text-align: left;
  text-transform: uppercase;
}

.how-process-grid p,
.how-why p {
  margin: 0;
  color: #bdc6d0;
  font-size: 14px;
  line-height: 1.38;
  text-align: left;
}

.how-why {
  padding: 2px 0 18px;
}

.how-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.how-why article {
  min-height: 106px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.how-why .how-step-icon {
  margin: 0;
}

.how-why h3,
.how-why p {
  text-align: left;
}

.how-why-list {
  display: grid;
  gap: 0;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-why-list article {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  min-height: 0;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.how-why-list article:last-child {
  border-bottom: 0;
}

.how-why-list article:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.how-why-label {
  width: fit-content;
  padding: 12px 16px;
  border-left: 4px solid var(--blue);
  color: #8bd3ff;
  background: linear-gradient(90deg, rgba(20, 151, 255, 0.18), transparent);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(20, 151, 255, 0.28);
}

.how-why-label.red {
  border-left-color: var(--red);
  color: #ff7878;
  background: linear-gradient(90deg, rgba(255, 23, 23, 0.12), transparent);
}

.how-why-list h3 {
  margin: 0 0 8px;
  color: #f8fbff;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: left;
  text-transform: none;
}

.how-why-list p {
  max-width: 760px;
  margin: 0;
  color: #bcc6d0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  text-align: left;
}

.how-bottom-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 18px 0 28px;
  text-align: center;
}

.how-bottom-cta h2 {
  margin: 0;
  color: #f8fbff;
  letter-spacing: 0.05em;
}

.how-bottom-cta div {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.brand-text {
  gap: 12px;
}

.brand-word-text {
  display: grid;
  color: #f5f7fa;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: 30px;
  letter-spacing: 0.28em;
  line-height: 0.92;
}

.brand-name span {
  color: var(--blue);
  text-shadow: 0 0 16px rgba(20, 151, 255, 0.38);
}

.brand-word-text small {
  margin-top: 6px;
  color: #b9c0ca;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.48em;
}

.nav .is-active {
  color: #9bd2ff;
  opacity: 1;
  text-shadow: 0 0 14px rgba(20, 151, 255, 0.45);
}

.nav .is-active::after {
  transform: scaleX(1);
}

.buyer-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
  padding: 54px 0 36px;
}

.buyer-hero-copy {
  position: relative;
  padding-left: 42px;
}

.buyer-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(40px, 3.9vw, 64px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: transparent;
  background:
    linear-gradient(180deg, #fff 0%, #dbe2ea 38%, #aeb8c4 72%, #f6f8fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 20px rgba(178, 218, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.45);
}

.buyer-hero h1 span {
  display: block;
  white-space: nowrap;
}

.buyer-hero p {
  max-width: 500px;
  margin: 22px 0 28px;
  color: #c8ced7;
  font-size: 18px;
  line-height: 1.45;
}

.hero-light-bars {
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 196px;
  display: grid;
  gap: 12px;
}

.hero-light-bar {
  position: relative;
  overflow: hidden;
  width: 4px;
  border-radius: 999px;
  opacity: 0.95;
  animation: heroBarPulse 4.8s ease-in-out infinite;
}

.hero-light-bar::after {
  content: "";
  position: absolute;
  inset: -70% 0 auto;
  height: 42%;
  border-radius: inherit;
  animation: heroBarSweep 5.6s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.hero-light-bar-blue {
  background: linear-gradient(180deg, transparent, var(--blue) 20%, #7ed1ff 54%, var(--blue) 86%, transparent);
  box-shadow: 0 0 16px rgba(20, 151, 255, 0.55);
}

.hero-light-bar-blue::after {
  background: linear-gradient(180deg, transparent, #fff, transparent);
  box-shadow: 0 0 14px rgba(126, 209, 255, 0.8);
}

.hero-light-bar-red {
  background: linear-gradient(180deg, transparent, var(--red) 18%, #ff7b7b 52%, var(--red) 86%, transparent);
  box-shadow: 0 0 14px rgba(255, 23, 23, 0.42);
  animation-delay: 1.2s;
}

.hero-light-bar-red::after {
  background: linear-gradient(180deg, transparent, #ffd1d1, transparent);
  box-shadow: 0 0 12px rgba(255, 78, 78, 0.68);
  animation-delay: 1.2s;
}

@keyframes heroBarPulse {
  0%,
  100% {
    filter: brightness(0.92);
    opacity: 0.75;
  }
  50% {
    filter: brightness(1.2);
    opacity: 1;
  }
}

@keyframes heroBarSweep {
  0%,
  58% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(390%);
  }
}

.buyer-hero-btn span,
.filter-reset,
.card-link span {
  transition: transform 180ms var(--ease-out);
}

.buyer-hero-btn:hover span,
.catalog-card:hover .card-link span {
  transform: translateX(4px);
}

.buyer-hero-switcher {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hero-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(20, 151, 255, 0.11), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  transition:
    transform 380ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    filter 320ms var(--ease-out);
}

.hero-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.08);
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1), filter 320ms var(--ease-out), opacity 320ms var(--ease-out);
}

.hero-video-card::after,
.catalog-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.hero-video-featured {
  grid-row: 1 / span 2;
  min-height: 420px;
}

.hero-video-preview {
  min-height: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

.hero-video-card:hover,
.hero-video-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(20, 151, 255, 0.62);
  box-shadow:
    0 0 32px rgba(20, 151, 255, 0.18),
    0 28px 82px rgba(0, 0, 0, 0.42);
  outline: 0;
}

.hero-video-card:hover img,
.hero-video-card:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.9) contrast(1.08);
}

.hero-video-info {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 5px;
  text-align: left;
}

.hero-video-info strong {
  color: #fff;
  font-size: 22px;
}

.hero-video-info span {
  color: #c8d0da;
  font-size: 14px;
}

.hero-video-preview .hero-video-info {
  left: 13px;
  right: 12px;
  bottom: 12px;
}

.hero-video-preview .hero-video-info strong {
  font-size: 16px;
}

.hero-video-preview .hero-video-info span {
  font-size: 12px;
}

.hero-play {
  animation: heroPlayBreath 3.6s ease-in-out infinite;
}

.hero-video-card:hover .play,
.hero-video-card:focus-visible .play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(20, 151, 255, 0.2);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.08),
    0 0 26px rgba(20, 151, 255, 0.42);
}

@keyframes heroPlayBreath {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(20, 151, 255, 0.04),
      0 0 18px rgba(20, 151, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(20, 151, 255, 0.08),
      0 0 30px rgba(20, 151, 255, 0.32);
  }
}

.catalog-section {
  scroll-margin-top: 90px;
  padding: 42px 0 24px;
}

.buyer-problem {
  padding: 30px 0 20px;
}

.buyer-problem-head {
  max-width: 850px;
  margin-bottom: 22px;
}

.buyer-problem-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  text-transform: uppercase;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.4);
}

.buyer-problem-head p {
  max-width: 760px;
  margin: 0;
  color: #c2c9d2;
  font-size: 18px;
  line-height: 1.45;
}

.buyer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.buyer-benefit-card {
  min-height: 0;
  display: block;
  aspect-ratio: 1086 / 1448;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition:
    transform 250ms var(--ease-out),
    filter 250ms var(--ease-out);
}

.buyer-benefit-card:hover,
.buyer-benefit-card:focus-within {
  transform: translateY(-5px) scale(1.015);
  filter: brightness(1.08);
}

.buyer-benefit-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.catalog-head {
  margin-bottom: 18px;
}

.catalog-head span {
  color: #8cc8ff;
  font-size: 15px;
}

.catalog-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.catalog-filters label {
  display: grid;
  gap: 6px;
}

.catalog-filters span {
  color: #929aa6;
  font-size: 12px;
  text-transform: uppercase;
}

.catalog-filters select,
.filter-reset {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(3, 7, 11, 0.86);
  color: #eef3f8;
  font: inherit;
  transition:
    border-color 190ms var(--ease-out),
    box-shadow 190ms var(--ease-out),
    background 190ms var(--ease-out),
    transform 190ms var(--ease-out);
}

.catalog-filters select {
  padding: 0 12px;
}

.catalog-filters select:hover,
.catalog-filters select:focus,
.filter-reset:hover,
.filter-reset:focus-visible {
  border-color: rgba(20, 151, 255, 0.68);
  background: rgba(8, 16, 24, 0.95);
  box-shadow: 0 0 16px rgba(20, 151, 255, 0.12);
  outline: 0;
}

.filter-reset {
  align-self: end;
  cursor: pointer;
}

.filter-reset:hover {
  transform: translateY(-1px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 188px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transition:
    transform 250ms var(--ease-out),
    border-color 250ms var(--ease-out),
    box-shadow 250ms var(--ease-out),
    background 250ms var(--ease-out);
}

.catalog-card:hover,
.catalog-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(20, 151, 255, 0.55);
  box-shadow:
    0 0 28px rgba(20, 151, 255, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 0 24px rgba(255, 255, 255, 0.03);
  outline: 0;
}

.catalog-card-media {
  position: relative;
  overflow: hidden;
  background: #10151b;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out), filter 420ms var(--ease-out);
}

.catalog-card:hover .catalog-card-media img,
.catalog-card:focus-visible .catalog-card-media img {
  transform: scale(1.03);
  filter: brightness(0.9) contrast(1.06);
}

.catalog-card:hover .play,
.catalog-card:focus-visible .play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 0 28px rgba(20, 151, 255, 0.25);
}

.catalog-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.catalog-card h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
}

.catalog-card p {
  margin: 0;
  color: #aeb6c0;
  line-height: 1.35;
}

.catalog-card strong {
  color: #fff;
  font-size: 23px;
}

.catalog-card ul {
  display: grid;
  gap: 6px;
  margin: 2px 0 4px;
  padding: 0;
  color: #c4cbd4;
  font-size: 14px;
  list-style: none;
}

.catalog-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(20, 151, 255, 0.45);
}

.card-link {
  color: #8cc8ff;
  font-weight: 700;
  transition: color 180ms var(--ease-out), text-shadow 180ms var(--ease-out);
}

.catalog-card:hover .card-link,
.catalog-card:focus-visible .card-link {
  color: #2ea8ff;
  text-shadow: 0 0 14px rgba(20, 151, 255, 0.32);
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 20px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: #c8ced7;
  background: rgba(255, 255, 255, 0.025);
}

.empty-state[hidden] {
  display: none;
}

.buyer-info {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
}

.buyer-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0 34px;
  padding: 18px 20px;
}

.buyer-info p {
  margin: 0;
  color: #c7ced7;
  line-height: 1.45;
}

.car-detail-placeholder {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 34px;
  padding: 44px 0;
}

.car-detail-placeholder > .card-link {
  grid-column: 1 / -1;
}

.car-detail-placeholder h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
  text-transform: uppercase;
}

.car-detail-placeholder p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #c4cbd4;
  font-size: 18px;
  line-height: 1.45;
}

.why-page main {
  padding-bottom: 18px;
}

.why-hero {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding: 46px 0 32px;
  border-bottom: 1px solid var(--soft-line);
  position: relative;
}

.why-hero::before {
  content: "";
  position: absolute;
  inset: 28px -80px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 151, 255, 0.16), transparent 66%),
    radial-gradient(circle at 72% 72%, rgba(255, 23, 38, 0.11), transparent 48%);
  filter: blur(6px);
  opacity: 0.8;
  pointer-events: none;
}

.why-hero > * {
  position: relative;
  z-index: 1;
}

.why-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8cd0ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-hero .eyebrow::before,
.why-hero .eyebrow::after {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
}

.why-hero .eyebrow::before {
  background: var(--blue);
  box-shadow: 0 0 14px rgba(20, 151, 255, 0.45);
}

.why-hero .eyebrow::after {
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 23, 38, 0.35);
}

.why-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #f5f8fb;
  font-size: clamp(42px, 4.9vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #dce4eb 42%, #9aa7b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.08);
}

.why-hero-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 23, 38, 0.1), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(20, 151, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.026);
}

.why-hero-panel p {
  max-width: 560px;
  margin: 0;
  color: #c7ced8;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.45;
}

.why-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-hero-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(20, 151, 255, 0.3);
  border-radius: 999px;
  color: #cfeeff;
  background: rgba(20, 151, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-hero-signals span:nth-child(3) {
  border-color: rgba(255, 23, 38, 0.3);
  color: #ffd1d5;
  background: rgba(255, 23, 38, 0.055);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 28px 0 20px;
}

.why-points article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(20, 151, 255, 0.09), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.025);
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.why-points article:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 151, 255, 0.48);
  background:
    linear-gradient(160deg, rgba(20, 151, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 0 24px rgba(20, 151, 255, 0.12),
    inset 0 0 32px rgba(255, 255, 255, 0.035);
}

.why-points span {
  color: #4db8ff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 16px rgba(20, 151, 255, 0.32);
}

.why-points article:nth-child(4) span {
  color: #ff5962;
  text-shadow: 0 0 16px rgba(255, 23, 38, 0.3);
}

.why-points h2 {
  min-height: 52px;
  margin: 0;
  color: #f4f7fa;
  font-size: 20px;
  line-height: 1.18;
  text-transform: uppercase;
}

.why-points p {
  margin: 0;
  color: #bdc6d1;
  font-size: 16px;
  line-height: 1.48;
}

.why-compare {
  padding: 22px 0 28px;
}

.why-compare .section-head {
  margin-bottom: 16px;
}

.why-compare .section-head h2 {
  max-width: 760px;
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  text-transform: uppercase;
}

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

.why-compare article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(4, 7, 10, 0.72);
}

.why-compare article.is-highlighted {
  border-color: rgba(20, 151, 255, 0.42);
  background:
    radial-gradient(circle at 16% 0%, rgba(20, 151, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(4, 7, 10, 0.74);
  box-shadow:
    0 0 28px rgba(20, 151, 255, 0.1),
    inset 0 0 32px rgba(20, 151, 255, 0.045);
}

.why-compare article > span {
  color: #f3f6f9;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-compare ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.why-compare li {
  display: flex;
  gap: 11px;
  color: #c4ccd6;
  font-size: 17px;
  line-height: 1.35;
}

.why-compare li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 0.5em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.why-compare .is-highlighted li::before {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(20, 151, 255, 0.5);
}

.why-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 6px 0 0;
  padding: 22px 24px;
  border: 1px solid rgba(20, 151, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 151, 255, 0.11), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.why-note p {
  margin: 0;
  color: #c9d1db;
  font-size: 17px;
  line-height: 1.45;
}

.why-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 38px 0 44px;
  text-align: center;
}

.why-cta h2 {
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
}

.why-cta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-page main {
  padding-bottom: 34px;
}

.contact-hero {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 42px;
  padding: 54px 0 36px;
  border-bottom: 1px solid var(--soft-line);
}

.contact-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8cd0ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero .eyebrow::before,
.contact-hero .eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
}

.contact-hero .eyebrow::before {
  background: var(--blue);
  box-shadow: 0 0 14px rgba(20, 151, 255, 0.42);
}

.contact-hero .eyebrow::after {
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 23, 38, 0.28);
}

.contact-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #f5f8fb;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #dce4eb 48%, #9aa7b4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero p {
  max-width: 630px;
  margin: 22px 0 0;
  color: #c7ced8;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
}

.contact-direct {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(20, 151, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
}

.contact-direct a,
.contact-direct p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f3f6f9;
  font-size: 20px;
  font-weight: 800;
}

.contact-direct p {
  border-bottom: 0;
}

.contact-direct span,
.contact-direct small {
  color: #91a2b4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-direct small {
  max-width: 320px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 18px;
  padding: 30px 0 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(20, 151, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
}

.contact-form .section-head {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}

.contact-form .section-head h2 {
  margin: 0;
  color: #f4f7fa;
  font-size: clamp(28px, 3.2vw, 42px);
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #9eb0c2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  color: #f5f7fa;
  background: rgba(1, 5, 9, 0.64);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.contact-form textarea {
  min-height: 144px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(20, 151, 255, 0.68);
  background: rgba(4, 10, 16, 0.82);
  box-shadow: 0 0 18px rgba(20, 151, 255, 0.13);
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-side {
  display: grid;
  gap: 12px;
}

.contact-side article {
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(4, 7, 10, 0.7);
  transition:
    transform 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

.contact-side article:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 151, 255, 0.4);
  box-shadow: 0 0 20px rgba(20, 151, 255, 0.1);
}

.contact-side span {
  color: #48b7ff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.contact-side article:nth-child(3) span {
  color: #ff5b65;
}

.contact-side h2 {
  margin: 0;
  color: #f5f7fa;
  font-size: 20px;
  text-transform: uppercase;
}

.contact-side p {
  margin: 0;
  color: #c2cbd5;
  font-size: 15px;
  line-height: 1.45;
}

.lead-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 44px;
}

.lead-contact-copy,
.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(20, 151, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
}

.lead-contact-copy {
  min-height: 100%;
  padding: 28px;
}

.lead-contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8cd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-contact-copy .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(20, 151, 255, 0.45);
}

.lead-contact-copy h2 {
  margin: 18px 0 14px;
  color: #f5f7fa;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  text-transform: uppercase;
}

.lead-contact-copy p {
  margin: 0 0 16px;
  color: #c5ced8;
  font-size: 17px;
  line-height: 1.45;
}

.lead-car-ref {
  display: inline-flex;
  padding: 11px 13px;
  border: 1px solid rgba(20, 151, 255, 0.28);
  border-radius: 999px;
  background: rgba(20, 151, 255, 0.06);
  color: #d9f0ff !important;
  font-size: 13px !important;
  font-weight: 800;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: #9eb0c2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  color: #f5f7fa;
  background: rgba(1, 5, 9, 0.64);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.lead-form textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(20, 151, 255, 0.68);
  background: rgba(4, 10, 16, 0.82);
  box-shadow: 0 0 18px rgba(20, 151, 255, 0.13);
}

.lead-form-wide {
  grid-column: 1 / -1;
}

.lead-consent {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
  color: #c3ccd6 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.lead-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.lead-success,
.lead-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.45;
}

.lead-success {
  border: 1px solid rgba(20, 151, 255, 0.32);
  color: #d9f0ff;
  background: rgba(20, 151, 255, 0.08);
}

.lead-error {
  border: 1px solid rgba(255, 23, 38, 0.32);
  color: #ffd6da;
  background: rgba(255, 23, 38, 0.08);
}

.reservation-payment {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(20, 151, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 23, 38, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(20, 151, 255, 0.09), rgba(255, 255, 255, 0.015));
}

.reservation-payment div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.reservation-label {
  color: #8cd0ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reservation-payment strong {
  color: #f7f9fb;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  text-shadow: 0 0 18px rgba(20, 151, 255, 0.18);
}

.reservation-payment p {
  margin: 0;
  color: #c5ced8;
  font-size: 15px;
  line-height: 1.45;
}

.reservation-terms {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
  color: #c3ccd6 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.reservation-terms input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.reservation-success,
.reservation-error {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.45;
}

.reservation-success {
  border: 1px solid rgba(20, 151, 255, 0.32);
  color: #d9f0ff;
  background: rgba(20, 151, 255, 0.08);
}

.reservation-error {
  border: 1px solid rgba(255, 23, 38, 0.32);
  color: #ffd6da;
  background: rgba(255, 23, 38, 0.08);
}

.admin-page main {
  padding-bottom: 42px;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  padding: 46px 0 28px;
  border-bottom: 1px solid var(--soft-line);
}

.admin-hero .eyebrow {
  color: #8cd0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-hero h1 {
  margin: 12px 0;
  color: #f5f7fa;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
  text-transform: uppercase;
}

.admin-hero p {
  max-width: 720px;
  margin: 0;
  color: #c7ced8;
  font-size: 17px;
  line-height: 1.45;
}

.admin-login-page {
  min-height: 100vh;
}

.admin-login {
  width: min(520px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-content: center;
  gap: 26px;
}

.admin-login-brand {
  justify-content: center;
}

.admin-login-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(20, 151, 255, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(10, 22, 34, 0.88), rgba(3, 7, 11, 0.96)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 34px rgba(20, 151, 255, 0.12);
}

.admin-login-card h1,
.admin-login-card p {
  margin: 0;
}

.admin-login-card h1 {
  color: #f5f7fa;
  font-size: 36px;
  text-transform: uppercase;
}

.admin-login-card p {
  color: #b8c4d1;
  line-height: 1.45;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: #9eb0c2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-login-card input {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  color: #f5f7fa;
  background: rgba(1, 5, 9, 0.72);
  outline: none;
}

.admin-login-card input:focus {
  border-color: rgba(20, 151, 255, 0.7);
  box-shadow: 0 0 18px rgba(20, 151, 255, 0.16);
}

.admin-filters {
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr);
  gap: 12px;
  padding: 22px 0;
}

.admin-filters label {
  display: grid;
  gap: 8px;
  color: #9eb0c2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-filters input,
.admin-filters select,
.leads-table select {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 12px;
  color: #f5f7fa;
  background: rgba(1, 5, 9, 0.72);
  font: inherit;
  outline: none;
}

.leads-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  scrollbar-gutter: stable both-edges;
}

.leads-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
}

.leads-table th,
.leads-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.leads-table th:first-child,
.leads-table td:first-child {
  padding-left: 18px;
}

.leads-table th:last-child,
.leads-table td:last-child {
  padding-right: 18px;
}

.leads-table th {
  color: #8cd0ff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.leads-table td {
  color: #c8d0da;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.leads-table a {
  overflow-wrap: anywhere;
}

.leads-table tr {
  cursor: pointer;
  transition: background 160ms var(--ease-out);
}

.leads-table tr:hover {
  background: rgba(20, 151, 255, 0.055);
}

.lead-events {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(4, 7, 10, 0.7);
}

.lead-events h2,
.lead-events h3 {
  margin: 0 0 14px;
  color: #f5f7fa;
  text-transform: uppercase;
}

.lead-events p {
  margin: 0;
  color: #c4ccd6;
}

.lead-events ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.lead-events li {
  color: #c4ccd6;
}

.lead-events time,
.lead-events strong,
.lead-events span {
  display: block;
}

.lead-events strong {
  color: #8cd0ff;
}

.admin-test-mode {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 23, 38, 0.45);
  border-radius: 999px;
  color: #ff747d;
  background: rgba(255, 23, 38, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.shoot-reservation-actions {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(20, 151, 255, 0.18);
  border-radius: 8px;
  background: rgba(20, 151, 255, 0.035);
}

.shoot-reservation-actions h2 {
  margin: 0;
  color: #f5f7fa;
  font-size: 18px;
  text-transform: uppercase;
}

.shoot-reservation-actions div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shoot-reservation-actions button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 13px;
  color: #d9e6f2;
  background: rgba(1, 5, 9, 0.64);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.shoot-reservation-actions button:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 151, 255, 0.45);
  box-shadow: 0 0 16px rgba(20, 151, 255, 0.12);
}

.shoot-table tr.is-selected {
  background: rgba(20, 151, 255, 0.1);
}

.shoot-table {
  min-width: 1360px;
}

@media (max-width: 1050px) {
  .site-header {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .brand {
    min-width: auto;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
  }

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

  .featured-card {
    align-self: auto;
    top: 0;
    margin-bottom: 0;
  }

  .select-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .tag-row,
  .cars-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-grid,
  .cta {
    grid-template-columns: 1fr;
  }

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

  .main-choice-section {
    padding: 42px 0 48px;
  }

  .main-choice-container {
    gap: 20px;
  }

  .main-choice-button {
    height: 132px;
  }

  .main-choice-label {
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  .front-light,
  .rear-light {
    width: 145px;
  }

  .front-light-left,
  .rear-light-left {
    left: 20px;
  }

  .front-light-right,
  .rear-light-right {
    right: 20px;
  }

  .cta {
    min-height: 0;
    padding-bottom: 22px;
  }

  .cta img {
    height: 160px;
  }

  .cta-actions {
    padding: 0 24px;
  }

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

  .buyer-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .seller-hero {
    grid-template-columns: 1fr;
  }

  .seller-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .seller-process article:not(:last-child)::after {
    display: none;
  }

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

  .seller-format-card img {
    max-width: 330px;
  }

  .seller-bottom-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .seller-cta-actions {
    grid-column: 1 / -1;
  }

  .seller-form-cta-button {
    width: min(100%, 640px);
    min-width: 0;
  }

  .buyer-hero-switcher {
    min-height: 390px;
    grid-template-columns: 1fr 0.68fr;
  }

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

  .catalog-grid,
  .buyer-benefit-grid,
  .car-detail-placeholder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .how-hero-copy {
    max-width: 680px;
  }

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

  .how-process-grid article:not(:last-child)::after {
    display: none;
  }

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

  .why-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 42px;
  }

  .why-hero p {
    max-width: 720px;
  }

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

  .contact-hero,
  .contact-grid,
  .lead-contact,
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    display: grid;
    align-items: start;
  }

  .contact-hero {
    min-height: 0;
    gap: 24px;
    padding-top: 42px;
  }

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

@media (max-width: 680px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header > .btn {
    width: 100%;
  }

  .brand strong {
    font-size: 24px;
    letter-spacing: 8px;
  }

  .brand {
    min-width: 214px;
  }

  .brand-mark-img {
    width: 48px;
    height: 48px;
  }

  .brand-word-img {
    width: 154px;
    height: 38px;
  }

  .brand-name {
    font-size: 24px;
  }

  .nav {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding-left: 20px;
  }

  .accent-bars {
    height: 116px;
    border-top-width: 54px;
    border-bottom-width: 54px;
  }

  .featured-info,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .featured-info {
    padding: 14px;
  }

  .buyer-hero {
    padding-top: 24px;
    gap: 26px;
  }

  .buyer-hero-copy {
    padding-left: 20px;
  }

  .buyer-hero h1 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .hero-light-bars {
    height: 152px;
  }

  .buyer-hero-switcher {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .hero-video-featured {
    grid-row: auto;
    min-height: 240px;
  }

  .hero-video-preview {
    min-height: 118px;
  }

  .seller-hero {
    gap: 24px;
  }

  .seller-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .seller-hero-actions {
    display: grid;
    gap: 12px;
  }

  .seller-hero-actions .btn {
    min-width: 0;
  }

  .seller-hero-visual {
    min-height: 300px;
  }

  .seller-hero-glass {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: stretch;
    margin: 0 16px 16px;
  }

  .seller-process,
  .seller-format-grid,
  .seller-bottom-cta,
  .seller-form {
    grid-template-columns: 1fr;
  }

  .seller-process article {
    padding: 0;
  }

  .seller-format-card {
    min-height: 0;
  }

  .seller-format-card img {
    max-width: min(100%, 360px);
  }

  .seller-bottom-cta {
    justify-items: start;
    padding: 20px;
  }

  .seller-form-cta-button {
    width: 100%;
    max-width: 100%;
    height: 68px;
    padding: 0 28px;
    gap: 18px;
  }

  .seller-form-cta-text {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .seller-form-cta-arrow {
    font-size: 28px;
  }

  .select-row,
  .tag-row,
  .cars-grid,
  .format-grid,
  .catalog-filters,
  .catalog-grid,
  .buyer-benefit-grid,
  .car-detail-placeholder {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .main-choice-section {
    padding: 36px 0 44px;
  }

  .main-choice-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .main-choice-button {
    height: 118px;
    border-radius: 22px;
  }

  .main-choice-button::after {
    border-radius: 21px;
  }

  .main-choice-button::before {
    inset: 14px 20px;
    border-radius: 18px;
  }

  .main-choice-label {
    font-size: 26px;
    letter-spacing: 0.11em;
  }

  .front-light,
  .rear-light {
    width: 120px;
    height: 22px;
  }

  .front-light-left,
  .rear-light-left {
    left: 18px;
  }

  .front-light-right,
  .rear-light-right {
    right: 18px;
  }

  .front-beam,
  .rear-glow {
    width: 160px;
    height: 58px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .buyer-info {
    align-items: flex-start;
  }

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

  .format-card {
    padding-inline: 20px;
  }

  .seller-submit {
    min-width: 0;
    width: 100%;
  }

  .how-page .site-header,
  .how-page main,
  .how-page .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .how-hero {
    min-height: 0;
    gap: 24px;
    padding-top: 24px;
  }

  .how-hero-copy {
    padding-left: 22px;
  }

  .how-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .how-hero p {
    font-size: 17px;
  }

  .how-hero-actions,
  .how-bottom-cta div {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .how-hero-actions .btn {
    min-width: 0;
  }

  .how-hero-visual {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .how-video-card {
    min-height: 230px;
  }

  .how-owner-card {
    min-height: 0;
  }

  .how-hero-mark {
    right: 18px;
    bottom: 18px;
    width: 82px;
  }

  .how-tabs,
  .seller-steps,
  .buyer-steps,
  .how-why-grid {
    grid-template-columns: 1fr;
  }

  .how-why article {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .how-why-list article {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding: 26px 0;
  }

  .how-why-label {
    padding: 11px 14px;
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  .how-why .how-step-icon {
    margin: 0 auto;
  }

  .how-why h3,
  .how-why p {
    text-align: center;
  }

  .how-why-list h3,
  .how-why-list p {
    text-align: left;
  }

  .why-hero {
    padding-top: 28px;
    gap: 22px;
  }

  .why-hero::before {
    width: 230px;
    height: 230px;
    right: -64px;
  }

  .why-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .why-hero p {
    font-size: 17px;
  }

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

  .why-points article,
  .why-compare article {
    min-height: 0;
  }

  .why-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .why-cta div,
  .why-cta .btn {
    width: 100%;
  }

  .contact-hero {
    padding-top: 28px;
  }

  .contact-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .contact-direct,
  .contact-side article,
  .lead-contact-copy,
  .lead-form {
    padding: 20px;
  }

}
