:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #d8d8d8;
  --card: #f4f4f4;
  --input-border: #b8bfce;
  --blue: #0b63f6;
  --footer-blue: #0d72f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
}

.page-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 72px 22px 52px;
}

.hero {
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.logo {
  width: 150px;
  max-width: 38vw;
  height: auto;
}

.eyebrow {
  margin: 0 auto 28px;
  max-width: 780px;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.28;
  font-weight: 400;
}

.headline {
  margin: 0 auto 30px;
  max-width: 820px;
  font-size: clamp(35px, 6vw, 52px);
  line-height: 1.16;
  font-weight: 300;
  letter-spacing: .4px;
}

.headline span {
  display: block;
  margin-bottom: 8px;
}

.headline .blue {
  color: var(--blue);
  font-weight: 600;
}

.subcopy {
  margin: 0 auto 84px;
  max-width: 770px;
  font-size: clamp(18px, 2.8vw, 26px);
  line-height: 1.3;
}

.underline {
  text-decoration: underline;
  font-weight: 700;
}

.subcopy em {
  text-decoration: underline;
  font-style: italic;
}

.form-section {
  margin-bottom: 108px;
}

.lead-form {
  width: min(100%, 720px);
  margin: 0 auto;
  background: var(--card);
  color: #0e0e0e;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04);
}

.steps-track {
  position: relative;
}

.step {
  display: none;
}

.step.is-active {
  display: block;
}

.step-content {
  padding: 64px 78px 54px;
  min-height: 492px;
}

.fields-step {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.field-group {
  display: block;
}

.field-group span,
legend {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  height: 78px;
  border: 2px solid var(--input-border);
  background: #f7f7f7;
  border-radius: 12px;
  padding: 0 34px;
  font-size: clamp(20px, 2.6vw, 22px);
  color: #222;
  outline: none;
}

input::placeholder {
  color: #9b9b9b;
}

input:focus {
  border-color: #8fa0c9;
}

.step-footer {
  display: grid;
  align-items: stretch;
  background: var(--footer-blue);
  color: rgba(255,255,255,.78);
  min-height: 94px;
}

.single-nav {
  grid-template-columns: 1fr 118px;
}

.split-nav,
.submit-nav {
  grid-template-columns: 118px 1fr 190px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
}

.nav-button,
.submit-button {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}

.nav-button:hover,
.submit-button:hover {
  background: rgba(255,255,255,.07);
}

.nav-button span {
  display: inline-block;
  transform: translateY(-1px);
}

.submit-button {
  font-size: clamp(24px, 2.8vw, 28px);
  letter-spacing: .2px;
  font-weight: 500;
  background: rgba(0,0,0,.08);
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.radio-step {
  padding-top: 72px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-size: clamp(24px, 3vw, 28px);
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 34px;
  height: 34px;
  margin: 0;
  accent-color: var(--footer-blue);
}

.city-step {
  min-height: 340px;
  padding-top: 82px;
}

.form-message {
  margin: 18px auto 0;
  width: min(100%, 720px);
  text-align: center;
  min-height: 24px;
  color: #87d3a6;
  font-size: 16px;
}

.lower-copy {
  margin: 0 auto 72px;
  max-width: 760px;
  text-align: center;
  font-size: clamp(18px, 2.7vw, 24px);
  line-height: 1.45;
}

.lower-copy p {
  margin: 0 0 10px;
}

.divider {
  width: min(100%, 640px);
  height: 2px;
  margin: 0 auto 42px;
  background: rgba(255,255,255,.8);
}

.footer {
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.footer-logo {
  width: 88px;
  height: auto;
}

.copyright {
  margin: 0 0 28px;
  font-size: clamp(16px, 2.6vw, 26px);
  line-height: 1.35;
}

.disclaimer {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .page-wrap {
    padding: 54px 16px 42px;
  }

  .subcopy {
    margin-bottom: 56px;
  }

  .form-section {
    margin-bottom: 84px;
  }

  .lead-form {
    width: calc(100% - 12px);
  }

  .step-content {
    padding: 46px 26px 44px;
    min-height: auto;
  }

  .fields-step {
    gap: 34px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    height: 72px;
    padding: 0 24px;
    border-radius: 10px;
  }

  .single-nav {
    grid-template-columns: 1fr 96px;
  }

  .split-nav,
  .submit-nav {
    grid-template-columns: 96px 1fr 132px;
  }

  .step-footer {
    min-height: 84px;
  }

  .nav-button {
    font-size: 34px;
  }

  .radio-step {
    padding-top: 40px;
  }

  .radio-option {
    gap: 14px;
    margin-bottom: 22px;
  }

  .radio-option input[type="radio"] {
    width: 28px;
    height: 28px;
  }

  .city-step {
    padding-top: 54px;
  }
}

/* Smaller overall sizing override */
html { font-size: 14px; }
body { font-size: 0.92rem; }
.logo-wrap svg, .logo-wrap img, .logo { width: 72px !important; max-width: 72px !important; }
.hero { padding-top: 18px !important; padding-bottom: 10px !important; }
.hero .eyebrow, .eyebrow { font-size: 0.9rem !important; margin-bottom: 16px !important; }
.hero h1, .headline, .main-headline { font-size: clamp(2rem, 6vw, 3.1rem) !important; line-height: 1.1 !important; letter-spacing: 0.01em !important; }
.hero .subhead, .subhead { font-size: 1.55rem !important; line-height: 1.15 !important; }
.hero .helper, .helper-text, .instructions { font-size: 0.98rem !important; margin-top: 14px !important; }
.container, .wrapper, .page-wrap { max-width: 760px !important; }
.form-card, .multi-step-form, .form-shell, .card { width: min(86vw, 720px) !important; max-width: 720px !important; min-height: auto !important; }
.form-card .card-body, .multi-step-form .card-body, .form-shell .card-body, .card-body { padding: 40px 42px !important; }
.form-group, .field-group { margin-bottom: 26px !important; }
label, .field-label { font-size: 0.95rem !important; margin-bottom: 10px !important; }
input, select, textarea, .field-input { font-size: 0.95rem !important; padding: 14px 16px !important; min-height: 52px !important; }
.option, .radio-option, .choice { font-size: 1rem !important; margin-bottom: 14px !important; }
.form-footer, .card-footer, .step-footer { min-height: 60px !important; font-size: 0.95rem !important; }
.arrow-btn, .next-btn, .prev-btn, .submit-btn { width: 60px !important; height: 60px !important; font-size: 1.5rem !important; }
.step-indicator, .progress-text { font-size: 0.95rem !important; }
.info-section, .footer-copy, .bottom-copy { margin-top: 46px !important; }
.info-section p, .footer-copy p, .bottom-copy p { font-size: 0.95rem !important; line-height: 1.45 !important; }
.footer, .site-footer { padding-top: 26px !important; padding-bottom: 28px !important; }
.footer .logo-wrap svg, .footer .logo-wrap img, .site-footer .logo { width: 54px !important; max-width: 54px !important; }
.footer p, .site-footer p, .disclaimer { font-size: 0.9rem !important; line-height: 1.4 !important; }
@media (max-width: 768px) {
  .hero h1, .headline, .main-headline { font-size: clamp(1.75rem, 8vw, 2.5rem) !important; }
  .hero .subhead, .subhead { font-size: 1.28rem !important; }
  .form-card, .multi-step-form, .form-shell, .card { width: min(88vw, 620px) !important; }
  .form-card .card-body, .multi-step-form .card-body, .form-shell .card-body, .card-body { padding: 28px 24px !important; }
  input, select, textarea, .field-input { min-height: 48px !important; padding: 12px 14px !important; }
  .arrow-btn, .next-btn, .prev-btn, .submit-btn { width: 54px !important; height: 54px !important; }
}
