.hero {
  position: relative;
  padding: 32px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  width: 1400px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, oklch(58% 0.22 252 / 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid oklch(58% 0.22 252 / 0.18);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-600);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { opacity: .7; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.2); }
}

.hero h1 {
  font-size: clamp(38px, 7.5vw, 64px);
  margin-top: 18px;
}
.hero h1 .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 18%;
  background: var(--green);
  z-index: -1;
  opacity: 0.55;
  border-radius: 4px;
}
.hero-sub {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 540px;
}

.trust-badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, var(--blue-50), oklch(96% 0.04 200));
  padding: 14px 18px 14px 14px;
  border-radius: var(--r);
  border: 1px solid oklch(58% 0.22 252 / 0.15);
  max-width: 520px;
}
.trust-shield {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink);
  display: grid; place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.trust-shield svg { width: 18px; height: 18px; }

.hero-meta {
  margin-top: 26px;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--ink-3);
  font-size: 13px;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta-item svg { color: var(--green-600); width: 16px; height: 16px; }

.trust-faces {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faces-stack {
  display: flex;
  position: relative;
}
.faces-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faces-copy .stars {
  color: oklch(78% 0.18 80);
  font-size: 14px;
  letter-spacing: 1px;
}
.faces-copy span {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.faces-copy strong { font-weight: 700; color: var(--ink); }

.lead-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.lead-card-tag {
  position: absolute;
  top: 18px; right: 18px;
  background: oklch(95% 0.02 145);
  color: var(--green-600);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.lead-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
  padding-right: 100px;
}
.lead-card-lead {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 18px;
}

.progress {
  display: flex; align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.progress-step {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.progress-step::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue), var(--green-600));
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(.7,.2,.2,1);
}
.progress-step.done::after { transform: translateX(0); }
.progress-step.active::after { transform: translateX(0); }

.step-label {
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 12px;
  font-weight: 500;
}
.step-label strong { color: var(--ink); font-weight: 700; }

.field-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}
.field-hint {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.provider-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 6px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.provider-chip:hover { border-color: var(--blue); background: var(--blue-50); }
.provider-chip.active {
  border-color: var(--blue);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px oklch(58% 0.22 252 / 0.15);
}
.provider-chip.active::after {
  content: "✓";
  position: absolute;
  top: 6px; right: 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
}
.provider-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  font-family: var(--display);
  letter-spacing: -0.02em;
  color: var(--white);
}
.provider-chip span { font-size: 11px; color: var(--ink-2); font-weight: 600; }

.opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.opt-card {
  padding: 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all .15s;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.opt-card:hover { border-color: var(--blue); }
.opt-card.active {
  border-color: var(--blue);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px oklch(58% 0.22 252 / 0.15);
}
.opt-card strong { font-size: 15px; }
.opt-card small { color: var(--ink-3); font-size: 12px; }

.upload {
  border: 2px dashed var(--line-2);
  border-radius: var(--r);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  background: var(--bg-2);
}
.upload:hover { border-color: var(--blue); background: var(--blue-50); }
.upload svg { color: var(--blue); width: 28px; height: 28px; margin-bottom: 8px; }
.upload p { font-size: 14px; font-weight: 600; color: var(--ink); }
.upload small { font-size: 12px; color: var(--ink-3); }

.bonus-list {
  display: flex; flex-direction: column; gap: 8px;
}
.bonus-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all .15s;
}
.bonus-row:hover { border-color: var(--blue); }
.bonus-row.active {
  border-color: var(--blue);
  background: var(--blue-50);
  box-shadow: 0 0 0 3px oklch(58% 0.22 252 / 0.15);
}
.bonus-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bonus-icon svg { width: 18px; height: 18px; }
.bonus-body { flex: 1; }
.bonus-body strong { display: block; font-size: 14px; }
.bonus-body small { color: var(--ink-3); font-size: 12px; }

.input-stack { display: flex; flex-direction: column; gap: 10px; }
.input-row {
  position: relative;
}
.input-row svg.input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-3);
  width: 18px; height: 18px;
}
.input-row input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: all .15s;
}
.input-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(58% 0.22 252 / 0.15);
}

