:root {
  --ink-1000: #001533;
  --ink-900: #0b102a;
  --ink-700: #001f4d;
  --gray-500: #6b7280;
  --gray-400: #8a9cbf;
  --gray-300: #d1d5db;
  --gray-150: #f0f3f7;
  --gray-50: #f5f7fa;
  --white: #fff;
  --blue-700: #0059ff;
  --blue-600: #0066ff;
  --blue-from: #1e64ff;
  --blue-to: #00cbef;
  --blue-100: #dbeafe;
  --blue-050: #e6f0ff;
  --success-600: #00a63e;
  --success-050: #dcfce7;
  --danger: #ef4444;
  --danger-text: #b91c1c;
  --border-10: #0b102a1a;
  --overlay: #0b102a99;
  --text-primary: var(--ink-900);
  --text-secondary: var(--gray-500);
  --text-inverse: var(--white);
  --text-accent: var(--blue-600);
  --bg-page: var(--white);
  --bg-alt: #f9fafb;
  --cta-primary: linear-gradient(90deg, var(--blue-from), var(--blue-to));
  --cta-dark: linear-gradient(167.91deg, var(--ink-900) 0%, var(--blue-600) 100%);
  --glass-blue: linear-gradient(112deg, #ffffffe0 0%, #e6f0ffc2 62%, #ffffffe6 100%);
  --font-sans: "Geologica", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --radius-sm: 14px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-blue: 0 24px 80px #0059ff1a, inset 0 1px 0 #ffffffc7;
  --shadow-card: 0 24px 64px color-mix(in oklab, #0066ff 10%, transparent);
  --shadow-nav: 0 6px 24px #0b102a14;
  --shadow-modal: 0 24px 60px #0b102a38;
  --shadow-fab: 0 12px 32px #0b102a38;
  --container: 1152px;
  --header-max: 1495px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.25rem;
  -webkit-text-size-adjust: 100%;
}

@media (width <= 1023px) {
  html {
    scroll-padding-top: 6rem;
  }
}

body {
  min-height: 100svh;
  font-family: var(--font-sans);
  font-size-adjust: 0.48;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  color: currentColor;
}

.icon use {
  fill: none;
  stroke: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 64px);
  margin-inline: auto;
  padding-inline: 16px;
}

@media (width >= 640px) {
  .container {
    padding-inline: 24px;
  }
}

@media (width >= 1024px) {
  .container {
    padding-inline: 32px;
  }
}

.btn {
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  user-select: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s, opacity 0.15s, filter 0.15s, border-color 0.15s;
  display: inline-flex;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

.btn--cta {
  min-height: 3.75rem;
  padding: 0 32px;
  font-size: 1.125rem;
  line-height: 1.5556;
  font-weight: var(--fw-semibold);
  background: var(--cta-primary);
  color: var(--text-inverse);
}

.btn--cta:hover:not(:disabled) {
  filter: brightness(0.95);
}

.btn--cta.btn--outline {
  background: transparent;
  color: var(--text-primary);
}

.btn--cta.btn--outline:hover:not(:disabled) {
  background: var(--ink-900);
  color: var(--text-inverse);
  filter: none;
}

.btn--md {
  min-height: 2.75rem;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: var(--fw-medium);
}

.btn--ink {
  background: var(--ink-900);
  color: var(--text-inverse);
}

.btn--ink:hover:not(:disabled) {
  background: color-mix(in srgb, var(--ink-900) 88%, #fff 12%);
}

.btn--outline {
  color: var(--text-primary);
  border: 2px solid var(--ink-900);
  background: transparent;
}

.btn--outline:hover:not(:disabled) {
  background: var(--ink-900);
  color: var(--text-inverse);
}

.btn--ghost {
  color: var(--text-primary);
  font-weight: var(--fw-medium);
  background: transparent;
}

.btn--ghost:hover:not(:disabled) {
  opacity: 0.7;
}

.btn--full {
  width: 100%;
}

.header {
  z-index: 50;
  backdrop-filter: blur(6px);
  background: #e4f0ff70;
  border: 1px solid #fffc;
  border-radius: 90px;
  align-items: center;
  gap: 24px;
  max-width: var(--header-max);
  min-height: 4.75rem;
  margin-inline: auto;
  padding: 17px 32px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  position: fixed;
  top: 40px;
  left: 16px;
  right: 16px;
  box-shadow: inset 0 0 17.8px #ffffff59;
}

.header.is-scrolled,
.header.is-open {
  background: #ffffffeb;
  border-color: #fff;
  box-shadow: var(--shadow-nav);
}

.header.is-open {
  backdrop-filter: none;
  background: var(--bg-page);
  border-color: #0b102a14;
}

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

.logo__img {
  display: block;
  height: 32px;
  width: auto;
}

.nav {
  gap: 32px;
  margin-inline: auto;
  display: flex;
}

.nav a {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  transition: opacity 0.15s;
}

.nav a:hover {
  opacity: 0.7;
}

.header__actions {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  display: flex;
}

.header__phone {
  align-items: center;
  gap: 8px;
  display: inline-flex;
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  padding: 0 8px;
  transition: opacity 0.15s;
}

.header__phone:hover {
  opacity: 0.7;
}

.header__phone .icon {
  width: 18px;
  height: 18px;
  color: var(--blue-600);
}

.menu-btn {
  width: 44px;
  height: 44px;
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  display: none;
  place-items: center;
  margin-left: auto;
  transition: background 0.15s;
}

.menu-btn:hover {
  background: #0b102a0f;
}

.menu-btn:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

.nav-overlay,
.drawer {
  display: none;
}

@media (width >= 1200px) and (width <= 1399px) {
  .header {
    gap: 16px;
    padding-inline: 24px;
  }

  .nav {
    gap: 20px;
  }

  .nav a,
  .header__phone span {
    font-size: 0.875rem;
  }
}

@media (width <= 1199px) {
  .header {
    border-radius: 60px;
    gap: 12px;
    min-height: 4rem;
    padding: 8px 12px 8px 20px;
    top: 16px;
  }

  .nav,
  .header__actions {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .nav-overlay {
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    background: #0b102a73;
    transition: opacity 0.2s;
    display: block;
    position: fixed;
    inset: 0;
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .drawer {
    z-index: 45;
    background: var(--bg-page);
    visibility: hidden;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    flex-direction: column;
    gap: 16px;
    padding: 6.5rem 24px 24px;
    transition: transform 0.25s, visibility 0s linear 0.25s;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    box-shadow: var(--shadow-nav);
  }

  .drawer.is-open {
    visibility: visible;
    transition: transform 0.25s, visibility linear;
    transform: translateY(0);
  }

  .drawer a,
  .drawer button {
    font-size: 1rem;
    color: var(--text-primary);
    padding: 8px 0;
    text-align: left;
    transition: color 0.15s;
  }

  .drawer a:hover,
  .drawer button:hover {
    color: var(--text-accent);
  }

  .drawer .btn--cta {
    color: var(--text-inverse);
    padding: 0 32px;
    margin-top: 8px;
  }

  .drawer .btn--cta:hover {
    color: var(--text-inverse);
  }
}

.hero {
  isolation: isolate;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  padding: 0;
}

.hero__panel {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: min(100svh, 920px);
  padding: 7.5rem 20px 2.5rem;
  background: var(--glass-blue);
  backdrop-filter: blur(18px);
  border-radius: 0;
}

.hero__visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

@media (width <= 1023px) {
  .hero__visual {
    order: -1;
  }
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

@media (width >= 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
    align-items: stretch;
  }

  .hero__panel {
    grid-column: 1;
    grid-row: 1;
    min-height: 100svh;
    padding: 9rem clamp(32px, 4vw, 80px) 4rem clamp(24px, 3vw, 64px);
    border-right: 1px solid #0b102a12;
    box-shadow: 12px 0 48px #0b102a0a;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1;
    min-height: 100svh;
  }

  .hero__content {
    max-width: min(560px, 92%);
    margin-inline: 0 auto 0;
  }

  .hero__photo {
    object-position: 55% center;
  }
}

.eyebrow {
  font-size: 0.75rem;
  line-height: 1.3333;
  font-weight: var(--fw-medium);
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  margin: 0 0 12px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 16%, transparent);
  flex: none;
}

.hero h1 {
  font-size: clamp(2rem, 0.6rem + 3.2vw, 2.5rem);
  line-height: 1.12;
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0 0 20px;
}

.hero p {
  max-width: 68ch;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.hero p + p {
  margin-top: 12px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.section {
  padding-block: var(--space-20);
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.section__head--center {
  text-align: center;
  align-items: center;
}

.section__head h1,
.section__head h2 {
  font-size: 2.25rem;
  line-height: 1.1111;
  font-weight: var(--fw-light);
  color: var(--text-primary);
  max-width: 720px;
  letter-spacing: -0.025em;
}

.section__head h1 {
  font-size: clamp(2rem, 0.5rem + 3vw, 2.75rem);
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.section__head p {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-secondary);
  max-width: 640px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-template-rows: minmax(280px, auto) minmax(240px, auto);
  gap: 16px;
}

.why-card {
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--border-10);
  min-height: 240px;
}

.why-card--photo {
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  min-height: 280px;
}

.why-card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.why-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #0b102a33 0%, #0b102a55 42%, #0b102ae8 100%);
}

.why-card--tall {
  grid-row: 1 / 3;
  min-height: 540px;
}

.why-card__body {
  position: relative;
  z-index: 2;
}

.why-card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: var(--fw-semibold);
  margin: 0 0 8px;
}

.why-card p {
  font-size: 0.875rem;
  line-height: 1.4286;
  margin: 0;
}

.why-card--photo p {
  color: #ffffffd1;
}

.why-card--icon {
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.why-card--icon h3 {
  color: var(--text-primary);
}

.why-card--icon p {
  color: var(--text-secondary);
}

.why-card--icon .icon-badge {
  margin-bottom: 0;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--blue-050);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

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

.car-card {
  background: var(--white);
  isolation: isolate;
  border: 2px solid #0b102a1a;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.car-card__media {
  height: 188px;
  position: relative;
  flex-shrink: 0;
}

.car-card__glow {
  transform-origin: 50%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, #ffffffd9 100%);
  position: absolute;
  inset: 0;
}

.car-card__media img {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.car-card__body {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px 24px;
  position: relative;
  flex: 1;
}

.car-card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: var(--fw-semibold);
  margin: 0;
}

.car-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.car-card__specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.4;
}

.car-card__specs .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue-600);
}

.car-card__specs li.car-card__specs--price {
  margin-top: auto;
  padding-top: 4px;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.car-card__specs li.car-card__specs--price span:last-child {
  background: var(--cta-primary);
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.car-card__specs li.car-card__specs--price .icon {
  color: var(--blue-600);
}

.pick {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  min-height: 520px;
  background: var(--white);
}

.pick__visual {
  position: relative;
  overflow: hidden;
  background: var(--glass-blue);
  border-right: 1px solid var(--border-10);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.pick__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pick__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b102a66 0%, #0b102acc 100%);
}

.pick__visual-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--text-inverse);
}

.pick__visual-copy .eyebrow {
  color: #9ec5ff;
}

.pick__visual-copy h2,
.pick h2 {
  color: var(--text-inverse);
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: var(--fw-semibold);
  margin: 8px 0 12px;
}

.pick__visual-copy p {
  color: #ffffffc2;
  font-size: 0.875rem;
  line-height: 1.4286;
}

.pick__form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
}

.pick__form h2 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  margin: 0;
}

