:root {
  --bg: #f7f7f5;
  --bg-soft: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-strong: rgba(255, 255, 255, 0.98);
  --text: #182436;
  --text-soft: #586579;
  --text-muted: #7c8798;
  --line: rgba(223, 227, 233, 0.92);
  --white-line: rgba(255, 255, 255, 0.82);
  --accent: #ff1a0d;
  --accent-hover: #e51408;
  --accent-soft: #ffe1dc;
  --success: #ff3b30;
  --shadow-soft: 0 24px 55px -35px rgba(15, 23, 42, 0.24);
  --shadow-panel: 0 32px 80px -48px rgba(15, 23, 42, 0.45);
  --shadow-hero: 0 42px 110px -65px rgba(15, 23, 42, 0.48);
  --shadow-button: 0 18px 35px -20px rgba(255, 26, 13, 0.42);
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #fcfcfb 0%, #f8f8f7 100%);
  color: var(--text);
  font: 16px/1.5 "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.deferred-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(15, 23, 42, 0.08));
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

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

[hidden] {
  display: none !important;
}

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

.mobile-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 26px -24px rgba(15, 23, 42, 0.28);
}

.mobile-topbar__brand {
  min-width: 0;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding-inline: 4px;
}

.mobile-topbar__logo {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 4px;
  box-shadow: 0 8px 16px -12px rgba(255, 26, 13, 0.32);
}

.mobile-topbar__brand span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #334155;
}

.mobile-topbar__button,
.desktop-header__button,
.hero-form__primary,
.section-cta__button,
.quiz-form__submit {
  cursor: pointer;
  color: #fff;
  background: var(--accent);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-topbar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 16px;
  min-height: 44px;
  border-radius: 16px;
  box-shadow: var(--shadow-button);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.mobile-topbar__button:hover,
.desktop-header__button:hover,
.hero-form__primary:hover,
.quiz-form__submit:hover,
.section-cta__button:hover {
  background: var(--accent-hover);
}

.desktop-header {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfcfb 0%, #f8f8f7 100%);
}

.hero__background,
.hero__background-image,
.hero__background-overlay,
.hero__background-accent {
  position: absolute;
  inset: 0;
}

.hero__background-image {
  display: none;
}

.hero__background-car {
  display: none;
}

.hero__background-overlay {
  background: linear-gradient(180deg, rgba(252, 252, 251, 0.28) 0%, rgba(248, 248, 247, 0.24) 100%);
}

.hero__background-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 26, 13, 0.06), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 26, 13, 0.025), transparent 22%);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 86px;
  padding-bottom: 52px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  color: #0f172a;
}

.hero__eyebrow {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hero__eyebrow-badge,
.hero__eyebrow-text {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
}

.hero__eyebrow-badge {
  position: relative;
  padding: 0 14px;
  padding-left: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #344054;
  box-shadow: 0 16px 32px -28px rgba(15, 23, 42, 0.18);
}

.hero__eyebrow-badge::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.hero__eyebrow-text {
  padding: 0 14px;
  background: rgba(12, 18, 30, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
}

.hero__title {
  order: 2;
  margin: 0;
  font-weight: 900;
  font-size: 31px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #121b2c;
}

.hero__title span {
  display: block;
  max-width: 100%;
}

.hero__title span:nth-child(2) {
  color: var(--accent);
}

.hero__subtitle {
  order: 3;
  margin: 20px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #667085;
}

.hero__buyout-list {
  order: 6;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero__buyout-item,
.hero__buyout-panel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__buyout-item {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px -24px rgba(15, 23, 42, 0.16);
}

.hero__buyout-list--mobile .hero__buyout-item:last-child {
  grid-column: 1 / -1;
}

.hero__buyout-item span:last-child {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #2a3240;
  text-align: center;
}

.hero__buyout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  margin-top: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.hero__chips,
.hero__buyout-panel {
  display: none;
}

.hero__side {
  width: 100%;
}

.hero-form {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px -36px rgba(15, 23, 42, 0.34);
}

.hero__side .hero-form {
  margin-top: 0;
}

.hero-form__manager {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-form__manager-photo {
  position: relative;
  width: 48px;
  height: 48px;
}

.hero__offer-cards {
  order: 5;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px -36px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.offer-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  background: transparent;
}

.offer-card + .offer-card {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.offer-card__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 15px;
  box-shadow: 0 12px 20px -18px rgba(15, 23, 42, 0.28);
}

.offer-card__title {
  grid-column: 2;
  margin-top: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.offer-card__text {
  grid-column: 2;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}

.hero__trust {
  order: 4;
  display: grid;
  justify-items: start;
  gap: 16px;
  margin-top: 26px;
}

.hero__trust-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__trust-avatars {
  display: flex;
  margin-right: 2px;
}

.hero__trust-avatars img {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 26%;
  box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.3);
}

.hero__trust-avatars img + img {
  margin-left: -9px;
}

.hero__trust-copy strong,
.hero__trust-copy span,
.hero__video-button strong,
.hero__video-button small {
  display: block;
}

.hero__trust-copy strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: #121b2c;
}

.hero__trust-copy span {
  display: none;
}

.hero__video-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.hero__video-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: relative;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 36px -22px rgba(255, 26, 13, 0.56);
  font-size: 20px;
}

.hero__video-button-icon::before,
.hero__video-button-icon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 26, 13, 0.28);
  animation: hero-play-pulse 2.4s ease-out infinite;
}

