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

:root {
  --navy:    #002868;
  --navy-2:  #001a44;
  --navy-3:  #00122f;
  --red:     #BF0A30;
  --red-2:   #9e0826;
  --red-light: rgba(191,10,48,0.12);
  --white:   #FFFFFF;
  --off-white: #F5F7FA;
  --light-gray: #EEF1F6;
  --border:  rgba(0,40,104,0.12);
  --border-light: rgba(255,255,255,0.12);
  --text-dark: #0D1F3C;
  --text-mid:  #3A5273;
  --text-muted: #6B7E9A;
  --shadow-sm: 0 4px 20px rgba(0,40,104,0.1);
  --shadow-md: 0 12px 40px rgba(0,40,104,0.15);
  --shadow-lg: 0 24px 80px rgba(0,40,104,0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E2E8F0;
  background: #020C1B;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== SCROLL REVEAL ===== */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.625rem; pointer-events: none; }
.toast { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--navy); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 0.875rem 1.25rem; font-size: 0.875rem; color: white; box-shadow: 0 12px 40px rgba(0,0,0,0.35); pointer-events: auto; max-width: 360px; animation: toastIn 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards; line-height: 1.5; }
.toast.toast-success { border-left: 3px solid #22c55e; }
.toast.toast-error   { border-left: 3px solid #ef4444; }
.toast.toast-info    { border-left: 3px solid #3b82f6; }
.toast-out { animation: toastOut 0.25s ease forwards; }
@keyframes toastIn  { from { opacity:0; transform:translateX(110%); } to { opacity:1; transform:translateX(0); } }
@keyframes toastOut { to   { opacity:0; transform:translateX(110%); } }

/* ===== HEADER ALERT ===== */
.header-alert {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.header-alert strong { font-weight: 700; }
.header-alert a { color: var(--gold, #FFD84D); font-weight: 700; text-decoration: none; }
.header-alert a:hover { text-decoration: underline; }

.alert-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== NAV ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: #020C1B; border-bottom: 1px solid rgba(255,255,255,.07); backdrop-filter: blur(12px); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 2rem; height: 72px; gap: 2rem;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; }
.logo-shield { flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-line1 { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; color: rgba(255,255,255,.6); text-transform: uppercase; }
.logo-line2 { font-size: 0.95rem; font-weight: 900; letter-spacing: 0.06em; color: var(--red); text-transform: uppercase; }
.nav-logo { color: #fff; }
.logo-text-block { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.logo-text-block .l1 { font-family: 'Space Grotesk', sans-serif; font-size: 0.98rem; font-weight: 800; letter-spacing: 0.025em; text-transform: uppercase; color: #fff; line-height: 1.05; display: block; white-space: nowrap; }
.logo-text-block .l2 { font-family: 'Space Grotesk', sans-serif; font-size: 0.54rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #FCA5A5; line-height: 1; display: block; margin-top: 0.32rem; white-space: nowrap; }
.logo-text-block .l2 sup { font-size: 0.7em; vertical-align: super; margin-left: 0.05em; }
@media(max-width:1100px){ .logo-text-block .l1 { font-size: 0.86rem } .logo-text-block .l2 { font-size: 0.5rem } }
@media(max-width:700px){ .logo-text-block .l1 { font-size: 0.74rem; letter-spacing: 0.02em } .logo-text-block .l2 { font-size: 0.46rem } }

.nav-links { display: flex; list-style: none; gap: 0; margin: 0; }
.nav-links a { display: block; padding: 0.5rem 0.875rem; text-decoration: none; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,.6); border-radius: 8px; transition: color var(--transition), background var(--transition); }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.6rem 1.4rem; font-family: inherit; font-size: 0.9rem; font-weight: 700;
  border-radius: var(--radius-sm); border: none; cursor: pointer; text-decoration: none;
  transition: all var(--transition); white-space: nowrap; letter-spacing: -0.01em; line-height: 1;
}

.btn-red { background: linear-gradient(135deg, var(--red) 0%, #d4093c 100%); color: white; box-shadow: 0 4px 16px rgba(191,10,48,0.35); }
.btn-red:hover { background: linear-gradient(135deg, var(--red-2) 0%, var(--red) 100%); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(191,10,48,0.45); }

.btn-navy { background: linear-gradient(135deg, var(--navy) 0%, #003a8c 100%); color: white; box-shadow: 0 4px 16px rgba(0,40,104,0.3); }
.btn-navy:hover { background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,40,104,0.4); }

.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-nav { padding: 0.55rem 1.25rem; font-size: 0.85rem; transition: all .2s; }
.btn-nav:hover { transform: translateY(-1px); }
@media (max-width: 768px) { .nav-inner { height: 54px; padding: 0 1.25rem; } }
.btn-hero { padding: 1rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-lg { padding: 0.95rem 2rem; font-size: 0.95rem; border-radius: 12px; }
.btn-full { width: 100%; }

.btn-spinner { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

/* ===== HERO ===== */
.hero { position: relative; background: var(--navy-2); padding: 0; overflow: hidden; }

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #001a44 0%, #002868 40%, #001a44 100%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(191,10,48,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 30%, rgba(255,255,255,0.04) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
}

.hero-text { padding-bottom: 3rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 0.4rem 1rem; margin-bottom: 1.75rem; }
.badge-stars { color: #FFD700; font-size: 0.85rem; letter-spacing: 2px; }
.hero-badge span:last-child { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85); }

.hero-text h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.08; color: white; margin-bottom: 1.25rem; }
.text-red { color: #FF3355; }

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 520px; margin-bottom: 2rem; }

.hero-features { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }
.hero-feature { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: #22c55e; color: white; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 900; }

.hero-cta-group { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Hero Form Card */
.hero-form-wrap { padding-bottom: 3rem; }

.hero-form-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.form-card-header { background: var(--red); padding: 1.25rem 1.75rem; }
.form-badge { display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; color: white; padding: 0.25rem 0.75rem; margin-bottom: 0.6rem; text-transform: uppercase; }
.form-card-header h3 { font-size: 1.2rem; font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.form-card-header p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

.hero-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

.form-disclaimer { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; text-align: center; margin-top: 0.25rem; }

/* Hero Stats Bar */
.hero-stats-bar { position: relative; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stats-inner { max-width: 1240px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.hstat { text-align: center; }
.hstat-num { display: block; font-size: 1.6rem; font-weight: 900; color: white; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.2rem; }
.hstat-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 2rem; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy-3); }
.section-navy { background: var(--navy); }

.section-inner { max-width: 1240px; margin: 0 auto; }

.section-kicker { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6rem; }
.section-kicker-light { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,120,120,0.9); margin-bottom: 0.6rem; }

.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.035em; color: var(--text-dark); margin-bottom: 0.875rem; line-height: 1.15; }
.section-sub { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; max-width: 600px; margin-bottom: 2.5rem; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.step-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); transition: all var(--transition);
  position: relative;
}

.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0,40,104,0.2); }

.step-number { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 2.5rem; font-weight: 900; color: var(--light-gray); letter-spacing: -0.05em; line-height: 1; }

.step-icon-wrap { margin-bottom: 1rem; }

.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.step-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ===== ACCIDENT TYPES ===== */
.accident-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.accident-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 1.75rem; text-decoration: none;
  transition: all var(--transition);
}

.accident-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.accident-icon { font-size: 2.25rem; margin-bottom: 0.5rem; }
.accident-card h3 { font-size: 1rem; font-weight: 700; color: white; letter-spacing: -0.02em; }
.accident-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; flex: 1; }
.accident-link { font-size: 0.8rem; font-weight: 600; color: #FF3355; margin-top: 0.5rem; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--navy); padding: 1.25rem 2rem; border-top: 3px solid var(--red); }
.trust-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: white; }
.trust-icon { font-size: 1rem; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }

/* ===== INTAKE ===== */
.intake-layout { display: grid; grid-template-columns: 1fr 520px; gap: 4rem; align-items: start; }

.intake-checklist { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.intake-check { display: flex; align-items: flex-start; gap: 0.875rem; }
.intake-check > span { flex-shrink: 0; width: 22px; height: 22px; background: var(--navy); color: white; border-radius: 50%; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 900; margin-top: 2px; }
.intake-check strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.15rem; }
.intake-check p { font-size: 0.82rem; color: var(--text-muted); }

.intake-phone-cta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-mid); }
.phone-link { font-size: 1.1rem; font-weight: 800; color: var(--red); text-decoration: none; }
.phone-link:hover { text-decoration: underline; }

.intake-form-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-md); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}

.stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author strong { display: block; font-size: 0.875rem; color: white; }
.testimonial-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== ATTORNEYS ===== */
.attorney-layout { display: grid; grid-template-columns: 1fr 460px; gap: 4rem; align-items: start; }

.attorney-benefits { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.attorney-benefits li { display: flex; align-items: flex-start; gap: 0.875rem; }
.check-icon-navy { flex-shrink: 0; width: 22px; height: 22px; background: var(--navy); color: white; border-radius: 50%; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 900; margin-top: 2px; }
.attorney-benefits strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.15rem; }
.attorney-benefits p { font-size: 0.82rem; color: var(--text-muted); }

.attorney-form-card { background: white; border: 2px solid var(--navy); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-md); }
.attorney-form-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.attorney-form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== ABOUT ===== */
.about-inner { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center; }

.about-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.about-stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: white; letter-spacing: -0.04em; margin-bottom: 0.2rem; }
.about-stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); font-weight: 600; }

.about-values-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 1.75rem; }
.about-values-card h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.value-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.value-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; }
.value-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(191,10,48,0.5); }
.value-dot.navy { background: #60a5fa; box-shadow: 0 0 8px rgba(96,165,250,0.4); }
.value-item strong { display: block; font-size: 0.9rem; color: white; margin-bottom: 0.15rem; }
.value-item p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%; background: none; border: none; padding: 1.25rem 0;
  text-align: left; font-family: inherit; font-size: 0.975rem; font-weight: 600;
  color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color var(--transition);
}