fieldset {
  border: 0;
}

legend {
  font-size: 1rem;
  font-weight: var(--fw-medium);
  margin-bottom: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 1rem;
  font-weight: var(--fw-medium);
}

.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--border-10);
  background: var(--white);
  border-radius: 10px;
  padding: 0 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input::placeholder {
  color: var(--gray-400);
}

.field input:hover:not(:disabled) {
  border-color: #0b102a33;
}

.field input:focus {
  border-color: var(--blue-600);
  outline: none;
  box-shadow: 0 0 0 3px #0066ff26;
}

.range-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.range-value {
  color: var(--blue-600);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--blue-from), var(--blue-to));
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-600);
  box-shadow: 0 0 0 6px #0066ff2e;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-600);
  box-shadow: 0 0 0 6px #0066ff2e;
  cursor: pointer;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

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

.body-type {
  border-radius: var(--radius-pill);
  min-height: 2.875rem;
  border: 1px solid var(--border-10);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.body-type .icon {
  width: 18px;
  height: 18px;
}

.body-type:hover {
  border-color: #0b102a33;
}

.body-type:has(input:checked) {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--text-inverse);
}

.body-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4286;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-600);
  margin-top: 2px;
  flex-shrink: 0;
}

.consent a {
  color: var(--blue-600);
  font-weight: var(--fw-medium);
}