.hero__video-button-icon::after {
  inset: -14px;
  border-color: rgba(255, 26, 13, 0.14);
  animation-delay: 0.6s;
}

.hero__video-button strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  color: #121b2c;
}

.hero__video-button small {
  display: none;
}

.hero-form__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--accent);
}

.hero-form__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 10px;
}

.hero-form__label {
  padding-inline: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.hero-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-form__change,
.hero-form__secondary {
  cursor: pointer;
}

.hero-form__change {
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  text-decoration: underline;
  text-decoration-color: #cbd5e1;
  text-underline-offset: 2px;
}

.hero-form__change:hover {
  color: #334155;
}

.method-select {
  position: relative;
  margin-top: 8px;
}

.method-select__trigger,
.hero-form__input,
.quiz-form input,
.quiz-form select {
  width: 100%;
  border: 1px solid #dfd8cd;
  border-radius: 18px;
  background: #fbfaf7;
  color: #0f172a;
}

.method-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
}

.method-select.is-open .method-select__trigger {
  border-color: rgba(255, 26, 13, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 26, 13, 0.12);
}

.method-select__arrow {
  color: #64748b;
  transition: transform 0.2s ease;
}

.method-select.is-open .method-select__arrow {
  transform: rotate(180deg);
}

.method-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  overflow: hidden;
  border: 1px solid #dfd8cd;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 40px -24px rgba(15, 23, 42, 0.35);
}

.method-select__option {
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
  color: #475569;
  cursor: pointer;
}

.method-select__option:hover,
.method-select__option.is-active {
  background: rgba(255, 26, 13, 0.08);
}

.method-select__option.is-active {
  font-weight: 700;
  color: var(--accent);
}

.hero-form__primary {
  width: 100%;
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px 24px;
  box-shadow: var(--shadow-button);
  font-size: 16px;
  font-weight: 800;
}

.hero-form__primary:active,
.quiz-form__submit:active,
.section-cta__button:active,
.desktop-header__button:active,
.mobile-topbar__button:active {
  transform: translateY(1px);
}

.hero-form__input {
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
  color: #0f172a;
}

.hero-form__input::placeholder,
.quiz-form input::placeholder {
  color: #94a3b8;
}

.hero-form__input:focus,
.method-select__trigger:focus,
.quiz-form input:focus,
.quiz-form select:focus {
  outline: 2px solid rgba(255, 140, 105, 0.55);
  outline-offset: 2px;
}

.hero-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
}

.hero-form__manager-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 26%;
  box-shadow: 0 14px 24px -20px rgba(15, 23, 42, 0.24);
}

.hero-form__manager-copy strong,
.hero-form__manager-copy span {
  display: block;
}

.hero-form__manager-copy strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  color: #121b2c;
}

.hero-form__manager-copy span {
  margin-top: 4px;
  font-size: 13px;
  color: #7b8797;
}

.hero-form__manager-status {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 2px;
  transform: translate(28%, 20%);
  border-radius: 50%;
  background: #14c15f;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(20, 193, 95, 0.18);
}

.hero-form__agree span {
  line-height: 1.45;
}

.hero-form__agree a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-form__agree a:hover {
  color: var(--accent-hover);
}

.hero-form__agree--quiz {
  margin-top: 14px;
}

.hero-form__agree input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.hero-form__success,
.quiz-form__success {
  text-align: center;
}

