
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --charcoal: #1c1c1e;
  --charcoal-deep: #111112;
  --crimson: #9b1c1c;
  --crimson-light: #b91c1c;
  --crimson-bright: #dc2626;
  --cream: #faf8f4;
  --cream-warm: #f5f0e8;
  --cream-mid: #ede8de;
  --white: #ffffff;
  --text: #1c1c1e;
  --text-light: #4a4a4e;
  --text-muted: #78787c;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}
header.scrolled {
  background: rgba(28, 28, 30, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}
.logo .ally { color: #e8c4a0; }

nav { display: flex; gap: 32px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.1px;
  transition: color 0.2s;
}
nav a:hover { color: #e8c4a0; }

.header-phone {
  background: var(--crimson);
  color: var(--white);
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 12px rgba(155, 28, 28, 0.5);
}
.header-phone:hover { background: var(--crimson-bright); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--charcoal-deep);
  padding: 80px 40px 40px;
  flex-direction: column; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--cream); font-size: 1.5rem; font-family: var(--serif); font-weight: 700; }
.mobile-nav .close-nav {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: white; cursor: pointer; background: none; border: none;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background-image: url('/assets/v3/hero-main.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 28, 30, 0.88) 0%,
    rgba(28, 28, 30, 0.72) 50%,
    rgba(155, 28, 28, 0.35) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding: 120px 40px 80px;
  text-align: left;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: #e8c4a0;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: #e8c4a0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  color: #e8c4a0;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 40px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(155, 28, 28, 0.5);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--crimson-bright); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(155, 28, 28, 0.6); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 16px 28px; border-radius: 8px;
  font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.hero-trust {
  margin-top: 56px;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: #e8c4a0; flex-shrink: 0; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.2);
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* STICKY SIDE PANEL */
.sticky-form-trigger {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 150;
  background: var(--crimson);
  color: white; writing-mode: vertical-rl;
  padding: 20px 10px; border-radius: 4px 0 0 4px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; text-transform: uppercase;
  box-shadow: -4px 0 20px rgba(155,28,28,0.5);
  transition: background 0.2s;
}
.sticky-form-trigger:hover { background: var(--crimson-bright); }

.form-panel {
  position: fixed; right: -400px; top: 0; bottom: 0; width: 380px;
  z-index: 250; background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-panel.open { right: 0; }
.form-panel-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--text-muted);
}
.form-panel h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.2;
}
.form-panel p { font-size: 0.875rem; color: var(--text-light); }

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%; padding: 12px 14px; border-radius: 4px;
  border: 1px solid var(--cream-mid);
  font-family: var(--sans); font-size: 0.9rem; color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus { border-color: var(--crimson); }
.form-panel textarea { min-height: 100px; resize: vertical; }
.form-panel .btn-submit {
  width: 100%; background: var(--crimson); color: white;
  border: none; padding: 15px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background 0.2s;
}
.form-panel .btn-submit:hover { background: var(--crimson-bright); }
.form-disclaimer {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; text-align: center;
}

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip {
  background: var(--charcoal);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-scroll-wrapper { overflow: hidden; position: relative; }
.trust-scroll {
  display: flex; gap: 0; align-items: stretch;
  white-space: nowrap;
  animation: scrollTrust 20s linear infinite;
  width: max-content;
}
.trust-strip:hover .trust-scroll { animation-play-state: paused; }
@keyframes scrollTrust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.trust-item .trust-icon { color: #e8c4a0; font-size: 1.1rem; }
.trust-item .trust-number { color: #e8c4a0; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-it-works {
  background: var(--cream);
  padding: 100px 40px;
}
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--crimson);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  max-width: 960px;
}
.step {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: transform 0.2s;
}
.step:hover { transform: translateY(-4px); }
.step-number {
  font-family: var(--serif); font-size: 5rem; font-weight: 900;
  color: var(--cream-mid); line-height: 1;
  position: absolute; top: 24px; right: 28px;
}
.step-icon {
  width: 48px; height: 48px; background: var(--crimson);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.step h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
}
.step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.step-arrow {
  position: absolute; right: -24px; top: 50%;
  transform: translateY(-50%);
  color: var(--crimson); font-size: 1.5rem; z-index: 1;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   CASE RESULTS
═══════════════════════════════════════ */
.results {
  background: var(--charcoal);
  padding: 100px 40px;
}
.results .section-label { color: #e8c4a0; }
.results .section-title { color: var(--white); }
.results .section-sub { color: rgba(255,255,255,0.55); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 1080px;
}
.result-card {
  background: var(--charcoal);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.result-card:hover { background: rgba(255,255,255,0.04); }
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--crimson);
}
.result-amount {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: #e8c4a0;
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -1px;
}
.result-type {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--crimson-light);
  margin-bottom: 16px;
}
.result-story {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.result-disclaimer {
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
  margin-top: 40px; text-align: center; max-width: 760px;
}

/* ═══════════════════════════════════════
   NARRATIVE BREAK
═══════════════════════════════════════ */
.narrative-break {
  position: relative;
  height: clamp(400px, 55vw, 640px);
  background-image: url('/assets/v3/family-relief.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex; align-items: flex-end;
}
.narrative-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,28,30,0.92) 0%,
    rgba(28,28,30,0.3) 60%,
    rgba(28,28,30,0.1) 100%
  );
}
.narrative-quote {
  position: relative; z-index: 2;
  padding: 60px 60px 60px;
  max-width: 680px;
}
.narrative-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.4;
  margin-bottom: 20px;
}
.narrative-quote blockquote::before { content: '"'; color: #e8c4a0; font-size: 3rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.narrative-attribution {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  font-weight: 500; letter-spacing: 0.5px;
}
.narrative-attribution strong { color: #e8c4a0; }

/* ═══════════════════════════════════════
   PRACTICE AREAS
═══════════════════════════════════════ */
.practice {
  background: var(--cream);
  padding: 100px 40px;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  max-width: 1080px;
}
.practice-card {
  background: var(--white);
  padding: 36px 28px;
  cursor: pointer; position: relative;
  overflow: hidden; transition: background 0.2s;
}
.practice-card:hover { background: var(--charcoal); }
.practice-card:hover .practice-name { color: var(--white); }
.practice-card:hover .practice-desc { opacity: 1; max-height: 80px; }
.practice-card:hover .practice-icon { background: var(--crimson); }
.practice-icon {
  width: 120px; height: 120px; border-radius: 8px;
  background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
  transition: background 0.2s;
}
.practice-name {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.3; margin-bottom: 8px;
  transition: color 0.2s;
}
.practice-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s;
  opacity: 0;
}
.practice-link {
  display: block; font-size: 0.75rem; color: var(--crimson); font-weight: 700;
  letter-spacing: 0.5px; margin-top: 12px;
  text-transform: uppercase;
}
.practice-card:hover .practice-link { color: #e8c4a0; }

/* ═══════════════════════════════════════
   CONSULTATION BREAK
═══════════════════════════════════════ */
.consult-break {
  background: var(--charcoal-deep);
  display: grid; grid-template-columns: 1fr 1fr;
}
.consult-image {
  background-image: url('/assets/v3/consultation.jpg');
  background-size: cover; background-position: center;
  min-height: 480px;
}
.consult-content {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.consult-content .section-label { color: #e8c4a0; }
.consult-content .section-title { color: var(--white); font-size: clamp(1.8rem,3vw,2.4rem); }
.consult-content p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  background: var(--cream);
  padding: 100px 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--charcoal); line-height: 1.7; margin-bottom: 24px;
}
.testimonial-text::before { content: '"'; color: var(--crimson); font-size: 1.5rem; font-style: normal; }
.testimonial-author {
  font-weight: 700; font-size: 0.875rem; color: var(--charcoal);
}
.testimonial-detail {
  font-size: 0.8rem; color: var(--text-muted); margin-top: 4px;
}

/* ═══════════════════════════════════════
   CITIES
═══════════════════════════════════════ */
.cities {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--cream-mid);
}
.cities-cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 960px; margin-top: 40px;
}
.city-tag {
  background: var(--cream);
  border: 1px solid var(--cream-mid);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.city-tag:hover { background: var(--crimson); color: white; border-color: var(--crimson); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq {
  background: var(--cream);
  padding: 100px 40px;
}
.faq-list {
  max-width: 760px; margin-top: 60px;
  display: flex; flex-direction: column; gap: 2px;
}
.faq-item { background: var(--white); }
.faq-question {
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--charcoal);
  line-height: 1.4;
  transition: background 0.2s;
  border: none; width: 100%; text-align: left; background: var(--white);
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--charcoal); color: var(--white); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--crimson); transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); color: #e8c4a0; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 28px;
  font-size: 0.9rem; color: var(--text-light); line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 0 28px 24px; }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.final-cta {
  position: relative;
  background-image: url('/assets/v3/accident-scene.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 120px 40px;
  text-align: center;
}
.final-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,30,0.85);
}
.final-cta-content {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.final-cta .section-label { color: #e8c4a0; text-align: center; justify-content: center; display: flex; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin: 16px 0 24px;
  letter-spacing: -0.5px;
}
.final-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px;
}
.cta-phone-big {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--crimson);
  color: white; padding: 20px 48px; border-radius: 8px;
  font-size: 1.3rem; font-weight: 700;
  box-shadow: 0 8px 40px rgba(155,28,28,0.6);
  transition: background 0.2s, transform 0.15s;
}
.cta-phone-big:hover { background: var(--crimson-bright); transform: translateY(-3px); }
.cta-note {
  margin-top: 20px; color: rgba(255,255,255,0.4);
  font-size: 0.82rem; letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--charcoal-deep);
  padding: 64px 40px 32px;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: #e8c4a0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-disclaimer {
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
  line-height: 1.6; max-width: 800px; margin: 24px auto 0; text-align: center;
}

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero,
  .narrative-break,
  .final-cta {
    background-attachment: scroll;
  }

  header { padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 24px 60px; }
  .how-it-works, .practice, .testimonials, .faq, .cities { padding: 70px 20px; }
  .results, .final-cta { padding: 70px 20px; }
  .narrative-quote { padding: 40px 28px; }
  .consult-break { grid-template-columns: 1fr; }
  .consult-image { min-height: 280px; }
  .consult-content { padding: 48px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-form-trigger { display: none; }
  .form-panel { width: 100%; right: -100%; }
  .hero-trust { display: none; }
  .result-amount { font-size: 2.5rem; }
}
