:root {
  --bg-page: #f6f8fb;
  --bg-card: #ffffff;
  --bg-input: #f8fafd;
  --bg-input-label: #f3f7fc;
  --bg-soft-blue: #eaf2ff;
  --bg-problem: #fff7f2;
  --text-main: #071b3a;
  --text-sub: #5b667a;
  --text-muted: #8a94a6;
  --blue: #1463ff;
  --blue-dark: #0b4edb;
  --blue-soft: #eaf2ff;
  --border: #e5eaf2;
  --border-input: #d8e2ef;
  --border-blue: #cfe0ff;
  --price: #f59e0b;
  --warning: #d97706;
  --radius-card: 26px;
  --radius-panel: 34px;
  --shadow-card: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 20px 50px rgba(15, 23, 42, 0.12);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #edf3fb;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-main);
  background: #edf3fb;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.phone-stage {
  width: 100%;
  max-width: 390px;
  min-height: 100dvh;
  margin: 0 auto;
  overflow: clip;
  background: var(--bg-page);
  box-shadow: 0 0 0 1px rgba(188, 208, 233, 0.58), 0 22px 80px rgba(15, 23, 42, 0.12);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 68px;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 234, 242, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height 180ms ease, padding 180ms ease;
}

.topbar.is-compact {
  height: 54px;
  padding-block: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  text-decoration: none;
}