.consent a:hover {
  opacity: 0.75;
}

.form-status {
  display: none;
  background: var(--success-050);
  color: var(--success-600);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.875rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fef2f2;
  color: #dc2626;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-card {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
  border: 1px solid var(--border-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 32px;
  text-align: center;
  color: var(--text-inverse);
}

.review-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b102a33 0%, #0b102ad9 100%);
}

.review-card__play {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-pill);
  background: var(--cta-primary);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0;
  box-shadow: 0 12px 32px #0b102a38;
  animation: 2.2s ease-out infinite pulse-ring;
  flex-shrink: 0;
}

.review-card__play .icon {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.review-card__label {
  position: relative;
  z-index: 1;
  padding: 0 28px 32px;
  margin-top: 24px;
  display: block;
  width: 100%;
  text-align: center;
}

.review-card__label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: #e6f0ff;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 10px;
}

.review-card__label strong {
  display: block;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  text-align: center;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 #0066ff80;
  }
  70% {
    box-shadow: 0 0 0 18px #06f0;
  }
  to {
    box-shadow: 0 0 0 0 #06f0;
  }
}

.cta {
  isolation: isolate;
  background: var(--cta-dark);
  color: var(--text-inverse);
  min-height: 408px;
  position: relative;
  overflow: hidden;
  padding-block: var(--space-20);
}

