/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07112b;
  --bg2: #0d1b3e;
  --bg3: #0f2050;
  --option-bg: #000000cb;
  --option-hover: #122050;
  --option-sel: #162660;
  --gold: #f5a623;
  --gold-d: #e09418;
  --teal: #4dd0e1;
  --white: #ffffff;
  --light: #cbd5e1;
  --muted: #64748b;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 6px;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(ellipse at 20% 50%, #1a2f6e 0%, #0d1b45 35%, #07112b 70%);
  min-height: 100vh;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  padding: 18px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-wrap svg {
  display: block;
}

.logo-text {
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-text strong {
  font-weight: 800;
}

.logo-tm {
  font-size: 13px;
  vertical-align: super;
  font-weight: 400;
  color: var(--light);
}

.header-cta {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.2px;
}

/* ── Main ─────────────────────────────────────────────────────────────────── */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 147px 48px;
}

.main-inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 80px;
  align-items: flex-start;
}

/* ── Left Column ──────────────────────────────────────────────────────────── */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  text-align: left;
  max-width: 575px;
  min-height: 424px;
}

.money-illustration {
  margin-bottom: 0;
}

.dont-waste {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: #e8865a;
  margin-bottom: 6px;
  text-align: left;
}

.hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 18px;
  text-align: left;
}

.hero-sub {
  font-size: 13px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 6px;
  max-width: 420px;
}

.payout-amount {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #5cb85c;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 6px;
  text-align: center;
}

.hero-tagline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
}

.hero-tagline .green {
  color: #5cb85c;
}

/* Featured On */
.featured-on {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fo-label {
  font-size: 12px;
  font-style: italic;
  color: var(--light);
  white-space: nowrap;
}

.fo-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fo-logo {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.fo-abc {
  background: #003087;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.fo-cnn {
  background: #cc0000;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.fo-fox {
  background: #003087;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.fo-cbs {
  font-size: 15px;
  color: var(--white);
}

.fo-nbc svg {
  display: block;
}

/* ── Right Column ─────────────────────────────────────────────────────────── */
.right-col {
  position: relative;
  max-width: 363px;
  min-height: 424px;
}

/* Step visibility */
.step {
  display: none;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step counter */
.step-counter {
  font-size: 14px;
  color: var(--light);
  margin-bottom: 8px;
  font-weight: 400;
}

/* Step question */
.step-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Options List */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: var(--option-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}

.option-btn input[type="radio"] {
  display: none;
}

.option-btn:hover {
  background: var(--option-hover);
  border-color: rgba(255, 255, 255, 0.22);
}

.option-btn:has(input:checked) {
  background: var(--option-sel);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Attorney options */
.attorney-opt {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 20px;
}

.atty-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.atty-meta {
  font-size: 12px;
  color: var(--light);
  font-weight: 400;
}

/* Step nav */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.btn-next {
  background: var(--gold);
  color: #1a1000;
  border: none;
  padding: 13px 28px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.2px;
}

.btn-next:hover {
  background: var(--gold-d);
  transform: translateY(-1px);
}

.btn-next:active {
  transform: translateY(0);
}

.btn-submit {
  background: var(--gold);
  color: #1a1000;
  border: none;
  padding: 13px 22px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  flex: 1;
}

.btn-submit:hover {
  background: var(--gold-d);
}

.btn-back {
  background: transparent;
  color: var(--light);
  border: 1px solid var(--border);
  padding: 13px 20px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

/* Form fields */
.form-group {
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #00000059;
  border: 1px solid #0000;
  border-radius: 0;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.form-select option {
  background: var(--bg2);
  color: var(--white);
}

.form-textarea {
  resize: none;
}

/* TCPA */
.tcpa-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Error */
.form-error {
  color: #f87171;
  font-size: 13px;
  margin-top: 10px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Thank You */
.ty-box {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.ty-row {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--light);
}

.ty-row:last-child {
  border-bottom: none;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 20px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto 10px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.footer-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-right a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--light);
}

.footer-disclaimer {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 11px;
  color: #546074;
  line-height: 1.6;
}


/* Make hero texts smaller and not bold */
.hero-title,
.payout-amount,
.hero-tagline {
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1.4;
}

/* Ensure the green span matches size */
.hero-tagline .green {
  /* font-size: 14px !important; */
  font-weight: 400 !important;
}

/* place money icon and label on one row */
.hero-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.money-illustration {
  flex: 0 0 auto;
}

.dont-waste {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  /* adjust to theme */
  line-height: 1.4;
}

/* prevent layout shift when selecting an option */
.options-list .option-btn {
  box-sizing: border-box;
  height: 42px;
  /* fixed height so selection doesn't change size */
  padding: 12px 16px;
  /* keep padding constant */
  background-color: #00000059;
  border: 1px solid #000;
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: background-color .12s ease, box-shadow .12s ease;
  /* no transform/scale */
  -webkit-tap-highlight-color: transparent;
}

/* visual changes that don't affect layout */
.options-list .option-btn:hover,
.options-list .option-btn:focus,
.options-list .option-btn.selected {
  background-color: #00000059;
  box-shadow: 0 6px 18px rgba(2, 8, 23, 0.25);
  border: 1px solid #55c7d0;
  color: #55c7d0;
}

/* hide native inputs (keeps label clickable) */
.options-list .option-btn input[type="radio"],
.options-list .option-btn input[type="checkbox"] {
  display: none;
}

.step-sp-radio-label.is-active {
  color: #55c7d0;
  border-color: #55c7d0;
}

/* Mobile: avoid tap/scroll jumps */
.options-list .option-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  /* prefer browser not to interpret gestures as scroll */
}

/* keep input focus visual without changing layout */
.options-list .option-btn:focus,
.options-list .option-btn.selected {
  outline: none;
  box-shadow: 0 6px 18px rgba(2, 8, 23, 0.25);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-inner {
    grid-template-columns: 1fr 420px;
    gap: 48px;
  }
}

@media (max-width: 1023px) {
  .main-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main {
    padding: 32px 24px;
    align-items: flex-start;
  }

  .site-header {
    padding: 16px 24px;
  }

  .site-footer {
    padding: 16px 24px;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 1023px) {
  .footer-disclaimer {
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .step-nav {
    flex-direction: column-reverse;
  }

  .btn-next,
  .btn-submit,
  .btn-back {
    width: 100%;
    text-align: center;
  }

  .header-cta {
    font-size: 14px;
  }

  .dont-waste {
    font-size: 24px !important;
    text-align: center;
  }

  .header-inner {
    flex-direction: column;
  }

  .hero-row {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0px;
    margin-bottom: 10px;
  }

  .hero-title {
    margin-bottom: 10px;
  }

  .main-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .left-col {
    align-items: center;
    text-align: center;
    min-height: inherit;
    max-width: 100%;
  }

  .right-col {
    min-height: inherit;
    margin: 0 auto;
    margin-bottom: 15px;

  }

  .main {
    padding: 7px 15px;
    align-items: flex-start;
  }

  .hero-title {
    text-align: center;
  }

  div#stepCounter1,
  .step-question {
    text-align: center;
  }

  .hero-title,
  .payout-amount,
  .hero-tagline {
    font-size: 18px !important;
  }

  .footer-inner,
  .footer-right {
    justify-content: center;
  }

  .hero-title,
  .payout-amount,
  .hero-tagline {
    font-size: 18px !important;

  }

  .step-counter {
    text-align: center;
  }

  .site-header {
    padding: 10px 24px;
  }
}