@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/host-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Host Grotesk";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/host-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #1858c4;
  --blue-bright: #3354e9;
  --blue-deep: #0d2b60;
  --blue-dark: #081f45;
  --cta-gradient: linear-gradient(167deg, var(--blue) 0%, var(--blue-deep) 100%);
  --cta-gradient-hover: linear-gradient(167deg, #134baf 0%, var(--blue-dark) 100%);
  --navy: #10233f;
  --text: #4a5a70;
  --text-soft: #5a6784;
  --pale: #eaf1fc;
  --surface: #f5f8fd;
  --border: #d8e7fb;
  --green: #1eb257;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgb(16 35 63 / 10%);
  --container: 1180px;
  --focus: #ffbf47;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--white);
  font-family: "Host Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  color: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-only,
.hero__content.hero__content--mobile {
  display: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 53px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgb(13 43 96 / 97%);
  backdrop-filter: blur(11.3px);
}

.site-header a,
.site-header img {
  display: block;
  width: 151px;
  height: 25px;
}

.hero {
  position: relative;
  height: 1100px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero__image {
  position: absolute;
  top: -1.75%;
  left: calc(68vw - 1835px);
  width: auto;
  max-width: none;
  height: 101.75%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 48%) 40.5%, transparent 56.5%);
}

.hero__radial {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 10%), transparent 65%);
}

.hero__decor {
  position: absolute;
  top: 312px;
  left: -271px;
  width: 628px;
  height: 610px;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  align-items: center;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.hero__content {
  display: flex;
  width: 609px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16.9px;
}

.hero__porto {
  width: 183px;
  height: 36px;
  object-fit: contain;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: 51.7px;
  font-weight: 400;
  letter-spacing: -1.04px;
  line-height: 61.36px;
}

.hero h1 strong {
  font-weight: 800;
}

.hero__content > p {
  max-width: 480px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 17px;
  line-height: 27.9px;
}

.hero small {
  margin-top: -12px;
  color: rgb(255 255 255 / 54%);
  font-size: 9.2px;
  line-height: 1;
}

.pill-button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--white);
  background: var(--cta-gradient);
  border-radius: 999px;
  box-shadow: 0 10px 12px rgb(24 88 196 / 32%);
  font-weight: 700;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.pill-button:hover {
  background: var(--cta-gradient-hover);
  box-shadow: 0 12px 18px rgb(13 43 96 / 32%);
}

.pill-button:active {
  background: var(--blue-dark);
}

.pill-button--hero {
  width: 376px;
  padding: 6px 6px 6px 28px;
  font-size: 16px;
}

.pill-button__icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: auto;
  place-items: center;
  flex: 0 0 40px;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
}

.pill-button__icon img {
  width: 18px;
  height: 18px;
}

.metrics {
  position: relative;
  z-index: 5;
  width: min(1084px, calc(100% - 48px));
  margin: -66px auto 0;
}

.metrics__track {
  display: grid;
  grid-template-columns: 364px 199px 251px 210px;
  gap: 20px;
}

.metric {
  display: flex;
  height: 116px;
  appearance: none;
  align-items: center;
  gap: 18px;
  padding: 20px 30px;
  color: inherit;
  font: inherit;
  text-align: left;
  background: var(--white);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 9px 22px rgb(16 35 63 / 9%);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 120ms ease;
}

.metric:is(.is-active, :hover, :focus-visible) {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue) 0%, #0f3f88 100%);
  box-shadow: 0 12px 28px rgb(16 62 136 / 24%);
}

.metric:focus-visible {
  outline: 3px solid #8bb8ff;
  outline-offset: 3px;
}

.metric:active {
  transform: scale(0.985);
}

.metric__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  background: var(--pale);
  border-radius: 14px;
  transition: background-color 180ms ease;
}

.metric__icon img {
  width: 24px;
  height: 24px;
  transition: filter 180ms ease;
}

.metric__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.metric strong {
  color: var(--navy);
  font-size: 27px;
  font-variant-numeric: tabular-nums;
  line-height: 32px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.metric span:last-child {
  color: var(--text);
  font-size: 13px;
  line-height: 18px;
  transition: color 180ms ease;
}

.metric:is(.is-active, :hover, :focus-visible) .metric__icon {
  background: rgb(255 255 255 / 12%);
}

.metric:is(.is-active, :hover, :focus-visible) .metric__icon img {
  filter: brightness(0) invert(1);
}

.metric:is(.is-active, :hover, :focus-visible) strong,
.metric:is(.is-active, :hover, :focus-visible) span:last-child {
  color: var(--white);
}

.calculator-section {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 836px;
  align-items: flex-end;
  justify-content: center;
  margin-top: -50px;
  padding: 150px 10px 50px;
  background: var(--white);
  border-radius: 80px 80px 0 0;
}

.section-heading.calculator-heading--mobile {
  display: none;
}

.calculator-card {
  position: relative;
  display: flex;
  width: min(var(--container), 100%);
  min-height: 636px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 30px 30px;
  background: var(--white);
  border: 1px solid rgb(24 88 196 / 20%);
  border-radius: 28px;
  box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}

.calculator-card__handle {
  width: 180px;
  height: 13px;
  flex: 0 0 13px;
  background: var(--blue);
  border-radius: 0 0 20px 20px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.76px;
  line-height: 1.2;
}

.section-heading p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 28px;
}

.section-heading--calculator {
  width: 100%;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 17px 7px 13px;
  color: var(--blue);
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 18px;
  text-transform: uppercase;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--blue);
  border-radius: 50%;
}

.calculator {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 21.39px;
  padding: 0 22.4px;
}

.calculator__stage {
  width: 100%;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stepper li:nth-child(odd) {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue);
  background: #eef2ff;
  border: 1.65px solid var(--blue);
  border-radius: 8.2px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.stepper li:nth-child(even) {
  width: 32px;
  height: 1.5px;
  margin: 0 5px;
  background: rgb(119 136 153 / 26%);
  border-radius: 1px;
}

.stepper li.is-complete {
  color: var(--white);
  background: var(--blue);
}

.stepper li:nth-child(even).is-complete {
  background: var(--blue);
}

.form-status {
  min-height: 19.75px;
  margin: 0 0 17.6px;
  color: #5f6c7b;
  font-size: 12.5px;
  line-height: 18.75px;
  text-align: center;
}

.form-status strong {
  color: var(--blue);
}

.form-step {
  width: 100%;
}

.form-step.is-active {
  display: flex;
  flex-direction: column;
  gap: 17.6px;
}

.objective-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 0;
}

.objective-card {
  position: relative;
  display: flex;
  width: 284px;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: #112233;
  background: var(--white);
  border: 2px solid rgb(119 136 153 / 26%);
  border-radius: 24px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.objective-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.objective-card img {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}

.objective-card span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.15px;
  line-height: 15px;
  text-transform: uppercase;
}

.objective-card.is-selected {
  color: var(--white);
  background: var(--cta-gradient);
  border-color: #2444d8;
  box-shadow: 0 8px 9px rgb(51 84 233 / 14%);
}