.hero-form__success-icon,
.quiz-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 4px auto 14px;
  border-radius: 50%;
  background: rgba(255, 26, 13, 0.12);
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
}

.hero-form__success-title,
.quiz-form__success-title {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
}

.hero-form__success-text,
.quiz-form__success-text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
}

.hero-form__success-phone {
  margin-top: 16px;
  border: 1px solid #ece5d9;
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #0f172a;
}

.hero-form__secondary {
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
  padding: 14px 22px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: 920px;
}

.section--light {
  background: transparent;
}

.section--warm {
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: transparent;
}

.section--assurance {
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: transparent;
}

.section--cta {
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: transparent;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

#reviews .section-heading {
  margin-bottom: 24px;
}

.section-heading--narrow {
  max-width: 760px;
}

.section-heading--left {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-heading h2,
.section-cta h2 {
  margin: 0;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #152031;
}

.section-heading p,
.section-cta p {
  margin: 16px auto 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.media-strip {
  position: relative;
}

.media-strip + .media-strip {
  margin-top: 18px;
}

.media-strip__controls {
  pointer-events: none;
}

.media-strip__nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px -18px rgba(255, 26, 13, 0.36);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.media-strip__nav:first-child {
  left: -8px;
}

.media-strip__nav:last-child {
  right: -8px;
}

.media-strip__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 8px 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.media-strip__track::-webkit-scrollbar {
  display: none;
}

.media-strip__track--wide {
  gap: 16px;
}

.video-card,
.photo-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: var(--shadow-soft);
}

.video-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  isolation: isolate;
  width: calc(50% - 10px);
  min-width: 152px;
  max-width: 166px;
  min-height: 236px;
  padding: 13px 12px 14px;
  background: linear-gradient(180deg, #172033 0%, #24354f 100%);
  cursor: pointer;
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0.12) 0%, rgba(7, 13, 24, 0.38) 46%, rgba(7, 13, 24, 0.8) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%);
  z-index: 0;
}

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

.video-card__eyebrow,
.video-card__title,
.video-card__hint {
  display: block;
  position: relative;
  z-index: 1;
  text-align: left;
}

.video-card__eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.video-card__title {
  max-width: 98px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 12px 28px rgba(7, 13, 24, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card__hint {
  margin-top: auto;
  display: none;
  padding-right: 46px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.video-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 26, 13, 0.96);
  color: #fff;
  box-shadow: 0 18px 36px -22px rgba(255, 26, 13, 0.56);
  font-size: 16px;
  backdrop-filter: blur(6px);
}

.video-card__play::before,
.video-card__play::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 26, 13, 0.28);
  animation: hero-play-pulse 2.4s ease-out infinite;
}

.video-card__play::after {
  inset: -12px;
  border-color: rgba(255, 26, 13, 0.14);
  animation-delay: 0.6s;
}

.media-strip--photos {
  display: none;
}

.photo-card {
  width: calc(50% - 10px);
  min-width: 152px;
  max-width: 166px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 249, 0.96);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 28%;
}

.photo-card__caption {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px 14px;
  border-top: 1px solid rgba(226, 216, 203, 0.8);
}

.photo-card__caption strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  color: #152031;
}

.photo-card__caption span {
  font-size: 12px;
  line-height: 1.45;
  color: #5d6979;
}

.assurance {
  display: grid;
  gap: 24px;
  align-items: start;
}

.assurance__visual {
  align-self: start;
  display: flex;
  justify-content: center;
}

.assurance__content {
  max-width: none;
}

.assurance__image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 34px 90px -60px rgba(15, 23, 42, 0.24);
}

.assurance__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.14) 100%);
  pointer-events: none;
}

.assurance__image {
  display: block;
  width: 100%;
  height: 196px;
  object-fit: cover;
  object-position: center 48%;
}

.assurance__callout {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  bottom: auto;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #10151d;
  box-shadow: 0 20px 44px -30px rgba(15, 23, 42, 0.28);
}

.assurance__callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  flex: 0 0 auto;
}

.assurance__callout strong,
.assurance__callout span {
  display: block;
}

.assurance__callout strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.assurance__callout span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(16, 21, 29, 0.84);
}