.brand-symbol {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.topbar.is-compact .brand-symbol {
  width: 23px;
  height: 23px;
}

.brand strong {
  color: var(--text-main);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: font-size 180ms ease;
}

.topbar.is-compact .brand strong {
  font-size: 15px;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 1.5px solid var(--border-blue);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(20, 99, 255, 0.08);
  white-space: nowrap;
  flex-shrink: 0;
  transition: min-height 180ms ease, padding 180ms ease, font-size 180ms ease;
}

.topbar.is-compact .call-pill {
  min-height: 30px;
  padding-inline: 11px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 666px;
  overflow: hidden;
  background-color: var(--bg-page);
  background-image: url("./assets/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 30px 0;
}

.hero-copy h1,
.section-head h2,
.problem-section h2,
.review-section h2,
.bottom-cta h2 {
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 330px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.13;
}

.hero-copy p {
  margin: 26px 0 0;
  color: var(--text-sub);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 330px);
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.trust-badge {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 104px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid rgba(215, 229, 255, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(20, 99, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trust-badge:last-child {
  border-right: 1px solid rgba(215, 229, 255, 0.92);
}

.trust-badge__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #d7e5ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.trust-badge__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.trust-badge strong {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.quote-card {
  position: relative;
  z-index: 5;
  margin: -106px 24px 0;
  padding: 28px 24px 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-card__head {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 24px;
}

.form-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.form-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.quote-card h2 {
  margin: 0;
  color: var(--text-main);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.quote-card__head p {
  margin: 8px 0 0;
  color: var(--text-sub);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.field-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.field-label img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.field input,
.phone-field {
  width: 100%;
  height: 58px;
  color: var(--text-main);
  border: 1px solid var(--border-input);
  border-radius: 17px;
  background: var(--bg-input);
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input {
  padding: 0 18px;
  font-size: 18px;
  font-weight: 650;
}

.field input::placeholder {
  color: #98a2b3;
  font-weight: 500;
}

.field input:focus,
.phone-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.12);
}

.phone-field {
  display: grid;
  grid-template-columns: 78px 1fr;
  overflow: hidden;
}

.phone-field b {
  display: grid;
  place-items: center;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 800;
  background: var(--bg-input-label);
  border-right: 1px solid var(--border);
}

.phone-field input {
  height: 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.phone-field input:focus {
  box-shadow: none;
}

.consent-list {
  display: grid;
  gap: 7px;
  margin: 2px 0 18px;
}

.consent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  align-items: center;
}

.consent-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.consent-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.consent-row b,
.consent-row button {
  color: var(--blue);
  font-weight: 700;
}

.consent-row button {
  min-height: 24px;
  padding: 0 2px;
  border: 0;
  font-size: 12px;
  background: transparent;
}

.consent-detail {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  color: var(--text-sub);
  font-size: 12px;
  line-height: 1.5;
  border-radius: 12px;
  background: var(--blue-soft);
}

.consent-detail.is-open {
  display: block;
}

.primary-button {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #2f80ff 0%, #0b5cff 100%);
  box-shadow: 0 14px 28px rgba(20, 99, 255, 0.24);
  transition: transform 130ms ease, box-shadow 130ms ease, background 130ms ease;
}

.primary-button:hover {
  background: linear-gradient(135deg, #1e6fff 0%, #004fe5 100%);
}

.primary-button:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 10px 22px rgba(20, 99, 255, 0.2);
}

.secure-note,
.form-status,
.small-note {
  color: var(--text-muted);
}

.secure-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.secure-note img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.form-status {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

.form-status:not(:empty) {
  color: var(--blue-dark);
  font-weight: 750;
}

.main-sections,
.site-footer {
  background: var(--bg-page);
}

.price-section,
.problem-section,
.difference-section,
.review-section,
.bottom-cta {
  margin: 76px 24px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2,
.problem-section h2,
.review-section h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.18;
}

.section-head p,
.problem-section > p,
.difference-section .section-head p {
  margin: 14px 0 0;
  color: var(--text-sub);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vehicle-card {
  display: grid;
  min-height: 226px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.vehicle-card:active,
.vehicle-card.is-selected {
  transform: translateY(1px);
}

.vehicle-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 18px 44px rgba(20, 99, 255, 0.18);
}

.vehicle-image-box {
  display: grid;
  place-items: center;
  height: 108px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--bg-input-label);
}

.vehicle-image-box img {
  width: 94%;
  height: 92%;
  object-fit: contain;
}

.vehicle-copy {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  padding-top: 13px;
}

.vehicle-card h3 {
  margin: 0;
  color: var(--text-main);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.vehicle-card span {
  margin-top: auto;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.vehicle-card strong {
  display: block;
  margin: 4px 0 12px;
  color: var(--price);
  font-size: 23px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.05em;
}

.vehicle-card button {
  width: 100%;
  min-height: 39px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  background: var(--blue-soft);
}

.vehicle-card.is-selected button {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.small-note {
  margin: 16px 2px 0;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.soft-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 13px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--blue-soft);
}

.problem-section {
  padding: 34px 18px 28px;
  border: 1px solid #f3d8c7;
  border-radius: var(--radius-panel);
  background: var(--bg-problem);
  color: #2b1a0f;
}

.problem-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.problem-item,
.closing-card,
.benefit-card {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.problem-item {
  border: 1px solid #f3dfd2;
  background: #fffdfb;
}

.problem-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: var(--warning);
  font-size: 26px;
  font-weight: 850;
  border-radius: 999px;
  background: #fff3e8;
}

.problem-item h3,
.benefit-card h3 {
  margin: 0;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.32;
  letter-spacing: -0.05em;
}

.problem-item p,
.benefit-card p,
.closing-card p {
  margin: 8px 0 0;
  color: var(--text-sub);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.closing-card {
  margin-top: 22px;
  border: 1px solid #f3dfd2;
  background: #ffffff;
}

.closing-card p {
  margin: 0;
  color: var(--text-main);
  font-weight: 700;
}

.difference-list {
  display: grid;
  gap: 15px;
}

.benefit-card {
  min-height: 158px;
  border: 1px solid var(--border);
}

.benefit-icon-wrap {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  background: var(--blue-soft);
}

.review-section {
  padding: 34px 0 30px;
}

.review-section h2 {
  padding-inline: 0;
  margin-bottom: 24px;
}

.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 16px;
  overflow-x: auto;
  padding: 0 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  overflow: hidden;
  padding: 9px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--bg-card);
  box-shadow: none;
}

.review-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.bottom-cta {
  padding: 40px 24px 28px;
  text-align: center;
  border: 1px solid #d7e5ff;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.bottom-cta__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-inline: auto;
  color: var(--blue);
  font-size: 32px;
  font-weight: 850;
  border-radius: 999px;
  background: var(--blue-soft);
}

.bottom-cta h2 {
  margin-top: 24px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
}

.bottom-cta > p {
  margin: 18px 0 0;
  color: var(--text-sub);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.045em;
}

.bottom-cta ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.bottom-cta li {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 108px;
  padding: 0 8px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.045em;
  border-right: 1px solid rgba(133, 159, 194, 0.35);
}

.bottom-cta li:last-child {
  border-right: 0;
}

.bottom-cta li span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-inline: auto;
  color: var(--blue);
  border-radius: 999px;
  background: #ffffff;
}

.bottom-cta > img {
  display: block;
  width: 112%;
  max-width: none;
  margin: -4px 0 22px -6%;
  filter: drop-shadow(0 30px 28px rgba(10, 47, 97, 0.16));
}

.site-footer {
  margin: 28px 24px 0;
  padding: 0 0 30px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 768px) {
  .phone-stage {
    margin-block: 18px;
    border-radius: 36px;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding-inline: 16px;
  }

  .call-pill {
    min-height: 32px;
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero {
    min-height: 638px;
  }

  .hero-content {
    padding: 62px 24px 0;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-benefits {
    width: min(100%, 308px);
    margin-top: 34px;
  }

  .trust-badge strong {
    font-size: 13px;
  }

  .quote-card,
  .price-section,
  .problem-section,
  .difference-section,
  .review-section,
  .bottom-cta {
    margin-inline: 18px;
  }

  .quote-card {
    margin-top: -98px;
    padding: 24px 22px;
  }

  .primary-button {
    min-height: 60px;
    font-size: 22px;
  }

  .vehicle-grid {
    gap: 14px;
  }

  .vehicle-card {
    padding: 11px;
  }

  .vehicle-card strong {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Hero reference alignment pass: keep uploaded background untouched, tune only overlayed UI. */
.topbar {
  height: 86px;
  padding: 24px 28px 18px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.topbar.is-compact {
  height: 60px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.brand {
  gap: 8px;
}

.brand-symbol {
  width: 34px;
  height: 34px;
}

.topbar.is-compact .brand-symbol {
  width: 24px;
  height: 24px;
}

.brand strong {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.topbar.is-compact .brand strong {
  font-size: 18px;
}

.call-pill {
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  color: #0b4edb;
  font-size: 16px;
  font-weight: 800;
  border: 1.5px solid rgba(11, 78, 219, 0.82);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(20, 99, 255, 0.09);
}

.call-pill img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.topbar.is-compact .call-pill {
  min-height: 34px;
  padding-inline: 14px;
  font-size: 14px;
}

.topbar.is-compact .call-pill img {
  width: 16px;
  height: 16px;
}

.hero {
  min-height: 520px;
  margin-top: -86px;
}

.hero-content {
  padding: 166px 30px 0;
}

.hero-copy h1 {
  max-width: none;
  color: #071b3a;
  letter-spacing: -0.055em;
}

.hero-title-main,
.hero-title-sub {
  display: block;
  white-space: nowrap;
}

.hero-title-main {
  font-size: clamp(40px, 10.2vw, 50px);
  font-weight: 950;
  line-height: 1.04;
}

.hero-title-sub {
  margin-top: 10px;
  font-size: clamp(18px, 4.85vw, 23px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hero-copy p {
  display: none;
}

.hero-benefits {
  width: min(100%, 338px);
  margin: 42px auto 0;
  gap: 0;
}

.trust-badge {
  min-height: 116px;
  padding: 2px 8px 0;
  border: 0;
  border-right: 1px solid rgba(11, 78, 219, 0.22);
  border-radius: 0;
  background: var(--bg-card);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.trust-badge:last-child {
  border-right: 0;
}

.trust-badge__icon {
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
}

.trust-badge__icon img {
  width: 42px;
  height: 42px;
}

.trust-badge strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.quote-card {
  margin: -98px 24px 0;
  padding: 32px 24px 28px;
  border-color: rgba(229, 234, 242, 0.92);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.13);
}

.quote-card__head {
  gap: 18px;
  margin-bottom: 26px;
}

.form-icon {
  width: 64px;
  height: 64px;
  background: #eaf2ff;
}

.form-icon img {
  width: 35px;
  height: 35px;
}

.quote-card h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.quote-card__head p {
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.42;
}

.field {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0;
  height: 66px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--border-input);
  border-radius: 17px;
  background: var(--bg-input);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 99, 255, 0.12);
}

.field-label {
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 0 10px;
  background: var(--bg-input-label);
  border-right: 1px solid var(--border);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.field-label img {
  width: 23px;
  height: 23px;
}

.field input,
.phone-field {
  height: 100%;
  border: 0;
  border-radius: 0;
  background: var(--bg-card);
  box-shadow: none;
}

.field input {
  padding: 0 20px;
  font-size: 18px;
  font-weight: 650;
}

.field input:focus,
.phone-field:focus-within {
  box-shadow: none;
}

.phone-field {
  grid-template-columns: 54px minmax(0, 1fr);
}

.phone-field b {
  font-size: 17px;
  background: transparent;
  border-right: 0;
}

.phone-field input {
  height: 100%;
  padding-left: 0;
}

.consent-list {
  gap: 12px;
  margin: 20px 0 24px;
}

.consent-row label {
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: #29364c;
}

.consent-row input {
  width: 24px;
  height: 24px;
}

.consent-row button {
  min-height: 32px;
  color: #071b3a;
  font-size: 16px;
  font-weight: 700;
}

.primary-button {
  min-height: 72px;
  font-size: 30px;
  box-shadow: 0 16px 32px rgba(20, 99, 255, 0.27);
}

.secure-note {
  margin-top: 22px;
  font-size: 16px;
}

.secure-note img {
  width: 18px;
  height: 18px;
}

@media (max-width: 390px) {
  .topbar {
    height: 82px;
    padding: 23px 26px 17px;
  }

  .hero {
    min-height: 520px;
    margin-top: -82px;
  }

  .hero-content {
    padding: 154px 24px 0;
  }

  .hero-title-main {
    font-size: clamp(37px, 10.2vw, 40px);
  }

  .hero-title-sub {
    font-size: 18px;
  }

  .hero-benefits {
    width: min(100%, 326px);
    margin-top: 38px;
  }

  .trust-badge__icon {
    width: 48px;
    height: 48px;
  }

  .trust-badge__icon img {
    width: 38px;
    height: 38px;
  }

  .trust-badge strong {
    font-size: 12px;
  }

  .quote-card {
    margin-top: -92px;
    padding: 29px 22px 26px;
    border-radius: 30px;
  }

  .quote-card h2 {
    font-size: 28px;
  }

  .quote-card__head p {
    font-size: 16px;
  }

  .field {
    grid-template-columns: 104px minmax(0, 1fr);
    height: 62px;
  }

  .field-label {
    font-size: 16px;
  }

  .field input {
    font-size: 16px;
    padding-inline: 16px;
  }

  .phone-field {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .consent-list {
    gap: 10px;
    margin: 18px 0 22px;
  }

  .consent-row label {
    font-size: 15px;
  }

  .consent-row input {
    width: 22px;
    height: 22px;
  }

  .consent-row button {
    font-size: 15px;
  }

  .primary-button {
    min-height: 68px;
    font-size: 27px;
  }

  .secure-note {
    font-size: 14px;
  }
}

/* Browser annotation pass 2026-07-02: apply selected values to matching hero/form elements. */
.topbar {
  height: 42px;
  padding: 4px 28px;
}

.topbar.is-compact {
  height: 38px;
  padding: 4px 22px;
}

.brand-symbol {
  width: 24px;
  height: 24px;
}

.topbar.is-compact .brand-symbol {
  width: 21px;
  height: 21px;
}

.brand strong {
  font-size: 18px;
  font-weight: 700;
}

.topbar.is-compact .brand strong {
  font-size: 16px;
  font-weight: 700;
}

.call-pill,
.topbar.is-compact .call-pill {
  min-height: 28px;
  margin-top: 0;
  padding: 0 11px;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 90px;
}

.call-pill img,
.topbar.is-compact .call-pill img {
  width: 14px;
  height: 14px;
}

.hero {
  margin-top: -42px;
}

.hero-content {
  padding-top: 96px;
}

.hero-title-sub {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.hero-benefits {
  margin-top: 30px;
}

.quote-card {
  border-radius: 17px;
}

.form-icon {
  width: 80px;
  height: 80px;
  font-size: 30px;
}

.form-icon img {
  width: 80px;
  height: 80px;
}

.field-label {
  font-size: 14px;
  font-weight: 500;
}

.field-label img {
  width: 25px;
  height: 25px;
}

@media (max-width: 390px) {
  .topbar {
    height: 42px;
    padding: 4px 24px;
  }

  .topbar.is-compact {
    height: 38px;
    padding: 4px 18px;
  }

  .hero {
    margin-top: -42px;
  }

  .hero-content {
    padding-top: 94px;
  }

  .hero-title-sub {
    font-size: 25px;
    font-weight: 500;
  }

  .hero-benefits {
    margin-top: 28px;
  }

  .quote-card {
    border-radius: 17px;
  }

  .form-icon {
    width: 80px;
    height: 80px;
  }

  .form-icon img {
    width: 80px;
    height: 80px;
  }

  .field-label {
    font-size: 14px;
    font-weight: 500;
  }

  .field-label img {
    width: 25px;
    height: 25px;
  }
}

/* Fixed hero form start: keep the quote form anchored to one document Y-position across device presets. */
.phone-stage {
  --hero-stage-height: 520px;
  --hero-form-start-y: 420px;
}

.hero {
  height: var(--hero-stage-height);
  min-height: var(--hero-stage-height);
}

.quote-card {
  margin-top: calc(var(--hero-form-start-y) - var(--hero-stage-height));
}

@media (max-width: 390px) {
  .hero {
    height: var(--hero-stage-height);
    min-height: var(--hero-stage-height);
  }

  .quote-card {
    margin-top: calc(var(--hero-form-start-y) - var(--hero-stage-height));
  }
}

/* Hero compact pill badges: replace icon-heavy trust badges with simple text pills. */
.hero-benefits {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: max-content;
  max-width: calc(100% - 2px);
  margin: 22px 0 0;
  padding: 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(20, 99, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

.trust-badge__icon {
  display: none;
}

.trust-badge strong {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

@media (max-width: 390px) {
  .hero-benefits {
    gap: 6px;
    margin-top: 21px;
  }

  .trust-badge {
    min-height: 31px;
    padding: 0 9px;
  }

  .trust-badge strong {
    font-size: 12px;
  }
}

/* Quote form compact pass 2026-07-02: match version-2 form density while keeping V3 hero. */
.quote-card__head {
  display: block;
  margin-bottom: 24px;
}

.form-icon {
  display: none;
}

.quote-card h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.quote-card__head p {
  margin: 12px 0 0;
  color: var(--text-sub);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.04em;
  white-space: pre-line;
}

.field {
  grid-template-columns: 104px minmax(0, 1fr);
  height: 56px;
  min-height: 56px;
  margin-bottom: 14px;
}

.field-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-width: 0;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.045em;
}

.field-label img {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.field input {
  height: 100%;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 650;
}

.phone-field {
  height: 100%;
  grid-template-columns: 50px minmax(0, 1fr);
}

.phone-field b {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 16px;
  font-weight: 800;
}

.phone-field input {
  height: 100%;
  padding: 0 12px 0 0;
  font-size: 16px;
}

.consent-list {
  gap: 7px;
  margin: 16px 0 20px;
}

.consent-row {
  min-height: 22px;
}

.consent-row label {
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.consent-row input {
  width: 18px;
  height: 18px;
}

.consent-row b,
.consent-row button {
  font-size: 14px;
  font-weight: 700;
}

.consent-row button {
  min-height: 22px;
  padding: 0 0 0 8px;
}

.primary-button {
  min-height: 64px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.secure-note {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

@media (max-width: 390px) {
  .quote-card__head {
    margin-bottom: 22px;
  }

  .quote-card h2 {
    font-size: 29px;
  }

  .quote-card__head p {
    margin-top: 10px;
    font-size: 16px;
  }

  .field {
    grid-template-columns: 104px minmax(0, 1fr);
    height: 56px;
    min-height: 56px;
    margin-bottom: 14px;
  }

  .field-label {
    gap: 8px;
    padding: 0 9px;
    font-size: 14px;
    font-weight: 600;
  }

  .field-label img {
    width: 25px;
    height: 25px;
  }

  .field input,
  .phone-field input {
    font-size: 16px;
  }

  .consent-list {
    gap: 7px;
    margin: 15px 0 19px;
  }

  .consent-row label {
    gap: 8px;
    font-size: 14px;
  }

  .consent-row input {
    width: 18px;
    height: 18px;
  }

  .consent-row b,
  .consent-row button {
    font-size: 14px;
  }

  .primary-button {
    min-height: 64px;
    font-size: 20px;
    font-weight: 900;
  }

  .secure-note {
    font-size: 15px;
  }
}

/* Quote form CTA slim pass: reduce vertical weight and force helper line break. */
#quote-form .primary-button {
  min-height: 51px;
  font-size: 22px;
  font-weight: 700;
}

#quote-form .secure-note {
  margin-top: 14px;
  line-height: 1.45;
  white-space: pre-line;
}

@media (max-width: 390px) {
  #quote-form .primary-button {
    min-height: 51px;
    font-size: 22px;
    font-weight: 700;
  }

  #quote-form .secure-note {
    white-space: pre-line;
  }
}

/* Quote form bottom balance and lock alignment pass. */
#quote-form {
  padding-top: 32px;
  padding-bottom: 32px;
}

#quote-form .secure-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  column-gap: 8px;
  width: 100%;
  margin-top: 14px;
  text-align: center;
}

#quote-form .secure-note img {
  width: 28px;
  height: 28px;
  justify-self: start;
}

@media (max-width: 390px) {
  #quote-form {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  #quote-form .secure-note {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 8px;
  }

  #quote-form .secure-note img {
    width: 28px;
    height: 28px;
  }
}

/* Quote helper center correction: keep text optically centered while icon sits on the left rail. */
#quote-form {
  padding-bottom: 22px;
}

#quote-form .secure-note {
  position: relative;
  display: block;
  margin-top: 14px;
  padding-left: 0;
  text-align: center;
}

#quote-form .secure-note img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
}

@media (max-width: 390px) {
  #quote-form {
    padding-bottom: 22px;
  }

  #quote-form .secure-note {
    display: block;
    text-align: center;
  }

  #quote-form .secure-note img {
    left: 0;
    top: 50%;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
  }
}

/* Consent required marker cleanup. */
.consent-helper {
  margin: -9px 0 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.035em;
  text-align: left;
}

@media (max-width: 390px) {
  .consent-helper {
    margin: -8px 0 15px;
    font-size: 12px;
  }
}

/* Quote helper vertical centering inside the remaining bottom area. */
#quote-form {
  padding-bottom: 28px;
}

#quote-form .secure-note {
  margin-top: 22px;
}

@media (max-width: 390px) {
  #quote-form {
    padding-bottom: 28px;
  }

  #quote-form .secure-note {
    margin-top: 22px;
  }
}
/* Vehicle price section V2 match. */
.price-section {
  margin: 76px 20px 0;
}

.price-section .section-head {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.price-section .section-head h2 {
  color: var(--text-main);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.price-section .section-head p {
  margin: 0;
  color: var(--text-sub);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em;
  white-space: pre-line;
  word-break: keep-all;
}

.price-section .vehicle-grid {
  gap: 15px 13px;
}

.price-section .vehicle-card {
  align-content: stretch;
  min-height: auto;
  padding: 13px;
  border-color: #e2eaf4;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.price-section .vehicle-card:hover,
.price-section .vehicle-card:focus-visible,
.price-section .vehicle-card:active {
  border-color: #8fbbff;
  box-shadow: 0 12px 32px rgba(20, 99, 255, 0.14);
  transform: translateY(-1px);
}

.price-section .vehicle-card.is-selected {
  border-color: #1463ff;
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
  box-shadow: 0 0 0 2px rgba(20, 99, 255, 0.2), 0 14px 34px rgba(20, 99, 255, 0.16);
}

.price-section .vehicle-image-box {
  height: 104px;
  border-color: #dce5ef;
  border-radius: 18px;
  background: #f4f7fb;
}

.price-section .vehicle-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.price-section .vehicle-copy {
  display: grid;
  grid-template-rows: auto auto 38px;
  gap: 5px;
  min-height: 94px;
  padding-top: 9px;
}

.price-section .vehicle-copy span {
  display: none;
}

.price-section .vehicle-card h3 {
  margin: 0;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 800;
  line-height: 19.2px;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.price-section .vehicle-card strong {
  display: block;
  margin: 0;
  color: var(--price);
  font-size: 16px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: -0.045em;
}

.price-section .vehicle-card button {
  width: 100%;
  min-height: 38px;
  margin-top: 5px;
  border: 1px solid #bbd7ff;
  border-radius: 999px;
  color: #075ddb;
  background: #e3f0ff;
  box-shadow: inset 0 -1px 0 rgba(20, 99, 255, 0.08);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}

.price-section .vehicle-card:hover button,
.price-section .vehicle-card:focus-visible button,
.price-section .vehicle-card.is-selected button {
  color: #fff;
  border-color: #1463ff;
  background: #1463ff;
  box-shadow: 0 8px 18px rgba(20, 99, 255, 0.22);
}

.price-section .small-note {
  margin: 18px 2px 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

@media (max-width: 380px) {
  .price-section .vehicle-grid {
    gap: 14px 10px;
  }

  .price-section .vehicle-card {
    padding: 11px;
    border-radius: 20px;
  }

  .price-section .vehicle-image-box {
    height: 104px;
    border-radius: 16px;
  }

  .price-section .vehicle-copy {
    grid-template-rows: auto auto 38px;
    min-height: 94px;
  }
}
/* End vehicle price section V2 match. */
/* Vehicle price image box removal pass. */
.price-section .vehicle-image-box {
  width: calc(100% - 16px);
  height: 96px;
  margin-right: 8px;
  margin-left: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.price-section .vehicle-image-box img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  transform: scale(1.18);
  transform-origin: center;
}

@media (max-width: 380px) {
  .price-section .vehicle-image-box {
    width: calc(100% - 16px);
    height: 96px;
    margin-right: 8px;
    margin-left: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .price-section .vehicle-image-box img {
    padding: 0;
    transform: scale(1.18);
  }
}
/* End vehicle price image box removal pass. */

/* Problem image carousel section. */
.problem-section {
  margin: 76px 20px 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-main);
  overflow: hidden;
}

.problem-section h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.06em;
  text-align: left;
}

.problem-carousel {
  position: relative;
  margin-top: 24px;
  padding: 0 0 10px;
}

.problem-carousel-frame {
  position: relative;
  width: 100%;
  height: min(106vw, 468px);
  min-height: 392px;
  touch-action: pan-y;
  user-select: none;
}

.problem-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 86%;
  height: 100%;
  opacity: 0;
  transform: translateX(-50%) scale(0.9);
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1), opacity 520ms ease;
  will-change: transform, opacity;
}

.problem-slide[data-slot="0"] {
  z-index: 5;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.problem-slide[data-slot="1"] {
  z-index: 4;
  opacity: .78;
  transform: translateX(calc(-50% + 26px)) translateY(12px) scale(.94) rotate(1.2deg);
}

.problem-slide[data-slot="2"] {
  z-index: 3;
  opacity: .42;
  transform: translateX(calc(-50% + 48px)) translateY(24px) scale(.88) rotate(2deg);
}

.problem-slide[data-slot="-1"] {
  z-index: 4;
  opacity: .58;
  transform: translateX(calc(-50% - 24px)) translateY(14px) scale(.94) rotate(-1.2deg);
}

.problem-slide[data-slot="-2"] {
  z-index: 2;
  opacity: .24;
  transform: translateX(calc(-50% - 44px)) translateY(26px) scale(.88) rotate(-2deg);
}

.problem-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, .14));
  pointer-events: none;
}

.problem-section .problem-closing {
  display: block;
  margin-top: 16px;
  position: relative;
  z-index: 8;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid #dceaff;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: none;
}

.problem-section .problem-closing p {
  margin: 0;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.045em;
}

@media (max-width: 380px) {
  .problem-section {
    margin-inline: 18px;
  }

  .problem-section h2 {
    font-size: 31px;
  }

  .problem-carousel-frame {
    min-height: 370px;
  }

  .problem-slide {
    width: 88%;
  }
}
/* End problem image carousel section. */
/* Trust section V2 match pass. */
.difference-section .section-head {
  text-align: left;
}

.difference-section .section-head p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.difference-list {
  gap: 18px;
}

.difference-section .benefit-card {
  min-height: 0;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.difference-section .benefit-icon-wrap {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: var(--bg-card);
  box-shadow: none;
  overflow: visible;
}

.difference-section .benefit-icon-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.difference-section .benefit-card h3 {
  word-break: keep-all;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.32;
}

.difference-section .benefit-card p {
  margin-top: 9px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}
/* End trust section V2 match pass. */

/* Bottom CTA hero-badge reuse: remove car photo and match the hero trust badge language. */
.bottom-cta {
  padding-bottom: 34px;
}

.bottom-cta ul {
  align-items: stretch;
  margin: 32px 0 30px;
}

.bottom-cta__benefit {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 102px;
  padding: 0 8px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: -0.045em;
  word-break: keep-all;
  border-right: 1px solid rgba(133, 159, 194, 0.35);
}

.bottom-cta__benefit:last-child {
  border-right: 0;
}

.bottom-cta__benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.bottom-cta__benefit-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.bottom-cta__benefit strong {
  display: block;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: -0.045em;
}

@media (max-width: 390px) {
  .bottom-cta ul {
    margin: 28px 0 28px;
  }

  .bottom-cta__benefit {
    min-height: 96px;
    padding-inline: 6px;
    font-size: 13px;
  }

  .bottom-cta__benefit-icon {
    width: 44px;
    height: 44px;
  }

  .bottom-cta__benefit-icon img {
    width: 38px;
    height: 38px;
  }

  .bottom-cta__benefit strong {
    font-size: 13px;
  }
}

/* Bottom CTA uploaded background pass. */
.bottom-cta {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 46px 26px 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.76) 39%,
      rgba(255, 255, 255, 0) 52%,
      rgba(255, 255, 255, 0) 78%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    url("./assets/bottom-cta-bg.webp") center bottom 104px / 100% auto no-repeat,
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.bottom-cta__icon,
.bottom-cta h2,
.bottom-cta > p,
.bottom-cta ul,
.bottom-cta .primary-button,
.bottom-cta .secure-note {
  position: relative;
  z-index: 1;
}

.bottom-cta ul {
  margin: 32px 0 0;
}

.bottom-cta .primary-button {
  margin-top: 260px;
}

.bottom-cta .secure-note {
  margin-top: 18px;
}

@media (max-width: 390px) {
  .bottom-cta {
    min-height: 752px;
    padding: 42px 22px 30px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.76) 38%,
        rgba(255, 255, 255, 0) 52%,
        rgba(255, 255, 255, 0) 78%,
        rgba(255, 255, 255, 0.96) 100%
      ),
      url("./assets/bottom-cta-bg.webp") center bottom 92px / 100% auto no-repeat,
      linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  }

  .bottom-cta .primary-button {
    margin-top: 238px;
  }
}