.cta__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  mix-blend-mode: luminosity;
}

.cta__veil {
  position: absolute;
  inset: 0;
  background: var(--cta-dark);
  mix-blend-mode: multiply;
  opacity: 0.72;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 48px;
  min-height: 248px;
}

.cta__copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
}

.cta h2 {
  font-size: 3rem;
  line-height: 1;
  font-weight: var(--fw-light);
  color: var(--text-inverse);
}

.cta p {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text-inverse);
  max-width: 640px;
}

.cta__frame {
  border: 8px solid var(--ink-900);
  border-bottom: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 252px;
  height: 347px;
  overflow: hidden;
  justify-self: end;
}

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

.footer {
  background: var(--ink-900);
  color: var(--gray-500);
  padding-block: var(--space-12) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid #6b728066;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer .logo__img {
  height: 28px;
}

.footer h3 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--fw-semibold);
  color: #f0f3f7;
  margin: 0 0 16px;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.875rem;
  line-height: 1.4286;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: var(--gray-500);
  transition: color 0.15s;
}

.footer a:hover {
  color: #f0f3f7;
}

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0f3f7 !important;
  font-weight: var(--fw-semibold);
  font-size: 1rem !important;
  margin-top: 4px;
}

.footer__bottom {
  padding-top: var(--space-8);
}

.fab {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 35;
  border-radius: var(--radius-pill);
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid #ffffffb8;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-fab);
  transition: background 0.15s, transform 0.15s;
}

.fab.is-visible {
  display: inline-grid;
  animation: 0.2s ease-out fab-in;
}

.fab:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

.fab:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@keyframes fab-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.modal {
  background: var(--white);
  width: calc(100% - 32px);
  max-width: 520px;
  max-height: calc(100dvh - 32px);
  color: var(--text-primary);
  border: 1px solid var(--border-10);
  border-radius: var(--radius-md);
  margin: auto;
  padding: 0;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
}

.modal::backdrop {
  background-color: var(--overlay);
  backdrop-filter: blur(3px);
}

.modal[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.22s, transform 0.22s;
}

@starting-style {
  .modal[open] {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  .modal[open]::backdrop {
    background-color: transparent;
  }
}

.modal--video {
  max-width: 860px;
  background: #000e32;
  padding: 0;
  overflow: hidden;
}

.modal--video video {
  width: 100%;
  height: auto;
  max-height: 72dvh;
  background: #000;
}

.modal__head {
  padding: 24px 68px 20px 24px;
  border-bottom: 1px solid var(--border-10);
  background: var(--glass-blue);
  position: relative;
  overflow: hidden;
}

.modal__head::after {
  content: "";
  pointer-events: none;
  border: 38px solid #0066ff0f;
  border-radius: 50%;
  width: 184px;
  height: 184px;
  position: absolute;
  top: -84px;
  right: -70px;
}

.modal__head h2 {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  line-height: 1.2857;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.0143em;
  margin-top: 8px;
}

.modal__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--gray-150);
  color: var(--text-secondary);
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
  background: color-mix(in srgb, var(--gray-150) 88%, #000 12%);
  color: var(--text-primary);
}

.modal-close:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

