/* =============================================================
   SIGN UP MY HEALTH – Landing Page Stylesheet
   Font: Spline Sans | Brand: #1d3785 | Accent: #fa8072
   ============================================================= */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
@font-face {
  font-family: 'Spline Sans';
  src: url('assets/splinesans.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  letter-spacing: 0.03em;
}

:root {
  --blue:   #1d3785;
  --coral:  #fa8072;
  --white:  #ffffff;
  --font:   'Spline Sans', sans-serif;
  --max-w:  1200px;
}

.material-symbols {
  font-size: inherit;
  transition: all .15s;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  font-family: var(--font);
  background: var(--white);
  line-height: 125%;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: none; }
button, input, select { font-family: inherit; }

/* ── SHARED LAYOUT ──────────────────────────────────────────── */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--white);
}
.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fill-img {
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* ── SECTION HEADINGS ───────────────────────────────────────── */
.heading-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
  line-height: 1.15;
}
.section-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--blue);
}
.section-title--white { color: var(--white); }
.section-sub {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0,0,0,0.4);
}
.section-sub--white { color: rgba(255,255,255,0.5); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── 1. ANNOUNCEMENT BANNER ─────────────────────────────────── */
@keyframes bannerSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  padding-right: 20px;
  overflow: hidden;
  width: 100%;
  animation: bannerSlideDown 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.banner__bg-color {
  position: absolute;
  inset: 0;
  background: var(--coral);
}
.banner__bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.15;
}
.banner__spacer { flex: 1 0 0; min-width: 0; }
.banner__text {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  z-index: 1;
}
.banner__close {
  flex: 1 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}
.banner__close-btn {
  width: 13.715px;
  height: 13.866px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

#close-btn {
 font-size: 24px;
 line-height: 0.5;
 font-variation-settings: 'wght' 200;
 color: rgba(255,255,255,0.6);
 transition: all .15s;
}
#close-btn:hover {
  color: white;
}

/* ── 2. NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 60px;
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.nav__logo-col,
.nav__links-col,
.nav__cta-col {
  flex: 1 0 0;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nav__links-col { justify-content: center; }
.nav__cta-col   { justify-content: flex-end; }
.nav__logo {
  width: 113px;
  height: 34px;
  position: relative;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 40px;
  font-weight: 500;
  font-size: 14px;
  color: rgba(0,0,0,0.8);
  white-space: nowrap;
}
.nav__link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: color .15s;
}
.nav__link:hover { color: var(--coral); }
.nav__cta-btn {
  background: var(--blue);
  padding: 6px 10px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .15s;
  box-sizing: border-box;
  border: 2px solid var(--blue);
}

.nav__cta-btn:hover { 
  background: white;
  color: var(--blue);}

/* ── 3. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 870px;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(-55deg,
    rgb(62,100,211) 10%,
    rgb(29,55,133) 100%);
}
.hero__bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.20;
}
.hero__inner {
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 100px 20px;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px 4px 6px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(2px);
  flex-shrink: 0;
}
.hero__badge-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.hero__badge-text {
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
}
.hero__headline {
  font-weight: 700;
  font-size: 80px;
  color: var(--white);
  width: 500px;
  line-height: 1.15;
}
.hero__headline--accent { color: var(--coral); }
.hero__stats {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-shrink: 0;
}
.hero__stat {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}
.hero__stat-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.hero__stat-text {
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
}

/* ── FORM CARD ──────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.05);
  flex: 0 1 auto;
  max-width: 800px;
  min-width: 600px;
  overflow: hidden;
  transition: height 0.35s ease;
}
.form-card__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}
.form-card__progress-label {
  font-weight: 300;
  font-size: 14px;
  color: var(--blue);
  white-space: nowrap;
}
.form-card__progress-track {
  background: #d9d9d9;
  height: 8px;
  border-radius: 100px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.form-card__progress-fill {
  position: absolute;
  inset-block: 0;
  left: 0;
  height: 100%;
  background: var(--blue);
  border-radius: 100px;
  width: 0%;
  transition: width .3s ease;
}
.form-card__heading {
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 10px;
  color: rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
}
.form-card__name-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.form-card__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex: 1 0 0;
  min-width: 0;
}
.form-card__label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  white-space: nowrap;
  line-height: 1;
}
.form-card__input {
  border: 1px solid rgba(0,0,0,0.25);
  padding: 12px;
  border-radius: 100px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.7);
  outline: none;
  background: transparent;
  transition: border-color .2s;
}
.form-card__input:focus { border-color: var(--coral); }
.form-card__input::placeholder {
  color: rgba(0,0,0,0.25);
}
.form-card__plan-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.form-card__plan-options {
  display: flex;
  gap: 24px;
  margin: 5px 0px 5px 0px;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.form-card__plan-option {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.form-card__plan-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.form-card__plan-text {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  white-space: nowrap;
}
.form-card__submit-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.form-card__security {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}
.form-card__security-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.form-card__security-text {
  font-weight: 400;
  font-size: 12px;
  color: rgba(0,0,0,0.5);
}

/* ── MULTI-STEP FORM ────────────────────────────────────────── */
.step {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.step.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-thankyou {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.step-thankyou.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-thankyou.visible { opacity: 1; transform: translateY(0); }

/* ── FORM HELPERS (steps 2–5) ───────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.form-label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1;
}
.form-label-hint {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  margin-top: 4px;
  padding-top: 4px;
}
.form-label-hint--link {
  color: rgba(0,0,0,0.5);
  text-decoration: underline;
  cursor: pointer;
}
.form-label-hint--link:hover {
  color: rgba(0,0,0,0.75);
}

/* ── State-Based Marketplace Modal ── */
.sbm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  transition: opacity 0.2s ease;
}
.sbm-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.sbm-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.sbm-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.5);
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}
.sbm-modal__close:hover { color: rgba(0,0,0,0.85); }
.sbm-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
  margin: 0 0 8px;
}
.sbm-modal__sub {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  margin: 0 0 20px;
  line-height: 1.5;
}
.sbm-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sbm-modal__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.sbm-modal__list li a:hover {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.2);
}
.sbm-modal__list li a .material-symbols-outlined {
  font-size: 16px;
  color: rgba(0,0,0,0.4);
}
.form-select {
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 100px;
  padding: 12px;
  width: 100%;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  outline: none;
  background-color: transparent;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color .2s;
  cursor: pointer;
}
.form-select:focus { border-color: var(--coral); }