.section-heading--assurance {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading--assurance h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section-heading--assurance p {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.assurance__list {
  display: grid;
  gap: 14px;
}

.assurance__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(219, 228, 212, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 48px -42px rgba(15, 23, 42, 0.28);
}

.assurance__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: #152031;
  font-size: 15px;
  font-weight: 900;
}

.assurance__item h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
  color: #152031;
}

.assurance__item p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5d6979;
}

.testimonials {
  margin-top: 32px;
}

.section-heading--testimonials {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.testimonials-strip .media-strip__track {
  gap: 18px;
  padding-inline: calc((100vw - min(336px, calc(100vw - 88px))) / 2);
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: min(336px, calc(100vw - 88px));
  min-width: 252px;
  max-width: 336px;
  border-radius: 24px;
  border: 1px solid rgba(223, 227, 233, 0.92);
  background: rgba(255, 255, 255, 0.94);
  color: #10151d;
  box-shadow: 0 28px 60px -42px rgba(15, 23, 42, 0.18);
  scroll-snap-align: center;
}

.testimonial-card__photo {
  width: 100%;
  height: 216px;
  object-fit: cover;
  object-position: center 20%;
  background: #eef2f6;
}

.testimonial-card__stars {
  margin-left: auto;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #f4c542;
  text-shadow: 0 8px 20px rgba(127, 91, 7, 0.16);
}

.testimonial-card__body {
  padding: 18px 18px 20px;
}

.testimonial-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-card__meta {
  min-width: 0;
}

.testimonial-card__body h3 {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  color: #10151d;
}

.testimonial-card__city {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b97a7;
}

.testimonial-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(16, 21, 29, 0.88);
}

.testimonial-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(227, 234, 222, 0.96);
}

.testimonial-card__date {
  font-size: 12px;
  color: #97a1ad;
}

.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 26, 13, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.purchased-cars {
  margin-top: 44px;
}

.section-heading--cars {
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading--cars h2 {
  margin-bottom: 0;
}

.purchased-strip .media-strip__nav {
  top: 44%;
}

.purchased-strip .media-strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 120px);
  grid-auto-columns: 160px;
  align-items: start;
  gap: 12px;
  padding: 0 16px 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.purchased-strip .media-strip__track::-webkit-scrollbar {
  display: none;
}

.purchased-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: 160px;
  height: 120px;
  max-width: none;
  border: 1px solid rgba(223, 227, 233, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px -42px rgba(15, 23, 42, 0.2);
  scroll-snap-align: start;
}

.purchased-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes hero-play-pulse {
  0% {
    transform: scale(0.88);
    opacity: 0.72;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.quiz {
  display: grid;
  gap: 24px;
}

.quiz-form,
.doc-card,
.process-card {
  border: 1px solid #e8dfd4;
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 38px 90px -55px rgba(15, 23, 42, 0.28);
}

.quiz-form {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
}

.quiz-form h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}

.quiz-form > p {
  margin: 8px 0 24px;
  color: var(--text-soft);
}

.quiz-form__grid {
  display: grid;
  gap: 16px;
}

.quiz-form__grid + .quiz-form__grid,
.quiz-form__comments {
  margin-top: 16px;
}

.quiz-form label {
  display: block;
}

.quiz-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
}

.quiz-form input,
.quiz-form select {
  padding: 14px 16px;
}

.quiz-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #94a3b8 50%), linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.quiz-form__submit {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
  padding: 14px 24px;
  box-shadow: var(--shadow-button);
  font-size: 17px;
  font-weight: 800;
}

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

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

.doc-card {
  border-radius: 24px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 24px 55px -40px rgba(15, 23, 42, 0.22);
}

.doc-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ece2d7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 24px -20px rgba(15, 23, 42, 0.32);
  font-size: 24px;
}

.doc-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.doc-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
}

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

.process-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 20px;
  min-height: 108px;
  padding: 12px;
  box-shadow: 0 18px 38px -34px rgba(15, 23, 42, 0.2);
}

.process-card__image {
  display: block;
  width: 100%;
  height: 102px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background: #efe7db;
}

.process-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2px 4px 4px;
}

.process-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #4aa91e;
}

.process-card__title {
  margin-top: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.process-card--wide {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
}

.process-card--wide .process-card__image {
  height: 144px;
}

.section-cta {
  text-align: center;
}

.section-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border-radius: 18px;
  padding: 14px 28px;
  box-shadow: var(--shadow-button);
  font-size: 18px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #181b20 0%, #12151a 100%);
  color: #fff;
}

