/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0A0A0F;
  --charcoal: #141420;
  --yellow: #F5C100;
  --yellow-hover: #D4A800;
  --red: #CC0000;
  --red-hover: #AA0000;
  --white: #FFFFFF;
  --offwhite: #F7F7FA;
  --gray: #444444;
  --muted: #888888;
  --green: #1A7A1A;
  --form-bg: #FFFDF5;
  --form-header: #2A2518;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-glow-yellow: 0 0 40px rgba(245,193,0,0.15);
  --shadow-glow-yellow-sm: 0 0 20px rgba(245,193,0,0.1);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.3);

  /* Typography Scale — 4 sizes only */
  --font-h1: 3rem;        /* 48px — Main headings, hero, power banner */
  --font-h2: 1.5rem;      /* 24px — Sub-headings, stat values, case amounts */
  --font-h3: 1.125rem;    /* 18px — Card titles, step titles, form titles */
  --font-body: 0.875rem;  /* 14px — Body text, labels, legal, small text */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ========== UTILITIES ========== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-dark { color: var(--black); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-red { color: var(--red); }
.lowballed { letter-spacing: -0.025em; }
.text-yellow { color: var(--yellow); }
.text-white-30 { color: rgba(255,255,255,0.3); }
.text-white-60 { color: rgba(255,255,255,0.6); }
.block { display: block; }
.relative { position: relative; }
.hidden { display: none !important; }
.uppercase { text-transform: uppercase; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-18 { margin-top: 1.125rem; }
.mb-14 { margin-bottom: 3.5rem; }
.font-black { font-weight: 900; }
.text-xl { font-size: var(--font-h3); }

.text-gradient {
  color: var(--yellow);
}

.yellow-underline-text {
  color: var(--yellow);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.squiggle-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.625rem;
}
.squiggle-underline-lg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
}

.scroll-mt { scroll-margin-top: 6rem; }

.mobile-only { display: none; }
.desktop-only { display: flex; }

/* ========== NAV ========== */
.nav {
  position: relative;
  z-index: 50;
  background: var(--black);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-size: var(--font-h2);
  font-weight: 700;
}
.logo-yellow {
  color: var(--yellow);
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}
.logo-underline {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 4px;
}
.logo-white { color: var(--white); }
.nav-sub {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone-btn {
  background: var(--yellow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-glow-yellow-sm);
  transition: all 0.3s;
  color: var(--black);
  font-weight: 700;
  font-size: var(--font-body);
}
.nav-phone-btn:hover {
  background: var(--yellow-hover);
  box-shadow: var(--shadow-glow-yellow);
}
.icon-phone { width: 1rem; height: 1rem; color: var(--black); }
.nav-phone-wrap { display: flex; flex-direction: column; align-items: center; }
.phone-small { display: none; }

/* ========== HERO ========== */
.hero {
  background: var(--black);
  overflow: hidden;
}
.hero .container {
  padding-top: 3.125rem;
  padding-bottom: 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hero-h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.mobile-break { display: none; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-top: 2rem;
  line-height: 1.625;
}
.hero-sub.mt-3 { margin-top: 1rem; }
.trust-strip {
  display: flex;
  gap: 1rem;
  margin-top: 3.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.375rem 0.875rem;
}
.trust-item span {
  color: rgba(255,255,255,0.8);
  font-size: var(--font-body);
}
.icon-check-sm { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
.hero-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: var(--font-body);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ========== FORM CARD ========== */
.form-card {
  box-shadow: var(--shadow-glass);
  border-radius: 1rem;
  overflow: hidden;
}
.form-header {
  background: var(--form-header);
  padding: 1.25rem 2rem 1.5rem;
  border-radius: 1rem 1rem 0 0;
}
.form-label {
  color: var(--yellow);
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.form-title {
  color: var(--white);
  font-weight: 800;
  font-size: var(--font-h3);
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}
.underline-text {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.form-subtitle {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  margin-top: 0.25rem;
}
.form-body {
  background: var(--form-bg);
  padding: 1.5rem 2rem 2rem;
  border-radius: 0 0 1rem 1rem;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.field-group { position: relative; }
.form-input {
  width: 100%;
  color: var(--black);
  padding: 0.875rem 1rem;
  min-height: 48px;
  border-radius: 0.75rem;
  border: 2px solid #e0e0e0;
  background: var(--offwhite);
  font-size: var(--font-body);
  transition: all 0.3s;
  outline: none;
}
.form-input:focus {
  border-color: var(--yellow);
  box-shadow: var(--shadow-glow-yellow-sm);
}
.form-input.error { border-color: var(--red); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field-error {
  color: var(--red);
  font-size: var(--font-body);
  margin-top: 0.25rem;
  display: none;
}
.field-error.visible { display: block; }
.btn-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  min-height: 48px;
  white-space: nowrap;
}
.btn-submit:hover {
  background: var(--yellow-hover);
  box-shadow: var(--shadow-glow-yellow);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-legal-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
}
.form-checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1.5px solid #ccc;
  border-radius: 3px;
  position: relative;
}
.form-checkbox:checked {
  background: var(--white);
  border-color: #999;
}
.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-legal {
  color: var(--muted);
  font-size: calc(var(--font-body) * 0.9);
  line-height: 1.4;
}
.form-body .btn-submit {
  margin-top: 1rem;
}
.form-legal a {
  text-decoration: underline;
  transition: color 0.3s;
}
.form-legal a:hover { color: var(--black); }

/* Form Success */
.form-success {
  box-shadow: var(--shadow-glass);
  border-radius: 1rem;
  border: 1px solid rgba(245,193,0,0.3);
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.success-inner {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
}
.success-icon {
  width: 4rem;
  height: 4rem;
  background: var(--yellow);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-glow-yellow-sm);
}
.success-icon svg { width: 2rem; height: 2rem; }
.success-title { color: var(--black); font-weight: 700; font-size: var(--font-h3); margin-bottom: 0.75rem; }
.success-text { color: var(--gray); }
.success-text + .success-text { margin-top: 0.5rem; }
.success-text strong { color: var(--black); font-weight: 600; }

/* ========== STATS BAR ========== */
.stats-bar { background: var(--black); }
.stats-divider { border-top: 1px solid rgba(255,255,255,0.05); }
.stats-inner { padding: 18px 1rem 1.5rem; text-align: center; }
.stats-headline {
  color: rgba(255,255,255,0.6);
  font-size: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}
.stat-item { text-align: center; flex: 1; max-width: 280px; padding: 0 2.5rem; }
.stat-bordered { border-left: 1px solid rgba(255,255,255,0.15); border-right: 1px solid rgba(255,255,255,0.15); }
.stat-value { font-size: var(--font-h2); font-weight: 900; line-height: 1; }
.stat-label {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.375rem;
}

/* ========== SECTION HEADINGS ========== */
.section-h2 {
  font-size: var(--font-h1);
  font-weight: 900;
  line-height: 1.1;
}
.section-sub {
  font-size: var(--font-h3);
}

/* ========== MONEY PROOF ========== */
.money-proof {
  background: var(--offwhite);
  padding: 5rem 0;
}
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.case-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 0;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}
.case-desktop {
  display: flex;
  flex-direction: column;
}
.case-mobile { display: none; text-align: center; }
.case-info {
  background: var(--black);
  padding: 1.25rem 1.5rem;
  width: auto;
  flex-shrink: 0;
  text-align: center;
}
.case-title { color: var(--white); font-weight: 700; font-size: var(--font-h3); }
.case-injury { color: rgba(255,255,255,0.6); font-size: var(--font-body); }
.case-numbers { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.25rem 1.5rem; text-align: center; }
.case-offer, .case-recovery { }
.case-label {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.case-amount {
  color: rgba(10,10,15,0.3);
  font-size: var(--font-h2);
  font-weight: 700;
}
.strikethrough { text-decoration: line-through; }
.case-arrow { color: var(--muted); font-size: var(--font-h3); }
.case-amount-final { color: var(--black); font-size: var(--font-h2); font-weight: 900; }
.case-diff { text-align: center; padding: 1rem 1.5rem 1.25rem; border-top: 1px solid rgba(0,0,0,0.06); }
.case-badge {
  display: inline-block;
  background: rgba(26,122,26,0.1);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  margin-top: 0.25rem;
  color: var(--green);
  font-size: var(--font-h2);
  font-weight: 900;
}
.cta-text-dark {
  color: var(--black);
  font-weight: 700;
  font-size: var(--font-h3);
  margin-bottom: 1.5rem;
}
.disclaimer-sm {
  color: var(--muted);
  font-size: var(--font-body);
  margin-top: 1rem;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== CTA BUTTON ========== */
.btn-cta {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: var(--font-body);
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--yellow-hover);
  box-shadow: var(--shadow-glow-yellow);
}

/* ========== POWER BANNER ========== */
.power-banner {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 5rem 0;
}
.power-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.power-over {
  color: var(--white);
  font-weight: 900;
  font-size: var(--font-h1);
  text-transform: uppercase;
}
.power-amount {
  font-weight: 900;
  font-size: 5rem;
}
.power-asterisk {
  color: rgba(255,255,255,0.3);
  font-size: var(--font-h2);
  vertical-align: super;
}
.notable-label {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.notable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.notable-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: center;
}
.notable-amount { font-size: var(--font-h2); font-weight: 900; }
.notable-type {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.power-tagline {
  color: var(--yellow);
  font-size: var(--font-h2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 2rem;
}
.power-disclaimer {
  color: rgba(255,255,255,0.3);
  font-size: var(--font-body);
  text-align: center;
  margin-top: 0.75rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}
.testimonials-sub {
  color: var(--muted);
  font-size: var(--font-h3);
  margin-top: 0.75rem;
}
.testimonials-carousel-wrap {
  position: relative;
  margin-top: 3rem;
}
.testimonials-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: var(--charcoal);
  border-radius: 1rem;
  padding: 2rem;
  min-width: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  color: var(--yellow);
  font-size: var(--font-h1);
  line-height: 1;
  font-family: serif;
  margin-bottom: 0.5rem;
}
.quote-text {
  color: rgba(255,255,255,0.85);
  font-size: var(--font-body);
  line-height: 1.7;
  flex: 1;
}
.quote-footer {
  margin-top: 1.5rem;
}
.quote-author-name {
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-body);
}
.quote-author-role {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  font-style: italic;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
  z-index: 2;
}
.carousel-arrow-left { left: -1rem; }
.carousel-arrow-right { right: -1rem; }
.carousel-arrow:hover {
  background: var(--yellow-hover);
  box-shadow: var(--shadow-glow-yellow);
}
.testimonial-disclaimer {
  color: var(--muted);
  font-size: var(--font-body);
  margin-top: 1.5rem;
}

/* ========== ATTORNEY ========== */
.attorney {
  background: var(--offwhite);
  padding: 5rem 0;
}
.attorney-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}
.attorney-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.attorney-bottom { margin-top: 2rem; }
.attorney-signature {
  font-family: 'Alex Brush', cursive;
  font-size: 4rem;
  color: var(--black);
  line-height: 1.1;
}
.attorney-credentials {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.attorney-bottom .btn-cta {
  padding: 1.25rem 3rem;
  font-size: var(--font-h3);
}
.attorney-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

/* ========== NO COST ========== */
.no-cost {
  background: var(--black);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}
.no-cost-line-top,
.no-cost-line-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,193,0,0.5), transparent);
}
.no-cost-line-top { top: 0; }
.no-cost-line-bottom { bottom: 0; }
.no-cost-sub {
  color: rgba(255,255,255,0.6);
  font-size: var(--font-h3);
  margin-top: 2rem;
}
.no-cost-bold {
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-h3);
  margin-top: 0.75rem;
  white-space: nowrap;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.comparison-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.comparison-theirs { border: 1px solid rgba(255,255,255,0.1); }
.comparison-ours { border: 1px solid rgba(245,193,0,0.4); }
.comparison-label {
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.comparison-items { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.comparison-item {
  background: rgba(255,255,255,0.05);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.comparison-quote {
  color: rgba(255,255,255,0.4);
  font-size: var(--font-body);
  font-style: italic;
}
.comparison-answer {
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-body);
}
.comparison-vs {
  display: flex;
  align-items: center;
}
.comparison-vs span {
  color: rgba(255,255,255,0.2);
  font-size: var(--font-h2);
  font-weight: 900;
  text-transform: uppercase;
}
.no-cost-punch {
  color: var(--yellow);
  font-size: var(--font-h1);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ========== ALREADY TALKED ========== */
.already-talked {
  background: var(--offwhite);
  padding: 5rem 0;
}
.scenarios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.scenario-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 40px 1fr;
  align-items: center;
  gap: 0.75rem;
}
.scenario-situation { color: var(--black); font-weight: 700; font-size: var(--font-h3); }
.scenario-arrow { color: var(--yellow); font-size: var(--font-h3); text-align: center; }
.scenario-status { color: var(--green); font-weight: 900; font-size: var(--font-h3); text-align: right; }

/* ========== FINAL CTA ========== */
.final-cta-white {
  background: var(--white);
  padding: 5rem 0;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.final-cta-right .form-card { max-width: 90%; margin-left: auto; }
.final-cta-left {
  border-left: 5px solid var(--yellow);
  padding-left: 2.5rem;
}
.final-cta-h2 {
  font-size: var(--font-h1);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
}
.steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.step { display: flex; align-items: flex-start; gap: 1rem; }
.step-num {
  color: var(--yellow);
  font-size: var(--font-h1);
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.step-title { color: var(--black); font-weight: 700; font-size: var(--font-h3); }
.step-sub { color: #6B7280; font-size: var(--font-body); margin-top: 0.25rem; }

.tagline-strip {
  background: var(--black);
  padding: 3rem 0;
}
.tagline-text {
  color: rgba(255,255,255,0.6);
  font-size: var(--font-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
.footer-heading {
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: var(--font-body);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-legal {
  color: rgba(255,255,255,0.2);
  font-size: var(--font-body);
  margin-top: 3rem;
  line-height: 1.625;
}

/* ========== STICKY BAR (mobile) ========== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10,10,15,0.9);
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease-out;
}
.sticky-bar.visible { display: block; }
.sticky-bar button {
  width: 100%;
  height: 3.5rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: var(--font-body);
}
.sticky-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
}
.sticky-phone-number {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.sticky-phone-icon.icon-phone {
  width: 1.4rem;
  height: 1.4rem;
}
.sticky-phone-sub {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  background: var(--white);
  min-height: 100vh;
}
.legal-container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1rem 6rem;
}
.back-link {
  color: var(--red);
  font-size: var(--font-body);
  transition: text-decoration 0.3s;
}
.back-link:hover { text-decoration: underline; }
.legal-h1 {
  font-size: var(--font-h1);
  font-weight: 900;
  color: var(--black);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.legal-date {
  color: var(--muted);
  font-size: var(--font-body);
  margin-bottom: 3rem;
}
.legal-content {
  color: var(--gray);
  font-size: var(--font-body);
  line-height: 1.625;
}
.legal-content section + section { margin-top: 2rem; }
.legal-content h2 {
  font-size: var(--font-h3);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.legal-content li { margin-top: 0.25rem; }
.legal-content p + p { margin-top: 0.75rem; }

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .container-sm { padding: 0 1.5rem; }
  .container-md { padding: 0 1.5rem; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-h1 { font-size: clamp(34px, 10.5vw, 52px); }
  .mobile-break { display: inline; }
  .hero-sub { font-size: clamp(13px, 4vw, 18px); margin-top: 1rem; }
  .hero .container { padding-top: 1.5rem; padding-bottom: 2rem; }

  .trust-strip { flex-wrap: wrap; }

  .attorney-grid { grid-template-columns: 1fr; gap: 2rem; }
  .attorney-left { order: 2; text-align: center; }
  .attorney-right { order: 1; }
  .attorney-signature { font-size: 2.5rem; }
  .attorney-photo { max-width: 400px; margin: 0 auto; }

  .final-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .final-cta-left { border-left: none; padding-left: 0; border-top: none; padding-top: 0; }
  .final-cta-h2 { font-size: var(--font-h1); }
  .final-cta-right .form-card { max-width: 100%; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  :root {
    --font-h1: 2rem;
    --font-h2: 1.25rem;
    --font-h3: 1rem;
  }

  .phone-full { display: none; }
  .phone-small { display: inline; }

  /* Nav mobile */
  .nav-inner { height: 4rem; }
  .nav-phone-btn { padding: 0.625rem 1rem; font-size: 0.8125rem; }
  .nav-sub { font-size: 0.625rem; letter-spacing: 0.05em; }

  /* Hero mobile */
  .hero-sub { font-size: clamp(13px, 4vw, 18px); }

  /* Form mobile */
  .form-label { font-size: clamp(13px, 4.2vw, 18px); }
  .form-title { white-space: normal; font-size: clamp(16px, 4.5vw, 20px); }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-header { padding: 1.25rem 5% 1.25rem; }
  .form-body { padding: 1.5rem 5%; }

  .not-wrong-line { font-size: 0.85em; }

  /* Stats mobile */
  .stats-grid { flex-direction: column; gap: 0; align-items: center; }
  .stat-item { padding: 1rem 0; flex: none; max-width: none; }
  .stat-bordered { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem; margin-bottom: 0.5rem; padding: 1.5rem 0; }

  /* Power banner mobile */
  .power-banner-inner { flex-direction: column; gap: 0; }
  .power-over { font-size: var(--font-h1); }
  .power-amount { font-size: 2.7rem; line-height: 1.2; }
  .notable-grid { gap: 0.75rem; }
  .power-tagline { font-size: var(--font-h3); letter-spacing: 0.02em; }
  .power-disclaimer { font-size: 0.75rem; padding: 0 1rem; }
  .tagline-text { font-size: var(--font-body); letter-spacing: 0.1em; }

  /* Testimonials mobile */
  .testimonial-card { min-width: 260px; }
  .testimonials-carousel-wrap { overflow: visible; }
  .carousel-arrow { width: 1.75rem; height: 1.75rem; }
  .carousel-arrow-left { left: -0.875rem; }
  .carousel-arrow-right { right: -0.875rem; }

  /* Case cards mobile */
  .case-cards { grid-template-columns: 1fr; }
  .case-desktop { display: none; }
  .case-mobile { display: block; }
  .case-card { padding: 0; border: 1px solid #ddd; border-radius: 1rem; overflow: hidden; }
  .case-mobile-header {
    background: var(--black);
    padding: 1rem 1.25rem;
  }
  .case-mobile-header .case-title { color: var(--white); font-size: 1.1rem; }
  .case-mobile-header .case-injury { color: rgba(255,255,255,0.6); }
  .case-mobile-numbers {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    padding: 1rem 1.25rem;
  }
  .case-diff { padding: 1rem 1.25rem 1.25rem; border-top: 1px solid rgba(0,0,0,0.03); margin: 0; }
  .case-label { white-space: nowrap; font-size: 0.75rem; }

  /* Comparison mobile */
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-vs { display: none; }

  /* Scenario mobile */
  .scenario-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem 1rem;
  }
  .scenario-status { text-align: center; }
  .scenario-arrow { display: none; }

  /* Final CTA mobile */
  .final-cta-h2 { font-size: var(--font-h1); font-weight: 900; }
  .step { gap: 0.5rem; }
  .step-num { font-size: var(--font-h2); width: 1.5rem; }
  .step-title { font-size: var(--font-h2); white-space: nowrap; }
  .step-sub { font-size: var(--font-body); }

  /* No cost mobile */
  .no-cost-punch { white-space: normal; font-size: var(--font-h2); }
  .no-cost-bold { white-space: normal; }

  /* Attorney mobile */
  .attorney-credentials { white-space: nowrap; font-size: 0.681rem; }
  .attorney-bottom .btn-cta { padding: 1rem 2rem; font-size: var(--font-body); }

  /* CTA buttons mobile */
  .btn-cta { white-space: normal; margin-left: 5%; margin-right: 5%; font-size: clamp(0.8rem, 3.5vw, 1rem); }

  /* Section padding mobile */
  .money-proof { padding: 3.5rem 0; }
  .no-cost { padding: 3.5rem 0; }
  .already-talked { padding: 3.5rem 0; }
  .final-cta-white { padding: 3.5rem 0; }
  .attorney { padding: 3.5rem 0; }
  .testimonials { padding: 3.5rem 0; }
  .power-banner { padding: 3.5rem 0; }

  .mobile-only { display: inline; }

  /* Footer mobile */
  .footer { padding: 3.5rem 0 7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .sticky-bar { display: none; }
  .sticky-bar.visible { display: block; }
}

@media (max-width: 640px) {
  .desktop-only { display: none !important; }

  /* Extra small adjustments */
  .nav-inner { height: auto; padding-top: 1.084rem; padding-bottom: 1.084rem; }
  .logo-text { font-size: var(--font-h3); }
  .nav-sub { font-size: 0.5625rem; }
  .nav-phone-btn { padding: 0.5rem 1rem; border-radius: 0.75rem; font-size: 0.6875rem; }
  .icon-phone { width: 0.875rem; height: 0.875rem; }
  .phone-open247 {
    display: none;
  }
  .phone-small { display: inline; }

  .notable-grid { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .notable-card { padding: 0.75rem 0.5rem; }
  .notable-amount { font-size: var(--font-h3); }

  .section-h2 { font-size: var(--font-h1); }

  .case-mobile-numbers { gap: 0.5rem; }

  .testimonial-card { min-width: 240px; padding: 1.5rem; }
}

@media (min-width: 769px) {
  .sticky-bar { display: none !important; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
  .container-sm { padding: 0 2rem; }
  .container-md { padding: 0 2rem; }
  .hero .container { padding-top: 5rem; padding-bottom: 5rem; }
  .section-h2 { font-size: var(--font-h1); }
  .hero-right .form-card { max-width: 90%; margin-left: auto; }
  .stats-inner { padding: 2.5rem 1rem 2.5rem; }
}