/* Continue & back buttons */
.btn-continue {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 15px;
  background: var(--coral);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: 0.03em;
}
.btn-continue:hover { background: var(--blue); }
.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 15px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.2);
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.7);
  cursor: pointer;
  transition: border-color .15s;
  white-space: nowrap;
  width: 50%;
}
.btn-back:hover { border-color: rgba(0,0,0,0.4); }
.btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.btn-row .btn-continue { flex: 1; }
.btn-connect-text-mobile { display: none; }
@media (max-width: 480px) {
  .btn-connect-text { display: none; }
  .btn-connect-text-mobile { display: inline; }
}

/* Plan selection pills */
.plan-btn {
  border-radius: 8px;
  padding: 0px;
  cursor: pointer;
  display: flex;
  gap: 6px;
  align-items: center;
  user-select: none;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  background: transparent;
}

.plan-btn input { display: none; }

/* Add-on pills */
.addon-btn {
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  transition: background .15s;
  user-select: none;
  background: transparent;
}
.addon-btn:hover { background: rgba(0,0,0,0.04); }

.addon-btn input { display: none; }

.addon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

/* Step 4: plan preview cards */
.plan-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}
.plan-card {
  flex: 1;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 16px;
  pointer-events: none;
  padding: 20px;
  cursor: default;
  transition: none;
}
.plan-card:hover {
  border-color: rgba(0,0,0,0.15);
  transform: none;
  box-shadow: none;
}

.plan-card.selected {
  border-color: var(--coral) !important;
  background: rgba(250,128,114,0.06);
}

/* Error state */
.form-card__input.field-invalid,
.form-select.field-invalid {
  border-color: #e53e3e !important;
}
.field-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: -4px;
  display: none;
  padding-left: 4px;
}
.field-error.show { display: block; }
.plan-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 8px;
  position: relative;
  top: -34px;
  transform: translateX(-50%);
}
.plan-card-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,.7);
  margin-bottom: 20px;
  letter-spacing: .1em;
}
.plan-card-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.plan-card-price.selected {
  color: var(--coral);
}

.plan-card-price span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-features li {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 2px;
}