.objective-card.is-selected img {
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

.objective-card:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-step[data-step="1"] .form-field {
  padding-bottom: 17.6px;
}

.form-field > label {
  color: #5f6c7b;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
}

.select-wrap {
  position: relative;
}

.select-wrap select,
.form-field > input,
.currency-input,
.phone-input {
  width: 100%;
  min-height: 52px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #d7dfeb;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
}

.select-wrap select,
.form-field > input {
  padding: 12px 42px 12px 15px;
}

.select-wrap select {
  appearance: none;
}

.select-wrap select:invalid,
.select-wrap select option[value=""] {
  color: #94a3b8;
}

.select-wrap select option:not([value=""]) {
  color: var(--navy);
}

.select-wrap img {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 8px;
  pointer-events: none;
  transform: translateY(-50%);
}

.field-error {
  display: none;
  margin: 0;
  color: #b42318;
  font-size: 12px;
  line-height: 18px;
}

.field-error:not(:empty) {
  display: block;
}

.required-mark {
  color: var(--blue);
}

.field-hint {
  margin: 0;
  color: #5f6c7b;
  font-size: 12px;
  line-height: 18px;
}

.currency-input {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.currency-input > span {
  flex: 0 0 auto;
  padding-left: 15px;
  color: #5f6c7b;
}

.currency-input input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 15px 12px 12px;
  background: transparent;
  border: 0;
  outline: 0;
}

.phone-input {
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.phone-input__country {
  width: 108px;
  min-width: 108px;
  padding: 0 10px;
  background: #f8faff;
  border: 0;
  border-right: 1px solid #d7dfeb;
  border-radius: 12px 0 0 12px;
  font-size: 14px;
  cursor: pointer;
}

.phone-input input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 15px;
  background: transparent;
  border: 0;
  border-radius: 0 12px 12px 0;
  outline: 0;
}

.form-field > input::placeholder,
.currency-input input::placeholder,
.phone-input input::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-field > input[aria-invalid="true"],
.select-wrap select[aria-invalid="true"],
.currency-input:has(input[aria-invalid="true"]),
.phone-input:has(input[aria-invalid="true"]) {
  border-color: #b42318;
  box-shadow: 0 0 0 1px #b42318;
}

.form-divider {
  width: 100%;
  height: 1px;
  background: #d7dfeb;
}

.property-only {
  display: flex;
  flex-direction: column;
  gap: 17.6px;
}

.property-only[hidden] {
  display: none !important;
}

.calculator__primary,
.calculator__secondary {
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  line-height: 24px;
  text-transform: uppercase;
}

.calculator__primary {
  width: 100%;
  color: var(--white);
  background: var(--cta-gradient);
  box-shadow: 0 10px 12px rgb(13 43 96 / 22%);
}

.calculator__primary:hover {
  background: var(--cta-gradient-hover);
}

.calculator__primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.calculator__primary--mixed,
.calculator__secondary--outline {
  text-transform: none;
}

.calculator__secondary {
  color: var(--blue);
  background: var(--pale);
  border: 1px solid var(--border);
}

.calculator__secondary--outline {
  width: 100%;
  color: #4a5a70;
  background: var(--white);
  border-color: #d7dfeb;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.turnstile-slot {
  display: grid;
  width: 100%;
  max-width: 100%;
  margin-block: -8.8px;
  place-items: center;
}

.turnstile-slot:empty {
  display: none;
  margin-block: 0;
}

.turnstile-slot iframe {
  max-width: 100%;
}

.calculator__privacy {
  margin: -1px 0 0;
  color: var(--text);
  font-size: 12px;
  line-height: 17px;
  text-align: center;
}

.submission-status {
  min-height: 0;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  line-height: 19px;
  text-align: center;
}

.submission-status[data-state="progress"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

#simulator-form[data-busy="true"] {
  cursor: wait;
}

.submission-status:empty {
  display: none;
}

.submission-status a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.calculator[data-busy="true"] {
  cursor: progress;
}

.calculator__success {
  width: 100%;
  padding: 28px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.calculator__success strong {
  font-size: 24px;
}

.calculator__success p {
  max-width: 650px;
  margin: 8px auto 20px;
  color: var(--text);
}

.how-section {
  display: flex;
  min-height: 570px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
  background: var(--white);
  border-radius: 50px 50px 0 0;
}

.how-card {
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  height: 520px;
  overflow: hidden;
  grid-template-columns: 638px minmax(0, 1fr);
  background: #f5f7fd;
  border-radius: 30px;
  box-shadow: 0 0 10px rgb(0 0 0 / 6%);
}

.how-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14.7px;
  padding: 48px;
}

.how-card__copy h2 {
  max-width: 376px;
  margin: 0;
  color: #0f1b33;
  font-size: 33.9px;
  letter-spacing: -0.68px;
  line-height: 40.12px;
}

.how-card__description {
  display: grid;
  width: 100%;
  gap: 8px;
  max-width: 500px;
  text-align: left;
}

.how-card__description p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 24.8px;
}

.pill-button--compact {
  min-height: 52px;
  gap: 10px;
  padding: 12px 12px 12px 26px;
  font-size: 14.8px;
  line-height: 23px;
}

.pill-button__mini {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: rgb(255 255 255 / 20%);
  border-radius: 50%;
  font-size: 12px;
}

.how-card__media {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
}

.how-card__media.is-playing {
  background: #050b16;
}

.how-card__iframe {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-fallback-link {
  position: absolute;
  z-index: 6;
  top: 16px;
  right: 16px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--blue-deep);
  background: rgb(255 255 255 / 94%);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
  font-size: 13px;
  font-weight: 700;
}

.youtube-fallback-link:hover {
  background: var(--white);
}

.how-card__base,
.how-card__overlay,
.how-card__person,
.how-card__scrim {
  position: absolute;
}