.modal-close .icon {
  width: 16px;
  height: 16px;
}

.policy {
  padding: 10.5rem 0 80px;
  background: var(--bg-page);
}

.policy .section__head h1 {
  font-size: clamp(1.625rem, 0.5rem + 2vw, 1.875rem);
  line-height: 1.2;
  font-weight: var(--fw-light);
  letter-spacing: -0.025em;
  max-width: none;
}

.policy__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 72px;
}

.policy__toc {
  position: sticky;
  top: 140px;
  border: 1px solid var(--border-10);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  padding: 24px;
}

.policy__toc h2 {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 16px;
}

.policy__toc a {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: 10px;
  padding: 10px 12px;
  margin-inline: -12px;
  transition: color 0.15s, background 0.15s;
}

.policy__toc a span {
  font-family: ui-monospace, "SF Mono", Consolas, Menlo, monospace;
  font-size: 0.75rem;
  color: var(--text-accent);
}

.policy__toc a:hover {
  color: var(--text-accent);
  background: color-mix(in srgb, var(--blue-600) 5%, transparent);
}

.policy-article + .policy-article {
  border-top: 1px solid var(--border-10);
  margin-top: 88px;
  padding-top: 88px;
}

.policy-article header {
  margin-bottom: 20px;
}

.policy-article h2 {
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
}

.policy-article p,
.policy-article li {
  max-width: 76ch;
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.policy-article p + p,
.policy-article ul {
  margin-top: 16px;
}

.policy-article ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}

.policy-article li {
  padding-left: 18px;
  position: relative;
}

.policy-article li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  position: absolute;
  left: 0;
  top: 0.7em;
}

.policy-article strong {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

@media (width <= 1279px) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 1023px) {
  .section {
    padding-block: var(--space-16);
  }

  .section__head h1,
  .section__head h2 {
    font-size: clamp(1.5rem, 0.25rem + 4vw, 2.25rem);
    line-height: 1.15;
  }

  .policy .section__head h1 {
    font-size: clamp(1.375rem, 0.25rem + 3vw, 1.625rem);
  }

  .policy-article h2 {
    font-size: clamp(1.125rem, 0.2rem + 2.5vw, 1.375rem);
  }

  .section__head p,
  .hero p,
  .cta p {
    font-size: 1rem;
    line-height: 1.55;
  }

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

  .why-card--tall {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 360px;
  }

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

  .pick__visual {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--border-10);
  }

  .cta h2 {
    font-size: clamp(1.75rem, 0.25rem + 5vw, 3rem);
    line-height: 1.1;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta__copy {
    align-items: center;
    text-align: center;
  }

  .cta__frame {
    justify-self: center;
    height: auto;
    max-height: 380px;
  }

  .policy {
    padding-top: 8rem;
  }

  .policy__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .policy__toc {
    position: static;
  }
}

@media (width <= 767px) {
  .why-grid,
  .reviews-grid,
  .offers-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .why-card--tall {
    min-height: 360px;
  }

  .body-types {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer__legal {
    margin-inline-start: 0;
  }

  .hero__actions .btn,
  .cta .btn {
    width: 100%;
    white-space: normal;
    height: auto;
    min-height: 3.75rem;
    padding-block: 12px;
  }

  .header__phone span {
    display: none;
  }
}

@media (width <= 639px) {
  .section {
    padding-block: var(--space-12);
  }

  .hero__panel {
    padding: 6.5rem 16px 2rem;
    min-height: auto;
  }

  .hero__visual {
    min-height: 240px;
  }

  .hero h1 {
    font-size: clamp(1.625rem, 0.25rem + 6.1vw, 1.875rem);
  }

  .pick__form,
  .pick__visual,
  .modal__body,
  .modal__head {
    padding: 20px;
  }

  .policy-article + .policy-article {
    margin-top: 64px;
    padding-top: 64px;
  }

  .cta {
    padding-block: var(--space-12) 0;
  }

  .footer {
    padding-bottom: calc(var(--space-20) + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .review-card__play,
  .fab.is-visible {
    animation: none;
  }

  .btn,
  .nav a,
  .header,
  .drawer,
  .nav-overlay,
  .modal[open] {
    transition: none;
  }
}

@media (width >= 1024px) {
  .fab {
    right: calc(32px + env(safe-area-inset-right));
    bottom: calc(32px + env(safe-area-inset-bottom));
  }
}