.specialist-box {
  background: rgba(29,55,133,0.04);
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  gap: 25px;
}
.specialist-box > p {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 15px;
}
.specialist-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.specialist-box li {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Thank-you / Review state */
.review-section {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.review-row:last-child { border-bottom: none; }
.review-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.review-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-align: right;
}
.thankyou-assignment-box {
  width: 100%;
  background: rgba(29,55,133,0.05);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.thankyou-assigned {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.thankyou-msg {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
}
.thankyou-disclaimer {
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  text-align: center;
}

/* ── 4. PARTNERS STRIP ──────────────────────────────────────── */
.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  background: var(--white);
}
.partners__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 75px 0;
  width: 100%;
  overflow: hidden;
}
/* Marquee container – overflow hidden, full width */
.partners__logos {
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}

/* ── Marquee animation ── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  align-items: center;
  animation: marquee 75s linear infinite;
}

.carrier-logo-wrap {
  display: grid;
  flex-shrink: 0;
}
.carrier-logo-wrap img {
  grid-area: 1/1;
  height: 80px;
  width: auto;
  object-fit: contain;
}
.carrier-logo-salmon {
  filter: brightness(0) saturate(100%) invert(63%) sepia(55%) saturate(819%) hue-rotate(316deg) brightness(103%) contrast(95%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carrier-logo-wrap:hover .carrier-logo-salmon { opacity: 1; }

/* ── 5. WHY CHOOSE US ───────────────────────────────────────── */
.why-us {
  background: rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.why-us__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 75px 20px;
  overflow: hidden;
}
.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}
.feature-row {
  display: flex;
  gap: 30px;
  align-items: stretch;
  width: 100%;
}
.feature-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 25px;
  border-radius: 25px;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.05));
  flex: 1 0 0;
  min-width: 0;
  transition: all 0.15s;
  box-sizing: border-box;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card__icon-wrap {
  background: rgba(250,128,114,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  transition: all 0.15s;
}
.feature-card__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s;
}
.feature-card__title {
  font-weight: 600;
  font-size: 18px;
  color: var(--blue);
  width: 100%;
  transition: all 0.15s;
}
.feature-card__body {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  width: 100%;
  transition: all 0.15s;
}

/* ── 6. TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.testimonials__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(-55deg,
    rgb(62,100,211) 10%,
    rgb(29,55,133) 100%);
}
.testimonials__bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.20;
}
.testimonials__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 75px 20px;
  overflow: hidden;
}
.testimonial-cards {
  display: flex;
  gap: 30px;
  align-items: stretch;
  width: 100%;
}
.testimonial-card {
  backdrop-filter: blur(2px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  padding: 25px;
  border-radius: 25px;
  transition: all 0.15s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card__stars {
  width: 109.848px;
  height: 17.985px;
  position: relative;
  flex-shrink: 0;
}
.testimonial-card__quote {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.25;
  width: 100%;
}
.testimonial-card__divider {
  background: rgba(255,255,255,0.2);
  height: 1px;
  width: 100%;
  flex-shrink: 0;
}
.testimonial-card__author {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}
.testimonial-card__avatar {
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
.testimonial-card__avatar-initials {
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
}
.testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
}
.testimonial-card__location {
  font-weight: 400;
  font-size: 12px;
}

/* ── 7. FAQ ─────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff 0%, #d0daf8 99.99%);
}
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 100px 20px;
  overflow: hidden;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
/* Item is a flex column so the answer sits below the header row */
.faq__item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  max-width: 900px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.02);
  width: 100%;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.15s;
}
.faq__item:hover {
  background: rgba(255,255,255,0.15);
}

/* Row containing question text + chevron */
.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 16px;
}
.faq__question {
  font-weight: 600;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  flex: 1 0 0;
  min-width: 0;
}
.faq__chevron-wrap {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__chevron {
  transform: rotate(-90deg);
  transition: transform .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__chevron img {
  width: 12px;
  height: 12px;
  display: block;
}
/* Rotate chevron when item is open */
.faq-item.open .faq__chevron { transform: rotate(90deg); }

/* Answer panel */
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
  transition: max-height 0.35s , padding 0.35s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 20px;
}

/* ── 8. CTA BANNER ──────────────────────────────────────────── */
.cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.cta-section__bg-color {
  position: absolute;
  inset: 0;
  background: var(--coral);
}
.cta-section__bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.35;
}
.cta-section__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 75px 20px;
  overflow: hidden;
}
.cta-section__headline {
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  text-align: center;
  max-width: 774px;
  line-height: 125%;
}
.cta-section__btn {
  background: var(--blue);
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 100px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  border: 2px solid transparent;
}
.cta-section__btn:hover { 
  background: white;
  border: 2px solid var(--blue); 
}

.cta-section__btn-text {
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  transition: all .15s;
}
.cta-section__btn:hover .cta-section__btn-text { 
  color: var(--blue); 
}

#cta-section__btn-icon {
  color: var(--white);
  line-height: 0.8;
  font-size: 20px;
  transition: all .15s;
}

.cta-section__btn:hover #cta-section__btn-icon { 
  color: var(--blue); 
}