.footer__inner {
  display: grid;
  gap: 28px;
  padding: 56px 0 36px;
}

.footer__logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer__logo span {
  color: var(--accent);
}

.footer__brand p,
.footer__meta,
.footer__nav a {
  color: #94a3b8;
}

.footer__nav {
  display: grid;
  gap: 12px;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 12px 32px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 420px);
  margin: 32px auto;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 40px 120px -65px rgba(0, 0, 0, 0.85);
}

.video-modal__dialog video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px -18px rgba(255, 26, 13, 0.38);
  font-size: 18px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .hero__container {
    padding-top: 96px;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
  }

  .hero__eyebrow-badge,
  .hero__eyebrow-text {
    min-height: 38px;
  }

  .hero__eyebrow-text {
    font-size: 14px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle {
    margin-top: 16px;
    font-size: 24px;
  }

  .hero-form {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-form__caption {
    margin-bottom: 16px;
    font-size: 14px;
  }

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

  .hero-form__primary,
  .quiz-form__submit {
    padding-block: 16px;
    font-size: 18px;
  }

  .hero-form__input,
  .method-select__trigger {
    font-size: 16px;
  }

  .video-card {
    min-width: 198px;
    max-width: 218px;
    min-height: 244px;
  }

  .media-strip__nav {
    top: 44%;
  }

  .testimonials-strip .media-strip__nav {
    top: 35%;
  }

  .testimonials-strip .media-strip__track {
    padding-inline: 32px;
  }

  .purchased-strip .media-strip__nav {
    top: 50%;
  }

  .purchased-strip .media-strip__track {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-columns: 196px;
    gap: 16px;
    padding-inline: 18px;
  }

  .purchased-card {
    width: 196px;
    height: 148px;
    max-width: none;
    border-radius: 22px;
  }

  .assurance__image {
    height: 320px;
    object-position: center 50%;
  }

  .testimonial-card__photo {
    height: 264px;
  }

  .photo-card {
    min-width: 196px;
    max-width: 212px;
  }

  .video-card__hint {
    display: block;
  }

  .quiz-form {
    padding: 32px;
  }

  .process-card__image {
    height: 118px;
  }

  .process-card--wide .process-card__image {
    height: 176px;
  }

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

  .docs-grid {
    gap: 24px;
  }

  .doc-card {
    padding: 24px;
  }

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

  .process-card--wide {
    grid-column: auto;
    max-width: none;
  }

  .footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .mobile-topbar {
    display: none;
  }

  .desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: block;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px -24px rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(14px);
  }

  .desktop-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 64px;
  }

  .desktop-header__logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
  }

  .desktop-header__logo span {
    color: var(--accent);
  }

  .desktop-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .desktop-header__nav a {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
  }

  .desktop-header__nav a:hover {
    color: var(--accent);
  }

  .desktop-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-button);
    font-size: 15px;
    font-weight: 800;
  }

  .hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(370px, 420px);
    align-items: center;
    gap: 78px;
    min-height: min(860px, calc(100vh - 24px));
    padding-top: 120px;
    padding-bottom: 72px;
  }

  .hero__content {
    min-width: 0;
    max-width: none;
    padding-top: 8px;
    color: #0f172a;
  }

  .hero__side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 404px;
    padding-top: 10px;
    margin-left: auto;
  }

  .hero__title {
    max-width: 720px;
    font-size: clamp(48px, 3.9vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #121b2c;
  }

  .hero__title span:nth-child(2) {
    color: var(--accent);
  }

  .hero__subtitle {
    margin-top: 22px;
    font-size: 24px;
    font-weight: 700;
    color: #566173;
  }

  .hero__eyebrow-badge {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(15, 23, 42, 0.08);
    color: #1e293b;
    box-shadow: 0 18px 30px -26px rgba(15, 23, 42, 0.32);
  }

  .hero__buyout-list--mobile {
    display: none;
  }

  .hero__background-image {
    display: none;
  }

  .hero__background-car {
    display: none;
  }

  .hero__background-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.56) 62%, rgba(255, 255, 255, 0.32) 82%, rgba(255, 255, 255, 0.16) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.22) 100%);
  }

  .hero__background-accent {
    background:
      radial-gradient(circle at left 16%, rgba(255, 255, 255, 0.95), transparent 30%),
      radial-gradient(circle at right 14%, rgba(255, 220, 216, 0.4), transparent 24%),
      radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.22), transparent 22%);
  }

  .hero__trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    margin-top: 32px;
  }

  .hero__trust-copy strong {
    color: #121b2c;
    font-size: 16px;
  }

  .hero__trust-copy span {
    display: none;
  }

  .hero__video-button {
    flex: 0 0 auto;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 14px;
  }

  .hero__video-button strong {
    color: #121b2c;
    font-size: 15px;
  }

  .hero__video-button small {
    font-size: 13px;
    color: #6a7687;
  }

  .hero__offer-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 680px;
    margin-top: 40px;
    padding: 6px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px -38px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(10px);
  }

  .offer-card {
    min-height: auto;
    border: 0;
    border-radius: 18px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
  }

  .offer-card + .offer-card {
    position: relative;
    border-top: 0;
  }

  .offer-card + .offer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: rgba(15, 23, 42, 0.08);
  }

  .offer-card__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--accent);
    font-size: 14px;
    box-shadow: 0 12px 20px -18px rgba(15, 23, 42, 0.28);
  }

  .offer-card__title {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
  }

  .offer-card__text {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
    color: #64748b;
  }

  .hero-form {
    max-width: none;
    padding: 22px;
    border-radius: 28px;
    border-color: rgba(15, 23, 42, 0.05);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px -46px rgba(15, 23, 42, 0.18);
  }

  .hero-form__manager {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-form__manager-photo {
    width: 56px;
    height: 56px;
  }

  .hero-form__manager-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 26%;
    box-shadow: 0 16px 28px -22px rgba(15, 23, 42, 0.28);
  }

  .hero-form__manager-copy strong,
  .hero-form__manager-copy span {
    display: block;
  }

  .hero-form__manager-copy strong {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    color: #152031;
  }

  .hero-form__manager-copy span {
    margin-top: 4px;
    font-size: 13px;
    color: #7b8797;
  }

  .hero-form__manager-status {
    width: 12px;
    height: 12px;
    right: 0;
    bottom: 3px;
    transform: translate(30%, 18%);
  }

  .hero-form__caption {
    display: none;
  }

  .hero__buyout-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero__buyout-panel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.14);
  }

  .hero__buyout-panel-item span:last-child {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    color: #172233;
  }

  .section {
    padding: 88px 0;
  }

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

  .section-heading h2,
  .section-cta h2 {
    font-size: 56px;
  }

  .section-heading p,
  .section-cta p {
    font-size: 18px;
  }

  .video-card {
    min-width: 232px;
    max-width: 248px;
    min-height: 276px;
  }

  .media-strip__nav {
    top: 46%;
  }

  .testimonials-strip .media-strip__nav {
    top: 120px;
  }

  .testimonials-strip .media-strip__track {
    padding-inline: 12px;
  }

  .purchased-strip .media-strip__nav {
    top: 50%;
  }

  .purchased-strip .media-strip__track {
    grid-template-rows: repeat(2, 177px);
    grid-auto-columns: 236px;
    gap: 18px;
    padding-inline: 20px;
  }

  .purchased-card {
    width: 236px;
    height: 177px;
    max-width: none;
    border-radius: 24px;
  }

  .photo-card {
    min-width: 240px;
    max-width: 252px;
  }

  .assurance {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.98fr);
    align-items: start;
    justify-content: center;
    gap: 28px 34px;
  }

  .assurance__visual {
    padding-top: 0;
  }

  .assurance__image {
    height: 430px;
    object-position: center 56%;
  }

  .assurance__callout {
    left: 18px;
    right: auto;
    top: auto;
    bottom: 18px;
    width: 286px;
  }

  .assurance__content {
    max-width: 620px;
    margin-left: 0;
  }

  .assurance__list {
    gap: 16px;
  }

  .assurance__item {
    padding: 20px 22px;
  }

  .testimonials {
    margin-top: 56px;
  }

  .testimonial-card {
    width: 332px;
  }

  .testimonial-card__photo {
    height: 244px;
  }

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

  .doc-card {
    padding: 32px 24px;
  }

  .process-card__image {
    height: 132px;
  }

  .process-card--wide .process-card__image {
    height: 196px;
  }

  .doc-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .doc-card p {
    font-size: 14px;
  }

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

  .process-card,
  .process-card--wide {
    grid-column: auto;
    max-width: none;
  }

  .section-cta__button {
    padding: 16px 32px;
    font-size: 20px;
  }
}