.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--red); flex-shrink: 0; transition: transform var(--transition); line-height: 1; }
.faq-question[aria-expanded="true"] { color: var(--red); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* ===== FINAL CTA ===== */
.final-cta { background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%); text-align: center; }
.final-cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-flag-accent { width: 60px; height: 4px; background: linear-gradient(90deg, var(--red), var(--navy-2)); margin: 0 auto 2rem; border-radius: 2px; }
.final-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 900; color: white; letter-spacing: -0.035em; margin-bottom: 1rem; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 2rem; line-height: 1.75; }
.final-cta-actions { display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }

input[type="text"], input[type="tel"], input[type="email"], input[type="date"], textarea, select {
  font-family: inherit; font-size: 0.9rem; color: var(--text-dark);
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.78rem 1rem; outline: none;
  transition: all var(--transition); width: 100%;
  appearance: none; -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7E9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}

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

input:focus, textarea:focus, select:focus { border-color: var(--navy); background: white; box-shadow: 0 0 0 3px rgba(0,40,104,0.08); }

textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }

.checkbox-group { flex-direction: row; align-items: center; }
.checkbox-label { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.85rem; color: var(--text-mid); font-weight: 500; }
.checkbox-label input { width: auto; }

/* Hero form uses white BG inputs */
.hero-form input, .hero-form select {
  background: var(--off-white);
  border-color: #D6DCE8;
}

.hero-form input:focus, .hero-form select:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(0,40,104,0.08);
}

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-3); border-top: 3px solid var(--red); }

.footer-inner { max-width: 1240px; margin: 0 auto; padding: 3rem 2rem 1.5rem; }

.footer-top { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; margin-bottom: 2.5rem; }

.footer-brand { display: flex; align-items: flex-start; gap: 0.875rem; }
.logo-shield-sm { flex-shrink: 0; }
.footer-brand-name { font-size: 0.875rem; font-weight: 800; color: white; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: italic; }

.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 0.875rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 4rem 2rem 0; gap: 3rem; }
  .hero-form-wrap { max-width: 500px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .accident-grid { grid-template-columns: repeat(2, 1fr); }
  .intake-layout, .attorney-layout, .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .steps-grid, .accident-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.2rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 0.75rem; }
  .trust-divider { display: none; }
  .hero-cta-group { flex-direction: column; }
  .final-cta-actions { flex-direction: column; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); }
  .hstat-div { display: none; }
  .nav-links { display: none; }
  .section { padding: 4rem 1.5rem; }
}
