/* ================================================================
   Gallardo Law Firm – Landing Page Styles
   ================================================================ */

:root {
  --navy-900: #0b1628;
  --navy-800: #0f1d35;
  --navy-700: #152842;
  --navy-600: #1f3455;
  --navy-500: #2a4367;
  --gold: #f5b841;
  --gold-bright: #fbbf24;
  --gold-dim: #d4a544;
  --green: #10b981;
  --green-dark: #059669;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html {
  color-scheme: dark;
  background: #0b1628 !important;
  min-height: 100%;
}

html, body { height: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0b1628 !important;
  background-color: #0b1628 !important;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* TOP BAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5b841 0%, #d4a544 60%, #8b6914 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(245,184,65,0.25);
}
.brand-logo svg { width: 20px; height: 20px; color: #0b1628; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  overflow: hidden;
}
.brand-text .name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text .sub {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #ffffff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(16,185,129,0.35);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.call-btn:hover { transform: translateY(-1px); }
.call-btn .phone-icon {
  width: 14px; height: 14px;
  animation: ring 2s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0); }
}

/* PROGRESS */
.progress-wrap {
  padding: 12px 20px 0;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
  display: none;
}
.progress-wrap.visible { display: block; }
.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 10px;
}
.progress-msg {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.progress-msg.encouraging { color: var(--gold); }
.progress-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(245,184,65,0.4);
}