/* ── 9. FOOTER ──────────────────────────────────────────────── */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(-55deg,
    rgb(62,100,211) 10%,
    rgb(29,55,133) 100%);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 75px 20px 30px;
  overflow: hidden;
}
.footer__top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100%;
}
.footer__brand {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}
.footer__logo {
  width: 166px;
  height: 50px;
  position: relative;
  flex-shrink: 0;
}
.footer__desc {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.25;
  width: 100%;
}
.footer__social {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-shrink: 0;
}
.footer__social-btn {
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .15s;
}
.footer__social-btn:hover { background: rgba(255,255,255,0.2); }
.footer__social-icon {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer__social-icon img {
  position: absolute;
  display: block;
  max-width: none;
}
.footer__nav {
  display: flex;
  flex: 1 0 0;
  font-weight: 500;
  gap: 80px;
  align-items: flex-start;
  line-height: 1.25;
  min-width: 0;
  font-size: 14px;
}
.footer__nav-col {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}
.footer__nav-heading { color: var(--white); width: 100%; }
.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  color: rgba(255,255,255,0.4);
  width: 100%;
}
.footer__nav-link {
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: color .15s;
}
.footer__nav-link:hover { color: rgba(255,255,255,0.7); }
.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__divider {
  background: rgba(255,255,255,0.2);
  height: 2px;
  width: 100%;
  flex-shrink: 0;
}
.footer__legal {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.25;
  text-decoration: underline;
  width: 100%;
  cursor: pointer;
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.25;
}
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-link {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.7); }

/* ── HAMBURGER & MOBILE MENU ────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}
.nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.menu-open .nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.menu-open .nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav.menu-open .nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
}
.nav.menu-open .nav__mobile-menu {
  max-height: 240px;
}
.nav__mobile-link {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.15s, background 0.15s;
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover {
  color: var(--coral);
  background: rgba(0,0,0,0.02);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* ── Tablet: ≤ 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__headline {
    font-size: 56px;
    width: auto;
  }
  .hero__inner {
    gap: 24px;
    padding: 60px 20px;
  }
  .form-card {
    min-width: unset;
    width: 100%;
  }
  .footer__top {
    gap: 48px;
  }
  .footer__nav {
    gap: 48px;
  }
}

/* ── Mobile: ≤ 768px ───────────────────────────────────────── */
@media (max-width: 768px) {

  /* Banner */
  .banner__text {
    white-space: normal;
    text-align: center;
  }

  /* Nav */
  .nav {
    overflow: visible;
  }
  .nav__links-col {
    display: none;
  }
  .nav__logo-col {
    flex: 1 0 0;
  }
  .nav__cta-col {
    flex: 0 0 auto;
  }
  .nav__cta-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__inner {
    padding: 0px 10px;
  }

  /* Hero */
  .hero {
    height: auto;
  }
  .hero__inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 16px 48px;
    gap: 28px;
  }
  .hero__left {
    align-items: center;
    text-align: center;
  }
  .hero__headline {
    font-size: clamp(2rem, 9vw, 3.25rem);
    width: auto;
    text-align: center;
  }
  .hero__stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Form card */
  .form-card {
    min-width: unset;
    width: 100%;
    padding: 20px 16px;
    border-radius: 16px;
  }
  .form-card__name-row {
    flex-direction: column;
    gap: 16px;
  }
  .form-card__name-row .form-card__field {
    width: 100%;
    flex-basis: auto;
  }

  /* Feature cards */
  .feature-row {
    flex-direction: column;
  }

  /* Testimonials */
  .testimonial-cards {
    flex-direction: column;
  }

  /* Plan preview cards (step 4) */
  .plan-cards {
    flex-direction: column;
  }

  /* Section headings */
  .section-title {
    font-size: 26px;
    text-align: center;
  }
  .section-sub {
    text-align: center;
    padding: 0px 15px;
  }

  /* Partners section */
  .partners__inner {
    padding: 50px 0;
    gap: 20px;
  }

  /* Why us */
  .why-us__inner {
    padding: 50px 16px;
    gap: 40px;
  }

  /* Testimonials */
  .testimonials__inner {
    padding: 50px 16px;
    gap: 40px;
  }

  /* FAQ */
  .faq__inner {
    padding: 50px 16px;
    gap: 40px;
  }

  /* CTA */
  .cta-section__inner {
    padding: 50px 16px;
    gap: 30px;
  }
  .cta-section__headline {
    font-size: clamp(1.6rem, 7vw, 3rem);
  }

  /* Footer */
  .footer__inner {
    padding: 50px 16px 24px;
    gap: 40px;
  }
  .footer__top {
    flex-direction: column;
    gap: 36px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }
}