.how-card__base,
.how-card__overlay,
.how-card__scrim {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-card__scrim {
  z-index: 2;
  background: rgb(0 0 0 / 30%);
}

.how-card__person {
  z-index: 3;
  top: -73.16%;
  left: -16.18%;
  width: 120.11%;
  max-width: none;
  height: 209.51%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  background: rgb(255 255 255 / 90%);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgb(16 35 63 / 18%);
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.how-card__media:hover .play-button,
.play-button:focus-visible {
  box-shadow: 0 14px 34px rgb(16 35 63 / 28%);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button img {
  width: 26px;
  height: 26px;
}

.advantages-section {
  display: flex;
  min-height: 889px;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 50px;
  background: var(--white);
}

.advantages-section .section-heading {
  width: min(958px, 100%);
}

.advantages-grid {
  display: grid;
  width: min(1092px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.advantage-card {
  min-height: 211px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #dce4f7;
  border-radius: 20px;
}

.advantage-card:nth-child(n + 4) {
  min-height: 233px;
}

.advantage-card__icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #eef2ff;
  border-radius: 12px;
}

.advantage-card__icon img {
  width: 24px;
  height: 24px;
}

.advantage-card__icon--double img {
  position: absolute;
}

.advantage-card h3 {
  margin: 7px 0 0;
  color: #0f1b33;
  font-size: 17px;
  line-height: 27px;
}

.advantage-card p {
  margin: 7px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 22.5px;
}

.pill-button--section {
  min-width: 191px;
  margin-top: 40px;
  padding: 6px 6px 6px 28px;
  font-size: 15px;
}

.plans-section {
  min-height: 972px;
  overflow: hidden;
  padding: 50px 0 100px;
  background: var(--white);
}

.plans-heading {
  display: flex;
  width: min(1520px, calc(100% - 80px));
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto 30px;
}

.plans-heading header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.plans-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 44px;
  letter-spacing: -0.88px;
  line-height: 47.5px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--white);
  border: 1px solid #e0e8f3;
  border-radius: 50%;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.carousel-controls button:hover {
  background: var(--pale);
  border-color: #b8cce9;
}

.carousel-controls button:active {
  transform: scale(0.96);
}

.plans-viewport {
  width: 100%;
  overflow: hidden;
}

.plans-track {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 0 max(20px, calc((100vw - 1520px) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-padding-inline: max(20px, calc((100vw - 1520px) / 2));
  scroll-snap-type: x proximity;
  touch-action: pan-x pan-y;
}

.plans-track::-webkit-scrollbar,
.video-track::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar {
  display: none;
}

.plan-card {
  width: 456px;
  flex: 0 0 456px;
  scroll-snap-align: start;
}

.plan-card__visual {
  position: relative;
  width: 456px;
  height: 520px;
}

.plan-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--blue);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgb(24 88 196 / 22%);
}

.plan-card__icon img {
  width: 20px;
  height: 20px;
}

.plan-card__body {
  width: 456px;
  min-height: 128px;
  padding: 16px 20px 15px;
  background: #f7f7f7;
  border-radius: 20px;
}

.plan-card__row {
  display: grid;
  min-height: 48px;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  align-items: center;
}

.plan-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 26px;
}

.plan-card__price {
  display: flex;
  flex-direction: column;
}

.plan-card__price small {
  color: rgb(0 0 0 / 45%);
  font-size: 12px;
  line-height: 16px;
}

.plan-card__price strong {
  color: var(--navy);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
  line-height: 32px;
  white-space: nowrap;
}

.plan-card__body > a {
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue);
  background: rgb(24 88 196 / 15%);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
}

.plan-card__body > a img {
  width: 18px;
  height: 18px;
}

.carousel-progress {
  display: flex;
  width: 232px;
  gap: 8px;
  margin: 30px auto 0;
}

.carousel-progress i {
  width: 64px;
  height: 4px;
  background: #e0e8f3;
  border-radius: 4px;
}

.carousel-progress i.is-active {
  background: var(--blue);
}

.comparison-section {
  min-height: 793px;
  padding: 100px 24px;
  background: var(--surface);
}

.comparison-layout {
  display: grid;
  width: min(var(--container), 100%);
  grid-template-columns: 420px 608px;
  gap: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.comparison-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.comparison-copy h2 {
  margin: 18px 0 16px;
  color: var(--navy);
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: 41.4px;
}

.comparison-copy p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 26.4px;
}

.pill-button--comparison {
  min-width: 298px;
  padding: 6px 6px 6px 24px;
  font-size: 15.5px;
  font-weight: 600;
}

.comparison-card {
  width: 608px;
}

.comparison-card__value {
  position: relative;
  display: flex;
  height: 118px;
  align-items: center;
  padding: 20px 60px;
  overflow: visible;
  color: var(--white);
  background: var(--blue-bright);
  border-radius: 24px;
}

.comparison-card__value div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.comparison-card__value span {
  font-size: 17px;
  font-weight: 800;
  line-height: 22px;
}

.comparison-card__value strong {
  font-size: 38px;
  font-variant-numeric: tabular-nums;
  line-height: 46px;
}

.comparison-card__value img {
  position: absolute;
  z-index: 1;
  right: -2px;
  bottom: 0;
  width: 260px;
  height: 179px;
  object-fit: contain;
  object-position: bottom right;
}

.comparison-table {
  position: relative;
  z-index: 2;
  padding: 24px 32px 28px;
  margin-top: 10px;
  color: var(--white);
  background: linear-gradient(145deg, #134090, var(--blue-bright));
  border-radius: 24px;
  box-shadow: 0 24px 25px rgb(11 44 99 / 40%);
}

.comparison-table__heads,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 132px 1fr;
  align-items: center;
  text-align: center;
}

.comparison-table__heads {
  margin-bottom: 10px;
}

.comparison-table__heads span:first-child {
  grid-column: 1;
  color: #b3c8eb;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-table__heads span:last-child {
  grid-column: 3;
  color: #82ffb2;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-row {
  min-height: 61px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.comparison-row > strong:first-child {
  color: #b3c8eb;
  font-size: 16.5px;
  font-weight: 600;
}

.comparison-row > strong:last-child {
  font-size: 17px;
  font-weight: 800;
}

.comparison-row > span {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  color: #dbe7fb;
  background: rgb(255 255 255 / 6%);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-row > span img {
  display: none;
}

.comparison-card__saving {
  display: grid;
  min-height: 88px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 21px;
  margin-top: 20px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgb(143 227 180 / 30%);
  border-radius: 16px;
}

.comparison-card__saving span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.comparison-card__saving strong {
  font-size: 32px;
  font-variant-numeric: tabular-nums;
  line-height: 38px;
  white-space: nowrap;
}

.comparison-card__saving em {
  padding: 8px 10px;
  background: rgb(255 255 255 / 15%);
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.testimonials-section {
  display: flex;
  min-height: 1182px;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  background: var(--white);
}

.testimonials-section .section-heading {
  width: min(var(--container), 100%);
}

.testimonials-section .section-heading h2 {
  font-size: 36.8px;
  line-height: 44.8px;
}

.testimonials-section .section-heading p {
  color: var(--text-soft);
  font-size: 15.7px;
  line-height: 25.6px;
}

.video-track {
  display: flex;
  width: min(var(--container), 100%);
  gap: 20px;
  padding-top: 48px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
}

.video-card {
  position: relative;
  display: flex;
  height: 387px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 15px;
  color: var(--white);
  background: linear-gradient(164deg, #0b2545, #123aae);
  border: 1px dashed rgb(255 255 255 / 25%);
  border-radius: 14px;
  flex: 0 0 calc((100% - 60px) / 4);
  overflow: hidden;
  scroll-snap-align: start;
}

.video-card__poster,
.video-card__scrim,
.video-card__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-card__poster {
  z-index: 1;
  object-fit: cover;
}

.video-card__scrim {
  z-index: 2;
  background: linear-gradient(180deg, rgb(3 15 38 / 4%) 36%, rgb(3 15 38 / 88%) 100%);
}

.video-card button {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #1b4de4;
  background: rgb(255 255 255 / 90%);
  border-radius: 50%;
  font-size: 13px;
  box-shadow: 0 10px 24px rgb(3 15 38 / 24%);
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.video-card button:hover,
.video-card button:focus-visible {
  box-shadow: 0 14px 30px rgb(3 15 38 / 36%);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-card button img {
  width: 20px;
  height: 20px;
}

.video-card > div {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.video-card strong {
  font-size: 13px;
}

.video-card span {
  color: rgb(255 255 255 / 65%);
  font-size: 10.5px;
}

.video-card.is-playing {
  padding: 0;
  background: #050b16;
  border-style: solid;
}

.video-card__iframe {
  z-index: 5;
  border: 0;
}

.video-progress {
  display: none;
}

.google-rating {
  display: none;
}

.reviews-viewport {
  width: min(var(--container), 100%);
  overflow: hidden;
}

.reviews-track {
  display: flex;
  width: 100%;
  gap: 0;
  padding-top: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
}

.review-card {
  display: flex;
  width: 367.33px;
  height: 231.4px;
  flex: 0 0 367.33px;
  flex-direction: column;
  gap: 12.8px;
  padding: 29px;
  margin: 0 9px;
  background: var(--white);
  border: 1px solid #e7edf6;
  border-radius: 24px;
  box-shadow: 0 1px 1px rgb(16 35 63 / 4%);
  scroll-snap-align: start;
}

.review-card__stars {
  display: flex;
  gap: 3px;
}

.review-card__stars img {
  width: 17px;
  height: 17px;
}

.review-card > p {
  flex: 1;
  margin: 0;
  color: #33455f;
  font-size: 15.5px;
  line-height: 1.3;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card footer > img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.review-card footer div {
  display: flex;
  flex-direction: column;
}

.review-card footer strong {
  color: var(--navy);
  font-size: 15px;
}

.review-card footer span {
  color: #8695ab;
  font-size: 13px;
}

.testimonials-nav {
  display: flex;
  width: min(var(--container), 100%);
  min-height: 50px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 14px;
}

.review-progress {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review-progress i {
  width: 9px;
  height: 9px;
  background: #e0e8f3;
  border-radius: 9px;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.review-progress i.is-active {
  width: 26px;
  background: var(--blue);
}

.testimonials-nav .carousel-controls button {
  width: 44px;
  height: 44px;
}

.testimonials-section > .pill-button {
  min-width: 261px;
  margin-top: 20px;
}

.about-section {
  min-height: 757px;
  padding: 100px 24px;
  color: var(--white);
  background: linear-gradient(155.61deg, #134090 0%, #3354E9 100%), #1858C4;
}

.about-layout {
  display: grid;
  width: min(var(--container), 100%);
  height: 557px;
  grid-template-columns: 426px 502px;
  gap: 80px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-photo {
  width: 426px;
  height: 557px;
  object-fit: contain;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-copy .eyebrow {
  color: var(--blue);
  background: var(--white);
}

.about-copy h2 {
  max-width: 422px;
  margin: 14.7px 0;
  color: var(--white);
  font-size: 38px;
  letter-spacing: -0.76px;
  line-height: 44px;
}

.about-copy p {
  margin: 0 0 14px;
  color: rgb(255 255 255 / 88%);
  font-size: 16px;
  line-height: 30px;
}

.about-actions {
  display: flex;
  gap: 15px;
  margin-top: 0;
}

.about-primary,
.about-secondary {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.about-primary {
  min-width: 180px;
  gap: 8px;
  padding: 13px 20px;
  color: var(--blue);
  background: var(--white);
}

.about-secondary {
  min-width: 187px;
  padding: 13px 27px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 75%);
}

.faq-section {
  min-height: 810px;
  padding: 75px 24px;
  background: var(--white);
}

.faq-section .section-heading {
  gap: 12px;
}

.faq-section .section-heading h2 {
  font-size: 40px;
  line-height: 48px;
}

.faq-list {
  width: min(724px, 100%);
  margin: 44px auto 0;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid #e7edf6;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgb(16 35 63 / 4%);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 63px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  text-align: left;
}

.faq-item button img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
  color: #5a6b82;
  font-size: 15px;
  line-height: 25px;
}

.site-footer {
  min-height: 393px;
  color: #b7c6e0;
  background: var(--blue-dark);
}

.footer-main {
  width: min(var(--container), calc(100% - 48px));
  min-height: 294px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  height: 149px;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.footer-brand > img {
  width: 247px;
  height: 41px;
  object-fit: contain;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgb(255 255 255 / 7%);
  border-radius: 50%;
}

.social-links img {
  width: 17px;
  height: 17px;
}

.footer-contact {
  min-height: 145px;
  padding: 36px 48px;
  border-top: 1px solid rgb(130 152 188 / 20%);
}

.footer-contact h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.8px;
  line-height: 16px;
  text-transform: uppercase;
}

.footer-contact address {
  display: grid;
  grid-template-columns: 462px 234px 199px;
  gap: 94.5px;
  font-style: normal;
}

.footer-contact address > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.footer-contact address span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  background: rgb(255 255 255 / 6%);
  border-radius: 50%;
}

.footer-contact address span img {
  width: 15px;
  height: 15px;
}

.footer-contact address p,
.footer-contact address a {
  margin: 0;
  color: #b7c6e0;
  font-size: 12.5px;
  line-height: 20px;
}

.footer-legal {
  display: flex;
  width: min(1084px, calc(100% - 48px));
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 18px;
  margin: 0 auto;
  border-top: 1px solid rgb(130 152 188 / 20%);
}

.footer-legal > p {
  max-width: 646px;
  margin: 0;
  color: #8298bc;
  font-size: 10px;
  line-height: 15px;
}

.footer-legal nav {
  display: flex;
  gap: 20px;
  color: #b7c6e0;
  font-size: 12px;
}

/* Figma fidelity pass: live desktop frame */
.hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.metric {
  border-radius: 24px;
  box-shadow: 0 24px 60px -16px rgb(16 35 63 / 22%);
}

.metric:is(.is-active, :hover, :focus-visible) {
  background: linear-gradient(167.97deg, #1858c4 0%, #0b2c63 100%);
  box-shadow: 0 24px 60px -16px rgb(16 35 63 / 22%);
}

.metric__icon {
  border-radius: 16px;
}

.metric strong {
  font-size: 32px;
  line-height: 39px;
}

.metric--years strong {
  font-size: 26px;
  line-height: 32px;
}

.metric .metric__copy > span {
  color: #5a6b82;
  font-size: 13.5px;
  line-height: 17.55px;
}

.metric:is(.is-active, :hover, :focus-visible) .metric__icon {
  background: rgb(255 255 255 / 14%);
}

.metric:is(.is-active, :hover, :focus-visible) strong {
  color: var(--white);
}

.metric:is(.is-active, :hover, :focus-visible) .metric__copy > span {
  color: #afc2e1;
}

.stepper li.is-current {
  color: var(--blue);
  background: #eef2ff;
}

.field-error:empty {
  display: none;
}

.plans-heading > .carousel-controls {
  margin-right: 220px;
}

.plans-track {
  scroll-snap-type: x proximity;
}

.carousel-progress {
  margin-right: 0;
  margin-left: max(20px, calc((100vw - 1520px) / 2));
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px;
  background: linear-gradient(164.41deg, #134090 0%, #3354e9 100%);
}

.comparison-table__heads {
  min-height: 21px;
  margin-bottom: 0;
}

.comparison-table__heads > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.comparison-table__heads > span:first-child {
  grid-column: 1;
  color: #b3c8eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.comparison-table__heads > span:last-child {
  grid-column: 3;
  color: #82ffb2;
  font-size: 17.8px;
  font-weight: 800;
  letter-spacing: 0.71px;
  text-transform: uppercase;
}

.comparison-table__heads img {
  flex: 0 0 auto;
}

.comparison-label--mobile {
  display: none;
}

.comparison-row {
  min-height: 61px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
}

.comparison-row > span img {
  display: block;
  width: 15px;
  height: 15px;
}

.comparison-card__saving em {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: transparent;
}

.comparison-card__saving em img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

.about-photo-frame {
  position: relative;
  width: 426px;
  height: 557px;
  overflow: hidden;
  border-radius: 20px;
}

.about-photo {
  position: absolute;
  top: -11.7%;
  left: 0;
  width: 100%;
  max-width: none;
  height: 117.18%;
  object-fit: cover;
}

.about-copy h2 {
  font-size: 40px;
  letter-spacing: -0.8px;
}

.about-copy p {
  color: var(--white);
  font-size: 18px;
  line-height: 29.7px;
}

.about-copy p strong {
  font-weight: 700;
}

.about-primary {
  color: var(--navy);
}

.about-secondary {
  background: rgb(255 255 255 / 12%);
  border-color: var(--white);
}

@media (max-width: 1279px) {
  .plans-heading > .carousel-controls {
    margin-right: 0;
  }

  .carousel-progress {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 959px) {
  .about-photo-frame {
    width: 100%;
  }
}
@media (max-width: 1279px) {
  .metrics {
    width: min(940px, calc(100% - 48px));
  }

  .metrics__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .metric {
    gap: 12px;
    padding: 18px;
  }

  .metric strong {
    font-size: 23px;
  }

  .how-card {
    grid-template-columns: 54% 46%;
  }

  .comparison-layout {
    grid-template-columns: minmax(320px, 420px) minmax(520px, 608px);
    gap: 34px;
  }

  .comparison-card {
    width: 100%;
  }

  .footer-contact address {
    grid-template-columns: 1.6fr 1fr 0.9fr;
    gap: 30px;
  }
}

@media (max-width: 959px) {
  .hero__shade {
    background: linear-gradient(90deg, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 58%) 55%, rgb(0 0 0 / 28%) 76%, transparent 100%);
  }

  .hero__container {
    width: calc(100% - 36px);
  }

  .hero h1 {
    max-width: 420px;
    font-size: 44px;
    line-height: 52px;
  }

  .metrics {
    width: calc(100% - 36px);
  }

  .metric {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .metric__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .how-card {
    grid-template-columns: 1fr 1fr;
  }

  .how-card__copy {
    padding: 34px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-layout {
    grid-template-columns: 1fr;
  }

  .comparison-copy {
    max-width: 608px;
    margin: 0 auto;
  }

  .comparison-card {
    width: min(608px, 100%);
    margin: 0 auto;
  }

  .video-track {
    display: flex;
  }

  .video-card {
    width: 280px;
    flex: 0 0 280px;
  }

  .about-layout {
    grid-template-columns: 40% 1fr;
    gap: 48px;
  }

  .about-photo {
    width: 100%;
  }

  .footer-contact address {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-main {
    min-height: 420px;
  }

  .site-footer {
    min-height: 520px;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 16px;
  }

  .desktop-only,
  .hero__content--desktop {
    display: none !important;
  }

  .mobile-only,
  .hero__content.hero__content--mobile {
    display: flex;
  }

  .site-header {
    position: relative;
    height: 53px;
    padding: 10px;
  }

  .site-header a,
  .site-header img {
    width: 151px;
    height: 25px;
  }

  .hero {
    width: 100%;
    height: 798px;
    margin: 0;
    border-radius: 0 0 26px 26px;
  }

  .hero__image {
    top: -70px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100% + 70px);
    object-fit: cover;
    object-position: 76% center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgb(3 15 38 / 96%) 0%, rgb(3 15 38 / 66%) 37%, transparent 67%);
  }

  .hero__radial,
  .hero__decor {
    display: none;
  }

  .hero__container {
    width: 100%;
    height: 100%;
    align-items: flex-end;
    padding: 0 20px 28px;
  }

  .hero__content--mobile {
    width: 100%;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(24px, 6.4vw, 29px);
    font-weight: 600;
    letter-spacing: -0.45px;
    line-height: 1.12;
  }

  .hero__content > p {
    max-width: 370px;
    color: rgb(255 255 255 / 82%);
    font-size: 14px;
    line-height: 1.35;
  }

  .pill-button--hero {
    width: 100%;
    min-height: 55px;
    padding-left: 22px;
    margin-top: 4px;
    font-size: 14px;
  }

  .metrics {
    width: calc(100% - 32px);
    margin: 48px auto 0;
  }

  .metrics__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .metric {
    height: 170px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 18px 10px;
    border-radius: 20px;
    text-align: center;
  }

  .metric--years {
    order: 1;
  }

  .metric--ranking {
    order: 2;
  }

  .metric--billion {
    order: 3;
  }

  .metric--clients {
    order: 4;
  }

  .metric__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 11px;
  }

  .metric__icon img {
    width: 23px;
    height: 23px;
  }

  .metric strong {
    font-size: 27px;
    line-height: 30px;
  }

  .metric span:last-child {
    max-width: 150px;
    font-size: 11px;
    line-height: 15px;
  }

  .calculator-section {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 0;
    padding: 30px 10px 50px;
    border-radius: 0;
  }

  .calculator-heading--desktop {
    display: none;
  }

  .section-heading.calculator-heading--mobile {
    display: flex;
    width: 100%;
    max-width: 420px;
    gap: 10px;
  }

  .section-heading h2 {
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.15;
  }

  .section-heading p {
    font-size: 12.5px;
    line-height: 16px;
  }

  .eyebrow {
    min-height: 28px;
    gap: 6px;
    padding: 5px 12px 5px 9px;
    font-size: 9px;
    letter-spacing: 0.38px;
    line-height: 14px;
  }

  .eyebrow i {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
  }

  .calculator-heading--mobile .eyebrow {
    min-height: 34px;
    gap: 8px;
    padding: 7px 17px 7px 13px;
    font-size: 12px;
    letter-spacing: 0.48px;
    line-height: 18px;
  }

  .calculator-heading--mobile .eyebrow i {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
  }

  .calculator-heading--mobile h2 {
    width: 100%;
    font-size: 28px;
    letter-spacing: -0.76px;
    line-height: 1.2;
  }

  .calculator-heading--mobile p {
    width: 290px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.2;
  }

  .calculator-card {
    width: 100%;
    max-width: 420px;
    min-height: 467px;
    gap: 40px;
    padding: 0 30px 30px;
    border-radius: 28px;
  }

  .calculator-card__handle {
    width: 180px;
    height: 13px;
    flex-basis: 13px;
  }

  .calculator {
    gap: 21.39px;
    padding: 0 22.4px;
  }

  .stepper {
    margin: 0;
  }

  .stepper li:nth-child(odd) {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .stepper li:nth-child(even) {
    width: 32px;
  }

  .form-status {
    margin-bottom: 17.6px;
    font-size: 12.5px;
    line-height: 18.75px;
  }

  .objective-options {
    gap: 12px;
    margin: 0;
  }

  .objective-card {
    width: calc((100% - 12px) / 2);
    min-height: 96px;
    gap: 10px;
    padding: 20px 8px;
    border-radius: 24px;
  }

  .objective-card img {
    width: 30px;
    height: 30px;
  }

  .objective-card span {
    font-size: 15px;
  }

  .form-step[data-step="1"] .form-field > label {
    text-align: center;
  }

  .select-wrap select,
  .form-field > input,
  .currency-input,
  .phone-input {
    min-height: 52px;
    font-size: 16px;
  }

  .field-error {
    text-align: left;
  }

  .calculator__primary,
  .calculator__secondary {
    min-height: 54px;
    font-size: 16px;
  }

  .how-section {
    min-height: auto;
    padding: 68px 12px 54px;
    background: #f5f7fd;
    border-radius: 0;
  }

  .how-card {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 42px;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .how-card__copy {
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    text-align: center;
  }

  .how-card__copy h2 {
    max-width: 350px;
    font-size: 31px;
    letter-spacing: -0.62px;
    line-height: 1.08;
  }

  .how-card__description {
    max-width: 360px;
  }

  .how-card__description p {
    font-size: 13px;
    line-height: 20px;
  }

  .pill-button--compact {
    min-height: 48px;
    padding-left: 22px;
    font-size: 12px;
  }

  .how-card__media {
    width: 100%;
    height: 480px;
    border-radius: 24px;
  }

  .how-card__base,
  .how-card__overlay,
  .how-card__scrim {
    border-radius: 24px;
  }

  .how-card__person {
    top: -35%;
    left: -8%;
    width: 116%;
    height: 175%;
    border-radius: 24px;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .advantages-section {
    min-height: auto;
    padding: 80px 12px 82px;
  }

  .advantages-section .section-heading {
    padding: 0 12px;
  }

  .advantages-section .section-heading h2 {
    max-width: 390px;
    font-size: 31px;
    line-height: 1.12;
  }

  .advantages-section .section-heading p {
    max-width: 360px;
    font-size: 12px;
    line-height: 18px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 50px;
  }

  .advantage-card,
  .advantage-card:nth-child(n + 4) {
    min-height: 278px;
    padding: 18px 14px;
    border-radius: 16px;
  }

  .advantage-card__icon {
    width: 38px;
    height: 38px;
  }

  .advantage-card__icon img {
    width: 21px;
    height: 21px;
  }

  .advantage-card h3 {
    margin-top: 10px;
    font-size: 13px;
    line-height: 17px;
  }

  .advantage-card p {
    margin-top: 8px;
    font-size: 11.5px;
    line-height: 17.5px;
  }

  .pill-button--section {
    min-width: 208px;
    min-height: 52px;
    margin-top: 44px;
    font-size: 13px;
  }

  .plans-section {
    min-height: auto;
    padding: 80px 0 86px;
  }

  .plans-heading {
    width: 100%;
    align-items: flex-end;
    padding: 0 12px;
    margin-bottom: 22px;
  }

  .plans-heading header {
    max-width: 255px;
    gap: 10px;
  }

  .plans-heading h2 {
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 30px;
  }

  .carousel-controls {
    gap: 8px;
  }

  .carousel-controls button {
    width: 44px;
    height: 44px;
  }

  .plans-track {
    gap: 10px;
    padding: 0 12px;
    scroll-padding-inline: 12px;
  }

  .plan-card {
    width: min(56vw, 246px);
    flex-basis: min(56vw, 246px);
  }

  .plan-card__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 457 / 520;
  }

  .plan-card__icon {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .plan-card__icon img {
    width: 17px;
    height: 17px;
  }

  .plan-card__body {
    width: 100%;
    min-height: 94px;
    padding: 10px;
    border-radius: 13px;
  }

  .plan-card__row {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .plan-card h3 {
    font-size: 12px;
    line-height: 15px;
  }

  .plan-card__price {
    align-items: center;
  }

  .plan-card__price small {
    font-size: 8px;
    line-height: 10px;
  }

  .plan-card__price strong {
    font-size: 16px;
    line-height: 21px;
  }

  .plan-card__body > a {
    height: 24px;
    margin-top: 6px;
    font-size: 9px;
  }

  .plan-card__body > a img {
    display: block;
  }

  .carousel-progress {
    width: 205px;
    margin-top: 28px;
  }

  .carousel-progress i {
    width: 60px;
    height: 3px;
  }

  .comparison-section {
    min-height: auto;
    padding: 80px 12px;
  }

  .comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .comparison-copy {
    width: 100%;
    align-items: flex-start;
  }

  .comparison-copy h2 {
    margin: 15px 0 17px;
    font-size: 29px;
    letter-spacing: -0.58px;
    line-height: 32px;
  }

  .comparison-copy p {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 20px;
  }

  .pill-button--comparison {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-left: 22px;
    margin-inline: auto;
    font-size: 12.5px;
  }

  .comparison-card {
    width: 100%;
  }

  .comparison-card__value {
    height: 98px;
    padding: 18px 20px 18px 34px;
    border-radius: 18px;
  }

  .comparison-card__value span {
    font-size: 12px;
    line-height: 18px;
  }

  .comparison-card__value strong {
    font-size: 29px;
    line-height: 34px;
  }

  .comparison-card__value img {
    width: 190px;
    height: 131px;
  }

  .comparison-table {
    padding: 18px;
    border-radius: 18px;
  }

  .comparison-table__heads,
  .comparison-row {
    grid-template-columns: 1fr 38px 1fr;
  }

  .comparison-table__heads {
    gap: 10px;
  }

  .comparison-table__heads span:first-child {
    font-size: 10px;
  }

  .comparison-table__heads span:last-child {
    font-size: 10px;
  }

  .comparison-row {
    min-height: 69px;
    margin-top: 9px;
    background: rgb(255 255 255 / 3%);
    border: 1px solid rgb(255 255 255 / 11%);
    border-radius: 4px;
  }

  .comparison-row > strong:first-child,
  .comparison-row > strong:last-child {
    font-size: 13px;
  }

  .comparison-row > span {
    min-height: 28px;
    padding: 0;
    background: rgb(255 255 255 / 7%);
    font-size: 0;
  }

  .comparison-row > span img {
    display: block;
    width: 16px;
    height: 16px;
  }

  .comparison-card__saving {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 17px 20px;
    margin-top: 18px;
    border-radius: 12px;
  }

  .comparison-card__saving span {
    font-size: 12px;
  }

  .comparison-card__saving strong {
    font-size: 28px;
  }

  .comparison-card__saving em {
    display: none;
  }

  .testimonials-section {
    min-height: auto;
    padding: 80px 12px;
    background: var(--surface);
  }

  .testimonials-section .section-heading {
    padding: 0 14px;
  }

  .testimonials-section .section-heading h2 {
    max-width: 380px;
    font-size: 31px;
    line-height: 1.12;
  }

  .testimonials-section .section-heading p {
    max-width: 370px;
    font-size: 12px;
    line-height: 19px;
  }

  .video-track {
    width: calc(100% + 12px);
    align-self: flex-start;
    gap: 20px;
    padding: 48px 12px 0 0;
  }

  .video-card {
    width: calc(100vw - 80px);
    height: 410px;
    flex: 0 0 calc(100vw - 80px);
  }

  .video-progress {
    display: flex;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
  }

  .video-progress i {
    width: 58px;
    height: 3px;
    background: #dbe4f0;
    border-radius: 3px;
  }

  .video-progress i.is-active {
    background: var(--blue);
  }

  .google-rating {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    background: var(--white);
    border: 1px solid #dfe7f2;
    border-radius: 999px;
  }

  .google-rating > strong {
    color: #4285f4;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
  }

  .google-rating div {
    display: flex;
    flex-direction: column;
  }

  .google-rating span {
    font-size: 10px;
    font-weight: 700;
  }

  .google-rating small {
    color: var(--text);
    font-size: 9px;
  }

  .reviews-viewport {
    width: calc(100% + 12px);
    align-self: flex-start;
  }

  .reviews-track {
    gap: 10px;
    padding: 14px 12px 0 0;
  }

  .review-card {
    width: calc(100vw - 80px);
    height: 250px;
    flex-basis: calc(100vw - 80px);
    padding: 24px;
    margin: 0;
  }

  .review-card > p {
    font-size: 13px;
    line-height: 1.35;
  }

  .testimonials-nav {
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
  }

  .testimonials-section > .pill-button {
    min-width: 260px;
    margin-top: 28px;
  }

  .about-section {
    min-height: auto;
    padding: 80px 24px;
    color: var(--white);
    background: linear-gradient(155.61deg, #134090 0%, #3354E9 100%), #1858C4;
  }

  .about-layout {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 48px;
  }

  .about-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 0.79;
    object-fit: contain;
  }

  .about-copy {
    color: var(--white);
  }

  .about-copy .eyebrow {
    color: var(--blue);
    background: var(--white);
  }

  .about-copy h2 {
    max-width: 360px;
    margin: 18px 0;
    color: var(--white);
    font-size: 31px;
    letter-spacing: -0.62px;
    line-height: 1.16;
  }

  .about-copy p {
    color: rgb(255 255 255 / 88%);
    font-size: 16px;
    line-height: 25px;
  }

  .about-actions {
    margin-top: 16px;
  }

  .about-primary {
    min-width: 155px;
    color: var(--blue);
    background: var(--white);
  }

  .about-secondary {
    min-width: 116px;
    color: var(--white);
    background: transparent;
    border-color: rgb(255 255 255 / 75%);
  }

  .faq-section {
    min-height: auto;
    padding: 80px 12px;
  }

  .faq-section .section-heading h2 {
    font-size: 31px;
    line-height: 36px;
  }

  .faq-list {
    margin-top: 44px;
  }

  .faq-item {
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .faq-item button {
    min-height: 62px;
    padding: 14px 18px;
    font-size: 13px;
    line-height: 17px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .faq-answer p {
    font-size: 12.5px;
    line-height: 19px;
  }

  .site-footer {
    min-height: 700px;
  }

  .footer-main {
    width: calc(100% - 48px);
    min-height: 0;
  }

  .footer-brand {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 72px 0 38px;
  }

  .footer-brand > img {
    width: 247px;
    height: 41px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
  }

  .footer-contact {
    padding: 38px 0;
  }

  .footer-contact h2 {
    margin-bottom: 24px;
  }

  .footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .footer-contact address > div {
    align-items: flex-start;
  }

  .footer-contact address p,
  .footer-contact address a {
    font-size: 12px;
    line-height: 18px;
  }

  .footer-legal {
    width: 100%;
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 24px;
    text-align: center;
  }

  .footer-legal > p {
    font-size: 9px;
    line-height: 13px;
  }

  .footer-legal nav {
    font-size: 10px;
  }
}

@media (min-width: 641px) and (max-width: 800px) {
  .about-layout {
    max-width: 600px;
    margin-inline: auto;
  }

  .about-photo-frame {
    height: 557px;
  }

  .about-photo {
    top: -9.51%;
    height: 116.07%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* Exact 440 px mobile frame, fluid down to small phones */
@media (max-width: 640px) {
  .site-header {
    position: relative;
    height: 53px;
  }

  .hero {
    width: 100%;
    height: 771px;
    margin: 0;
    background: #000;
    border-radius: 0 0 35px 35px;
  }

  .hero__picture {
    border-radius: 0 0 35px 35px;
  }

  .hero__image {
    top: -26.18%;
    right: auto;
    left: -29.29%;
    width: 168.36%;
    max-width: none;
    height: 140.82%;
    object-fit: fill;
  }

  .hero__shade {
    background: linear-gradient(180.368deg, rgb(0 0 0 / 0%) 36.47%, rgb(4 4 4 / 59%) 68.915%, #090909 101.56%);
  }

  .hero__container {
    padding: 0 20px 35px;
  }

  .hero__content--mobile {
    gap: 20.9px;
  }

  .hero h1 {
    width: 341px;
    max-width: 100%;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -1.45px;
    line-height: 1.2;
  }

  .hero h1 strong {
    font-weight: 700;
  }

  .hero__content > p {
    width: 100%;
    max-width: none;
    font-size: 17px;
    line-height: 1.2;
  }

  .pill-button--hero {
    width: 100%;
    min-height: 55px;
    padding: 6px 6px 6px 28px;
    margin-top: 5.1px;
    font-size: 16px;
  }

  .metrics {
    width: calc(100% - 50px);
    margin: 25px auto 26px;
  }

  .metrics__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 20px;
  }

  .metric {
    width: 100%;
    height: 176px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 27px 15px;
    border-radius: 20px;
    text-align: center;
  }

  .metric--billion,
  .metric--clients {
    width: calc(100% - 5px);
    height: 200px;
  }

  .metric--billion {
    justify-self: start;
    padding-top: 30px;
  }

  .metric--clients {
    justify-self: end;
    padding-top: 40px;
  }

  .metric__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 12px;
  }

  .metric__icon img {
    width: 24px;
    height: 24px;
  }

  .metric strong,
  .metric--years strong {
    font-size: 26px;
    line-height: 32px;
  }

  .metric .metric__copy > span {
    max-width: 151px;
    font-size: 13.5px;
    line-height: 18px;
  }

  .eyebrow {
    min-height: 34px;
    gap: 8px;
    padding: 7px 17px 7px 13px;
    font-size: 12px;
    letter-spacing: 0.48px;
    line-height: 18px;
  }

  .eyebrow i {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
  }

  .how-section {
    padding: 40px 20px;
    background: var(--white);
  }

  .how-card {
    width: 100%;
    height: auto;
    gap: 0;
    overflow: hidden;
    background: #f5f7fd;
    border-radius: 24px;
    box-shadow: 0 0 10px rgb(0 0 0 / 6%);
  }

  .how-card__copy {
    height: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 14.7px;
    padding: 40px 20px;
  }

  .how-card__copy h2 {
    max-width: 360px;
    font-size: 33.9px;
    letter-spacing: -0.68px;
    line-height: 40.12px;
  }

  .how-card__description {
    max-width: 360px;
  }

  .how-card__description p {
    font-size: 16px;
    line-height: 24.8px;
  }

  .pill-button--compact {
    min-width: 241px;
    min-height: 52px;
    padding: 12px 12px 12px 26px;
    font-size: 14.8px;
  }

  .how-card__media {
    width: 100%;
    height: 466px;
    flex: 0 0 466px;
    border-radius: 0 0 24px 24px;
  }

  .how-card__base,
  .how-card__overlay,
  .how-card__scrim {
    border-radius: 0 0 24px 24px;
  }

  .how-card__person {
    top: -42.7%;
    left: -8.55%;
    width: 117.1%;
    height: 150.8%;
    border-radius: 0 0 24px 24px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .advantages-section {
    padding: 50px 20px;
  }

  .advantages-section .section-heading {
    width: 100%;
    padding: 0;
  }

  .advantages-section .eyebrow,
  .testimonials-section .eyebrow {
    min-height: 31px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .advantages-section .section-heading h2 {
    max-width: 400px;
    font-size: 37.4px;
    letter-spacing: -0.75px;
    line-height: 46.21px;
  }

  .advantages-section .section-heading p {
    max-width: 400px;
    font-size: 15.6px;
    line-height: 26.28px;
  }

  .advantages-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    margin-top: 32px;
  }

  .advantage-card,
  .advantage-card:nth-child(n + 4) {
    display: grid;
    grid-template:
      "icon title" auto
      "icon copy" auto / 44px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 6px;
    min-height: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .advantage-card:nth-child(odd) {
    padding-top: 20px;
  }

  .advantage-card__icon {
    grid-area: icon;
    width: 44px;
    height: 44px;
  }

  .advantage-card__icon img {
    width: 24px;
    height: 24px;
  }

  .advantage-card h3 {
    grid-area: title;
    margin: 1px 0 0;
    font-size: 16.5px;
    line-height: 21px;
  }

  .advantage-card p {
    grid-area: copy;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .advantages-section > .pill-button--section {
    min-width: 191px;
    min-height: 55px;
    margin-top: 40px;
    font-size: 16px;
  }

  .plans-section {
    padding: 80px 0 86px;
  }

  .plans-heading {
    width: calc(100% - 40px);
    padding: 0;
    margin-bottom: 30px;
  }

  .plans-heading header {
    width: 219px;
    max-width: calc(100% - 112px);
    gap: 11.76px;
  }

  .plans-heading h2 {
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 34px;
  }

  .plans-heading > .carousel-controls {
    margin-right: 0;
  }

  .carousel-controls button {
    width: 46px;
    height: 46px;
  }

  .plans-track {
    gap: 10px;
    padding: 0 20px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
  }

  .plan-card {
    width: 238.24px;
    flex-basis: 238.24px;
  }

  .plan-card__visual {
    width: 100%;
    height: 260px;
    aspect-ratio: auto;
  }

  .plan-card__icon {
    top: 7.5px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .plan-card__icon img {
    width: 19px;
    height: 19px;
  }

  .plan-card__body {
    width: 100%;
    min-height: 124px;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 13px;
  }

  .plan-card__row {
    min-height: 66px;
    gap: 4px;
  }

  .plan-card h3 {
    font-size: 16px;
    line-height: 19px;
  }

  .plan-card__price small {
    font-size: 10px;
    line-height: 12px;
  }

  .plan-card__price strong {
    font-size: 18px;
    line-height: 25px;
  }

  .plan-card__body > a {
    height: 28px;
    margin-top: 10px;
    font-size: 12px;
  }

  .carousel-progress {
    width: 232px;
    margin: 28px auto 0;
  }

  .carousel-progress i {
    width: 64px;
    height: 3px;
  }

  .comparison-section {
    padding: 80px 20px 40px;
  }

  .comparison-layout {
    width: 100%;
    gap: 56px;
  }

  .comparison-copy h2 {
    margin: 15px 0 17px;
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 32px;
  }

  .comparison-copy p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 24.8px;
  }

  .pill-button--comparison {
    width: min(100%, 340px);
    min-height: 54px;
    gap: 8px;
    padding: 6px 6px 6px 20px;
    margin-inline: auto;
    font-size: clamp(12px, 3.35vw, 14.5px);
  }

  .pill-button--comparison > span:first-child {
    white-space: nowrap;
  }

  .comparison-card {
    width: 100%;
  }

  .comparison-card__value {
    height: 99px;
    padding: 18px 20px 18px 34px;
    border-radius: 18px;
  }

  .comparison-card__value span {
    font-size: 14px;
    line-height: 18px;
  }

  .comparison-card__value strong {
    font-size: 30px;
    line-height: 36px;
  }

  .comparison-card__value img {
    width: 190px;
    height: 131px;
  }

  .comparison-table {
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
  }

  .comparison-table__heads,
  .comparison-row {
    grid-template-columns: 1fr 43px 1fr;
  }

  .comparison-table__heads {
    min-height: 22px;
    gap: 10px;
  }

  .comparison-table__heads > span:first-child {
    font-size: 12px;
  }

  .comparison-table__heads > span:last-child {
    font-size: 17px;
  }

  .comparison-table__heads > span:first-child img {
    width: 14px;
    height: 14px;
  }

  .comparison-table__heads > span:last-child img {
    width: 18px;
    height: 18px;
  }

  .comparison-label--desktop {
    display: none;
  }

  .comparison-label--mobile {
    display: inline;
  }

  .comparison-row {
    min-height: 61px;
    margin-top: 0;
    border-radius: 4px;
  }

  .comparison-row > strong:first-child {
    font-size: 16.5px;
  }

  .comparison-row > strong:last-child {
    font-size: 17px;
  }

  .comparison-row > span {
    width: 43px;
    min-height: 32px;
    padding: 0;
    font-size: 0;
  }

  .comparison-card__saving {
    min-height: 85px;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 17px 20px;
    margin-top: 18px;
    border-radius: 12px;
  }

  .comparison-card__saving span {
    font-size: 16px;
  }

  .comparison-card__saving strong {
    font-size: 32px;
  }

  .comparison-card__saving em {
    display: none;
  }

  .testimonials-section {
    padding: 40px 20px 50px;
  }

  .testimonials-section .section-heading {
    padding: 0;
  }

  .testimonials-section .section-heading h2 {
    max-width: 400px;
    font-size: 36.8px;
    line-height: 44.8px;
  }

  .testimonials-section .section-heading p {
    max-width: 400px;
    font-size: 15.7px;
    line-height: 25.6px;
  }

  .video-track {
    width: calc(100% + 20px);
    gap: 20px;
    padding: 48px 0 0;
  }

  .video-card {
    width: 341.33px;
    height: 471px;
    flex: 0 0 341.33px;
  }

  .video-progress {
    width: 100%;
    gap: 8px;
    margin-top: 10px;
  }

  .video-progress i {
    width: 64px;
    height: 3px;
  }

  .google-rating {
    width: 100%;
    min-height: 55px;
    gap: 30px;
    padding: 12px 17px;
    margin-top: 40px;
  }

  .google-rating > img {
    width: 30.3px;
    height: 30.3px;
    object-fit: contain;
  }

  .google-rating span {
    font-size: 13px;
    line-height: 16px;
  }

  .google-rating small {
    color: #8695ab;
    font-size: 12px;
    line-height: 15px;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .reviews-viewport {
    width: calc(100% + 20px);
  }

  .reviews-track {
    gap: 0;
    padding: 14px 0 0;
  }

  .review-card {
    width: 367.33px;
    height: 231.4px;
    flex-basis: 367.33px;
    gap: 12.8px;
    padding: 29px;
    margin: 0 9px;
  }

  .review-card > p {
    font-size: 15.5px;
    line-height: 1.3;
  }

  .testimonials-nav {
    width: 100%;
    margin-top: 12px;
  }

  .testimonials-section > .pill-button {
    min-width: 261px;
    min-height: 55px;
    margin-top: 20px;
    font-size: 16px;
  }

  .about-section {
    padding: 80px 20px;
  }

  .about-layout {
    width: 100%;
    gap: 36px;
    padding: 0 20px;
  }

  .about-photo-frame {
    width: 100%;
    height: 466px;
    flex: 0 0 466px;
    border-radius: 20px;
  }

  .about-photo {
    top: -9.51%;
    width: 100%;
    height: 116.07%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .about-copy {
    width: 100%;
    min-height: 476.08px;
    gap: 14.7px;
  }

  .about-copy h2 {
    max-width: 314px;
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.8px;
    line-height: 1.2;
  }

  .about-copy p {
    margin: 0;
    font-size: 18px;
    line-height: 29.7px;
  }

  .about-actions {
    gap: 15px;
    margin-top: 0;
  }

  .about-primary {
    width: 180px;
    min-width: 180px;
    min-height: 51px;
    padding: 13px 20px;
    font-size: 16px;
  }

  .about-secondary {
    width: 112px;
    min-width: 112px;
    min-height: 55px;
    padding: 13px 20px;
    font-size: 16px;
    background: rgb(255 255 255 / 12%);
    border-color: var(--white);
  }

  .faq-section {
    padding: 50px 20px;
  }

  .faq-section .section-heading {
    gap: 12px;
  }

  .faq-section .section-heading h2 {
    font-size: 34px;
    line-height: 48px;
  }

  .faq-list {
    margin-top: 44px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .faq-item button {
    min-height: 65px;
    padding: 20px 22px;
    font-size: 16.5px;
    line-height: 24px;
  }

  .faq-answer {
    padding: 0 22px 22px;
  }

  .faq-answer p {
    font-size: 15.5px;
    line-height: 25px;
  }

  .site-footer {
    min-height: 616px;
  }

  .footer-main {
    width: 100%;
    min-height: 463.33px;
  }

  .footer-brand {
    width: calc(100% - 96px);
    height: 207.33px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 72px 0 36px;
    margin: 0 auto;
  }

  .footer-brand > img {
    width: 247px;
    height: 41.33px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .footer-contact {
    width: calc(100% - 96px);
    min-height: 256px;
    padding: 37px 0 36px;
    margin: 0 auto;
  }

  .footer-contact h2 {
    margin-bottom: 16px;
  }

  .footer-contact address {
    gap: 14px;
  }

  .footer-contact address > div {
    align-items: center;
  }

  .footer-contact address p,
  .footer-contact address a {
    font-size: 14px;
    line-height: 19.6px;
  }

  .footer-legal {
    width: 100%;
    min-height: 152.75px;
    justify-content: flex-start;
    gap: 20px;
    padding: 25px 0 43px;
  }

  .footer-legal > p {
    max-width: 440px;
    font-size: 12.5px;
    line-height: 15px;
  }

  .footer-legal nav {
    font-size: 12.5px;
    line-height: 18.75px;
  }
}
@media (max-width: 374px) {
  .calculator-card {
    padding-inline: 18px;
  }

  .calculator {
    padding-inline: 10px;
  }

  .phone-input__country {
    width: 96px;
    min-width: 96px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .advantage-card,
  .advantage-card:nth-child(n + 4) {
    min-height: 0;
  }

  .comparison-card__value {
    padding-left: 20px;
  }

  .comparison-card__value strong {
    font-size: 26px;
  }

  .comparison-card__value img {
    width: 160px;
  }

  .about-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-primary,
  .about-secondary {
    width: 100%;
  }
}

/* Focused calculator and mobile hero refinements after removing the type field. */
@media (min-width: 801px) {
  .calculator-card {
    min-height: 520px;
  }

  .form-step[data-step="1"].is-active {
    width: min(100%, 720px);
    align-items: center;
    gap: 28px;
    margin-inline: auto;
  }

  .form-step[data-step="1"] .objective-card {
    width: 256px;
  }

  .form-step[data-step="1"] > .calculator__primary {
    width: min(100%, 420px);
  }
}

@media (max-width: 800px) {
  .hero__image {
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero__shade {
    background: none;
  }

  .calculator-card {
    min-height: 400px;
  }

  .form-step[data-step="1"].is-active {
    gap: 24px;
  }
}

/* Keep the hero CTA label optically centered while the arrow stays pinned right. */
.pill-button--hero {
  position: relative;
  padding-inline: 54px;
}

.pill-button--hero > span:first-child {
  width: 100%;
  text-align: center;
}

.pill-button--hero > .pill-button__icon {
  position: absolute;
  right: 6px;
  margin-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