/* CONTAINER */
.container {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  width: 100%;
}
.container.quiz-mode {
  min-height: calc(100vh - 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen { display: none; animation: fadeIn 0.3s ease; }
.screen.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* INTRO PAGE */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: livePulse 2s ease-in-out infinite;
}
.live-badge strong { color: var(--green); font-weight: 700; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.hero { text-align: center; padding: 8px 0 10px; }
.hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero h1 .gold-text { color: var(--gold); }
.hero .money-icon {
  font-size: 28px;
  margin: 8px 0 12px;
  display: inline-block;
}
.hero p.sub {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.55;
}

.cta-green {
  display: block;
  width: 100%;
  padding: 20px 20px;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(16,185,129,0.35);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.cta-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(16,185,129,0.45);
}
.cta-green:active { transform: translateY(0); }

.time-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
}
.time-note svg { width: 14px; height: 14px; color: var(--gold); }

/* Compensation card */
.comp-card {
  margin: 26px 0 20px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(245,184,65,0.06) 0%, rgba(245,184,65,0.02) 100%);
  border: 1px solid rgba(245,184,65,0.2);
  border-radius: 14px;
  text-align: center;
}
.comp-card .eyebrow {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.comp-card .eyebrow::before { content: '✓'; color: var(--green); }
.comp-card .range {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.comp-card .fine { font-size: 12px; color: var(--text-muted); }

/* Trust bullets */
.trust-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.trust-bullets > div {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.trust-bullets svg { width: 14px; height: 14px; color: var(--green); }

/* Trust logos */
.trust-logos-heading {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 12px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}
.trust-logo {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 64px;
}
.trust-logo .tl-name {
  font-size: 11px;
  font-weight: 700;
  color: #0b1628;
  letter-spacing: -0.01em;
}
.trust-logo .tl-name.google span:nth-child(1) { color: #4285f4; }
.trust-logo .tl-name.google span:nth-child(2) { color: #ea4335; }
.trust-logo .tl-name.google span:nth-child(3) { color: #fbbc05; }
.trust-logo .tl-name.google span:nth-child(4) { color: #4285f4; }
.trust-logo .tl-name.google span:nth-child(5) { color: #34a853; }
.trust-logo .tl-name.google span:nth-child(6) { color: #ea4335; }
.trust-logo .tl-name.yelp { color: #c41200; }
.trust-logo .tl-stars {
  color: #00b67a;
  font-size: 10px;
  letter-spacing: 1px;
}
.trust-logo .tl-stars.yelp-stars { color: #c41200; }

.section-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 10px 0 14px;
  text-align: center;
}

/* Verdicts */
.verdicts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.verdict {
  padding: 16px 12px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-align: center;
}
.verdict .amt {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.verdict .case-type {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  line-height: 1.3;
}
.disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
}

/* Reviews */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.review {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-meta .name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.review-meta .source {
  font-size: 11px;
  color: var(--text-dim);
}
.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  margin-right: 4px;
}
.review-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}

/* Offices */
.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 28px;
}
.office {
  text-align: center;
  padding: 14px 8px;
  background: var(--navy-800);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.office .pin { font-size: 16px; margin-bottom: 4px; }
.office .city { font-size: 13px; font-weight: 700; color: #fff; }
.office .state { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

/* Bottom CTA */
.bottom-cta {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  border: 1px solid rgba(245,184,65,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  margin-top: 12px;
}
.bottom-cta h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: #fff;
}
.bottom-cta p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.bottom-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  font-size: 14px;
}

/* QUIZ */
h2 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.subtitle {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 26px;
}

.choices { display: flex; flex-direction: column; gap: 12px; }
.choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: var(--navy-800);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-family: inherit;
}
.choice:hover {
  border-color: var(--gold);
  background: var(--navy-700);
  transform: translateY(-1px);
}
.choice:active { transform: translateY(0); }
.choice .arrow {
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.15s ease;
}
.choice:hover .arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* Inputs */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-800);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--navy-700);
}
.form-group .error-msg {
  display: none;
  color: #f87171;
  font-size: 12px;
  margin-top: 4px;
}
.form-group.has-error input { border-color: #ef4444; }
.form-group.has-error .error-msg { display: block; }

.btn-primary {
  width: 100%;
  padding: 18px 20px;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
  transition: all 0.15s ease;
  box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-primary:disabled {
  background: var(--navy-600);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

/* Consent */
.consent-box {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
}
.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.consent-row label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  cursor: pointer;
}
.legal-fine {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.legal-fine a { color: var(--text-dim); text-decoration: underline; }

/* Confirm screen */
.confirm-icon {
  width: 72px;
  height: 72px;
  margin: 8px auto 18px;
  border-radius: 50%;
  background: rgba(245,184,65,0.1);
  border: 2px solid rgba(245,184,65,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.confirm-icon svg { width: 36px; height: 36px; }
.confirm-title {
  text-align: center;
  margin-bottom: 6px;
}
.confirm-box {
  background: var(--navy-800);
  border: 1px solid rgba(245,184,65,0.15);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 22px;
}
.confirm-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  text-align: center;
  margin: 0;
}
.confirm-text strong { color: var(--gold); font-weight: 700; }

.btn-confirm {
  width: 100%;
  padding: 22px 20px;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(16,185,129,0.4);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-confirm:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(16,185,129,0.5);
}
.btn-confirm:active { transform: translateY(0); }
.btn-confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-confirm .confirm-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* OTP */
.otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 20px 0 24px;
}
.otp-inputs input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: var(--navy-800);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
}
.otp-inputs input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--navy-700);
}
.resend {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
}
.resend a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

/* End pages */
.end-card { text-align: center; padding: 20px 0; }
.end-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 44px;
  font-weight: 800;
}
.end-icon.success {
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border: 2px solid rgba(16,185,129,0.3);
}
.end-icon.neutral {
  background: rgba(148,163,184,0.1);
  color: var(--text-dim);
  border: 2px solid rgba(148,163,184,0.2);
}
.end-card h2 { font-size: 26px; margin-bottom: 12px; }
.end-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 20px;
}
.end-card .highlight {
  background: rgba(245,184,65,0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  text-align: left;
  margin: 20px 0;
  line-height: 1.5;
}
.end-card .highlight strong { color: var(--gold); }
.end-card .call-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 16px;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

/* Loader */
.loader-screen { text-align: center; padding: 40px 0; }
.spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  font-family: inherit;
  font-weight: 500;
}
.back-btn:hover { color: #fff; }

/* Social proof */
.social-proof {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--navy-800);
  border: 1px solid rgba(245,184,65,0.2);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
  width: calc(100% - 32px);
  z-index: 200;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-proof.show { transform: translateX(-50%) translateY(0); }
.sp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  position: relative;
}
.sp-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--navy-800);
  animation: livePulse 1.5s ease-in-out infinite;
}
.sp-text {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--text);
}
.sp-text .sp-name { font-weight: 700; color: #fff; }
.sp-text .sp-time {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.sp-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

/* Footer */
.footer {
  text-align: center;
  padding: 28px 20px;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 30px;
  background: var(--navy-900);
}
.footer a { color: var(--text-dim); text-decoration: none; margin: 0 6px; }
.footer .offices-foot {
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--text-dim);
}
.footer .offices-foot strong { color: #fff; }

/* ============================================================== */
/* TABLET                                                           */
/* ============================================================== */
@media (max-width: 640px) {
  .container { padding: 22px 16px 100px; }
  .container.quiz-mode { padding-bottom: 100px; }
}

/* ============================================================== */
/* MOBILE                                                           */
/* ============================================================== */
@media (max-width: 480px) {
  .topbar { padding: 10px 14px; gap: 8px; }
  .brand-logo { width: 32px; height: 32px; }
  .brand-logo svg { width: 18px; height: 18px; }
  .brand-text .name { font-size: 13px; }
  .brand-text .sub { font-size: 9px; letter-spacing: 0.02em; }
  .call-btn { padding: 8px 12px; font-size: 12px; }
  .call-btn .phone-icon { width: 12px; height: 12px; }

  .container { padding: 20px 14px 110px; }
  .container.quiz-mode { padding-bottom: 110px; }

  .live-badge { font-size: 12px; padding: 7px 12px; margin-bottom: 18px; }

  .hero h1 { font-size: 26px; line-height: 1.15; letter-spacing: -0.02em; }
  .hero .money-icon { font-size: 24px; margin: 6px 0 10px; }
  .hero p.sub { font-size: 14px; margin-bottom: 20px; }

  .cta-green { padding: 17px 18px; font-size: 15px; border-radius: 12px; }
  .time-note { font-size: 11px; gap: 5px; padding: 0 4px; line-height: 1.4; }
  .time-note svg { width: 12px; height: 12px; flex-shrink: 0; }

  .comp-card { padding: 18px 16px; margin: 22px 0 18px; }
  .comp-card .eyebrow { font-size: 10px; }
  .comp-card .range { font-size: 24px; }
  .comp-card .fine { font-size: 11px; }

  .trust-bullets { gap: 10px 14px; font-size: 11px; margin-bottom: 22px; }

  .trust-logos { gap: 6px; margin-bottom: 26px; }
  .trust-logo { padding: 10px 6px; min-height: 56px; }
  .trust-logo .tl-name { font-size: 10px; }
  .trust-logo .tl-stars { font-size: 9px; }

  .section-heading { font-size: 11px; margin: 6px 0 12px; letter-spacing: 0.08em; }

  .verdict { padding: 14px 10px; }
  .verdict .amt { font-size: 20px; }
  .verdict .case-type { font-size: 10px; }
  .disclaimer { font-size: 9px; margin-bottom: 24px; }

  .review { padding: 14px; }
  .review-avatar { width: 36px; height: 36px; font-size: 14px; }
  .review-meta .name { font-size: 13px; }
  .review-meta .source { font-size: 10px; }
  .review-text { font-size: 12.5px; line-height: 1.55; }

  .office { padding: 12px 6px; }
  .office .city { font-size: 12px; }
  .office .state { font-size: 10px; }

  .bottom-cta { padding: 22px 18px; }
  .bottom-cta h3 { font-size: 18px; }
  .bottom-cta p { font-size: 13px; margin-bottom: 16px; }

  h2 { font-size: 21px; line-height: 1.3; margin-bottom: 10px; }
  .subtitle { font-size: 14px; margin-bottom: 22px; }
  .choice { padding: 16px 16px; font-size: 15px; }
  .choice .arrow { font-size: 16px; }

  .form-group label { font-size: 12px; }
  .form-group input { padding: 13px 14px; font-size: 16px; }
  .btn-primary { padding: 16px 18px; font-size: 15px; }

  .consent-box { padding: 16px; }
  .consent-row label { font-size: 12px; }
  .legal-fine { font-size: 10px; }

  .otp-inputs { gap: 6px; }
  .otp-inputs input { width: 40px; height: 48px; font-size: 19px; border-radius: 8px; }

  .end-icon { width: 72px; height: 72px; font-size: 36px; }
  .end-card h2 { font-size: 22px; }
  .end-card p { font-size: 14px; }
  .end-card .highlight { font-size: 13px; padding: 12px 14px; }
  .end-card .call-now { padding: 16px; font-size: 15px; }

  .social-proof { bottom: 10px; padding: 10px 12px; max-width: calc(100% - 20px); border-radius: 10px; }
  .sp-avatar { width: 32px; height: 32px; font-size: 12px; }
  .sp-text { font-size: 11px; line-height: 1.3; }
  .sp-text .sp-time { font-size: 9px; }
  .sp-close { font-size: 18px; padding: 0 2px; }

  .footer { padding: 22px 16px; font-size: 10px; }
}

/* ============================================================== */
/* SMALL MOBILE (375px and under)                                   */
/* ============================================================== */
@media (max-width: 375px) {
  .brand-text .sub { display: none; }
  .call-btn { padding: 7px 10px; font-size: 11px; }
  .hero h1 { font-size: 23px; }
  .comp-card .range { font-size: 21px; }
  .trust-bullets { font-size: 10.5px; gap: 8px 12px; }
  .trust-logo { min-height: 48px; padding: 8px 4px; }
  .trust-logo .tl-name { font-size: 9px; }
  .trust-logo .tl-stars { font-size: 8px; letter-spacing: 0.5px; }
  .otp-inputs input { width: 36px; height: 44px; font-size: 17px; }
  .sp-text { font-size: 10.5px; }
}

/* ============================================================== */
/* VERY NARROW (< 340px)                                            */
/* ============================================================== */
@media (max-width: 340px) {
  .hero h1 { font-size: 21px; }
  .otp-inputs { gap: 4px; }
  .otp-inputs input { width: 32px; height: 40px; font-size: 15px; }
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}