.gdpr {
  display: flex; gap: 10px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}
.gdpr input { margin-top: 2px; accent-color: var(--blue); }

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  align-items: center;
}
.form-actions .btn { flex: 1; }
.btn-back {
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14px;
}
.btn-back:hover { background: var(--line); }

.form-success {
  text-align: center;
  padding: 30px 20px 10px;
}
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-green);
}
.form-success h4 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--ink-2); font-size: 14px; }
.savings-stat {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blue-50), oklch(96% 0.08 145));
  border: 1px solid var(--line);
}
.savings-stat .num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.savings-stat .lab { font-size: 12px; color: var(--ink-2); margin-top: 4px; }

.hero-v2 {
  background: oklch(96.5% 0.012 240);
  padding: 52px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.hero-illus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-illus-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: oklch(92% 0.02 240);
}

.hero-illus-caption {
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
  font-style: italic;
  max-width: 280px;
  line-height: 1.5;
}

.hero-v2-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-v2-headline {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 46px);
  margin-bottom: 0;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0;
}

.hero-v2-headline .h2-accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-v2-headline .h2-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
}

.type-wrap {
  display: inline-flex;
  align-items: baseline;
  min-height: 1.1em;
  color: var(--blue);
}
.type-text { white-space: nowrap; }
.type-caret {
  display: inline-block;
  width: 3px;
  align-self: stretch;
  margin-left: 4px;
  border-radius: 2px;
  background: var(--green);
  animation: typeCaret 1s step-end infinite;
}
@keyframes typeCaret {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .type-caret { animation: none; }
}

.promo-box {
  background: oklch(94% 0.04 252);
  border: 2px solid oklch(80% 0.1 252);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.promo-box--form {
  align-items: stretch;
  gap: 0;
  height: 100%;
  padding: 18px 18px 14px;
}
.promo-box-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 4px 14px;
}

.promo-box-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}

.promo-box-title span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 2px;
}

.promo-box-sub {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 7px;
}

.promo-box-sub .brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--ink);
  color: var(--green);
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  transition: background .15s, transform .15s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.promo-btn:hover { background: var(--blue-700); transform: translateY(-1px); }
.promo-btn svg { width: 16px; height: 16px; }

.step-dots {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all .3s cubic-bezier(.7,.2,.2,1);
  background: var(--white);
  padding: 0;
  line-height: 1;
}

.step-dot.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 5px oklch(58% 0.22 252 / 0.18);
}

.step-dot.done {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--line-2);
  margin: 0 6px;
  border-radius: 999px;
  transition: background .4s;
}

.step-connector.done { background: var(--green-600); }

.step3-hero-img {
  margin: 0 -22px 18px -22px;
  height: 190px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 720px) {
  .hero { padding: 60px 0 100px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.85fr;
    gap: var(--s4);
    align-items: center;
  }
  .lead-card { padding: 30px; }
  .lead-card h3 { font-size: 24px; }
  .hero-v2-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero-illus { gap: 20px; }
  .step3-hero-img { margin: 0 -30px 20px -30px; }
}
@media (min-width: 960px) {
  .hero h1 { font-size: 64px; }
}

.tf-embed {

  position: relative;
  flex: 1 1 auto;
  min-height: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
}
.tf-embed > div,
.tf-embed .tf-v1-widget,
.tf-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.tf-disclaimer {
  margin: 0;
  padding: 12px 6px 0;
  border-top: 1px solid oklch(80% 0.1 252 / 0.55);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-2);
  text-align: center;
}
.tf-disclaimer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tf-disclaimer a:hover { color: var(--ink); }

.tf-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  color: var(--ink-3);
  font-size: 11.5px;
  font-weight: 500;
}
.tf-trust span { display: inline-flex; align-items: center; gap: 5px; }
.tf-trust svg { width: 13px; height: 13px; }

@media (max-width: 719px) {
  .tf-embed, .tf-embed > div, .tf-embed iframe { min-height: 440px; }
}
