/* ============================================
   MUNDY & ASSOCIATES — SHARED DESIGN SYSTEM
   Brand Guide: Accident Avengers v1.0 (adapted)
   Colors: Navy #051C2C, Blue #0057B7, Red #C8102E
   Fonts: Barlow Condensed (headlines) + Roboto (body)
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #051C2C;
    --navy-90: rgba(5,28,44,0.9);
    --dark-card: #0A2A3F;
    --dark-surface: #071E2E;
    --red: #C8102E;
    --red-hover: #E01535;
    --red-glow: rgba(200,16,46,0.15);
    --blue: #0057B7;
    --blue-light: #1A6FD4;
    --white: #FFFFFF;
    --off-white: #F2F4F6;
    --gray-50: #FAFBFC;
    --gray-100: #E4E8EC;
    --gray-200: #C8CED6;
    --gray-400: #7A8694;
    --gray-600: #4A5568;
    --gray-800: #2D3748;
    --gold: #FFB800;
    --green: #22C55E;
    --font-headline: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Roboto', 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== REVIEW TICKER ===== */
.review-ticker { background: var(--navy); overflow: hidden; padding: 10px 0; border-bottom: 2px solid var(--red); position: relative; }
.review-ticker::before, .review-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.review-ticker::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.review-ticker::after { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.ticker-track { display: flex; animation: ticker 50s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 36px; white-space: nowrap; color: rgba(255,255,255,0.8); font-size: 13px; }
.ticker-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }
.ticker-author { color: var(--red); font-weight: 600; }
.ticker-badge { background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--red); color: var(--white); padding: 0; }
.top-bar-inner { display: flex; align-items: stretch; justify-content: center; min-height: 52px; }
.top-bar-left { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 24px; font-weight: 600; font-size: 15px; flex: 1; }
.top-bar-left .pulse { width: 10px; height: 10px; background: #4AFF4A; border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.top-bar-divider { width: 1px; background: rgba(255,255,255,0.25); }
.top-bar-phone { display: flex; align-items: center; justify-content: center; padding: 12px 28px; text-decoration: none; color: var(--white); font-size: 20px; font-weight: 900; font-family: var(--font-headline); letter-spacing: 1px; transition: background 0.2s; flex: 1; gap: 8px; cursor: pointer; }
.top-bar-phone:hover { background: rgba(0,0,0,0.12); }
.top-bar-phone .phone-icon { font-size: 18px; }
.top-bar-cta { display: flex; align-items: center; justify-content: center; padding: 12px 28px; text-decoration: none; color: var(--red); background: var(--white); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-headline); transition: background 0.2s; cursor: pointer; flex: 0 0 auto; }
.top-bar-cta:hover { background: var(--off-white); }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.5); } }

/* ===== HEADER ===== */
header { background: var(--white); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--navy); }
.logo-mark { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--navy); border-radius: 6px; flex-shrink: 0; }
.logo-mark .initials { font-family: var(--font-headline); font-size: 22px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: 1px; }
.logo-mark .yr { font-size: 7px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; margin-top: 1px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .firm-name { font-family: var(--font-headline); font-size: 20px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.1; }
.logo-text .firm-type { font-size: 10px; color: var(--gray-400); letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 500; padding: 8px 10px; border-radius: 4px; transition: all 0.2s; }
nav a:hover { background: rgba(200,16,46,0.06); }
nav a.active { color: var(--red); font-weight: 700; }
.nav-cta { background: var(--red); color: var(--white) !important; font-weight: 700; border-radius: 6px; padding: 10px 16px !important; font-size: 12px !important; text-transform: uppercase; letter-spacing: .5px; }
.nav-cta:hover { background: var(--red-hover) !important; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--gray-100); border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); padding: 8px 0; min-width: 200px; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 18px; font-size: 13px; border-radius: 0; }
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--red); }

/* Mobile hamburger */
.mobile-menu-btn { display: none; width: 40px; height: 40px; background: none; border: none; cursor: pointer; position: relative; flex-shrink: 0; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px auto; border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-100); padding: 12px 0; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 24px; color: var(--navy); text-decoration: none; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--gray-100); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { background: var(--off-white); }
.mobile-nav .mobile-nav-cta { background: var(--red); color: var(--white); text-align: center; margin: 12px 24px; border-radius: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; border-bottom: none; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--red); color: var(--white); padding: 16px 30px; border: none; border-radius: 6px; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer; transition: all .25s; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }
.btn-outline { color: var(--white); border: 2px solid rgba(255,255,255,0.2); padding: 14px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .25s; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-dark { color: var(--navy); border: 2px solid var(--gray-200); padding: 14px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .25s; }
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }

/* ===== HERO (shared structure, page-specific content) ===== */
.hero { background: radial-gradient(ellipse at 50% 50%, #0A2A3F 0%, #051C2C 60%, #000000 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, var(--red-glow) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(0,87,183,0.06) 0%, transparent 60%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #C8102E 0%, #C8102E 33%, #FFFFFF 33%, #FFFFFF 66%, #0057B7 66%, #0057B7 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; position: relative; z-index: 2; padding: 64px 0 72px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,16,46,0.1); border: 1px solid rgba(200,16,46,0.2); color: #E8A0A8; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.hero-badge .stars { color: var(--gold); }
.hero h1, .hero h2 { font-family: var(--font-headline); font-size: 48px; color: var(--white); line-height: 1.08; margin-bottom: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 em, .hero h2 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 520px; margin-bottom: 28px; line-height: 1.65; font-weight: 300; }
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); }
.hero-trust-item { text-align: center; }
.hero-trust-item .num { font-family: var(--font-headline); font-size: 26px; font-weight: 700; color: var(--white); }
.hero-trust-item .label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; }
/* Hero - centered variant (no form) */
.hero-centered { text-align: center; padding: 72px 0 80px; position: relative; z-index: 2; }
.hero-centered h1, .hero-centered h2 { max-width: 800px; margin: 0 auto 16px; }
.hero-centered .hero-sub { max-width: 600px; margin: 0 auto 28px; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-trust { justify-content: center; }

/* Hero form */
.hero-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px; backdrop-filter: blur(6px); }
.hero-form h3 { font-family: var(--font-headline); font-size: 22px; color: var(--white); margin-bottom: 4px; }
.hero-form .form-note { color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 18px; }
.hero-form .form-note strong { color: var(--red); }
.hf-group { margin-bottom: 12px; }
.hf-group input, .hf-group select, .hf-group textarea { width: 100%; padding: 13px 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; color: var(--white); font-family: var(--font-body); font-size: 14px; }
.hf-group input::placeholder, .hf-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.hf-group input:focus, .hf-group textarea:focus { outline: none; border-color: var(--red); }
.hf-group select { color: rgba(255,255,255,0.4); }
.hf-group select option { background: var(--navy); color: var(--white); }
.hf-submit { width: 100%; padding: 15px; background: var(--red); color: var(--white); border: none; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: all .25s; font-family: var(--font-body); }
.hf-submit:hover { background: var(--red-hover); }
.hf-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 10px; text-align: center; line-height: 1.4; }
.trust-badges { display: flex; justify-content: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ===== PROOF BAR ===== */
.proof-bar { background: var(--dark-card); padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.proof-items { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 13px; }
.proof-item strong { color: var(--white); }

/* ===== SECTIONS COMMON ===== */
section { padding: 72px 0; }
.section-label { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; font-family: var(--font-headline); }
.section-title { font-family: var(--font-headline); font-size: 34px; color: var(--navy); margin-bottom: 14px; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 900; }
.section-subtitle { font-size: 16px; color: var(--gray-600); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-header .section-subtitle { margin: 14px auto 0; }

/* Section backgrounds */
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.55); }

/* ===== APPROACH SECTION ===== */
.approach-section { background: var(--off-white); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.approach-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 32px; transition: all .3s; position: relative; overflow: hidden; }
.approach-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.approach-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.approach-card .card-icon { font-size: 32px; margin-bottom: 16px; }
.approach-card h3 { font-family: var(--font-headline); font-size: 18px; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.approach-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ===== PRACTICE AREA CARDS ===== */
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.practice-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 28px; transition: all .3s; text-decoration: none; color: inherit; display: block; }
.practice-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: var(--red); }
.practice-card .card-icon { font-size: 28px; margin-bottom: 12px; }
.practice-card h3 { font-family: var(--font-headline); font-size: 16px; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.practice-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.practice-card .card-link { color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 12px; display: inline-block; }

/* ===== TEAM CARDS ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.team-photo { width: 100%; height: 260px; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { font-size: 64px; opacity: 0.4; }
.team-photo-badge { position: absolute; bottom: 12px; left: 12px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; }
.team-info { padding: 24px; }
.team-info h3 { font-family: var(--font-headline); font-size: 22px; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 900; margin-bottom: 2px; }
.team-info .team-title { font-size: 13px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.team-info .team-bar { font-size: 11px; color: var(--gray-400); margin-bottom: 14px; }
.team-info p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.team-highlight { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); font-size: 12px; color: var(--navy); font-weight: 600; }
.team-highlight .hl-icon { color: var(--red); font-size: 14px; }

/* ===== TESTIMONIALS ===== */
.pull-quote { background: var(--navy); border-radius: 12px; padding: 40px 48px; color: var(--white); position: relative; }
.pull-quote::before { content: '\201C'; font-family: var(--font-headline); font-size: 80px; color: rgba(200,16,46,0.2); position: absolute; top: 10px; left: 24px; line-height: 1; }
.pull-quote p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 16px; position: relative; z-index: 1; }
.pull-quote .author { color: var(--red); font-weight: 600; font-size: 14px; }
.pull-quote .stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); padding: 24px; border-radius: 10px; border: 1px solid var(--gray-200); transition: all .3s; position: relative; }
.review-card::before { content: '\201C'; position: absolute; top: 8px; right: 16px; font-family: var(--font-headline); font-size: 50px; color: rgba(200,16,46,0.06); line-height: 1; }
.review-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.05); transform: translateY(-2px); }
.review-card .rc-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.review-card p { font-size: 13px; line-height: 1.7; color: var(--gray-600); font-style: italic; margin-bottom: 12px; }
.review-card .rc-author { font-size: 12px; font-weight: 600; color: var(--navy); }

/* ===== NEWS CARDS ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.news-thumb { height: 160px; background: linear-gradient(135deg, var(--navy) 0%, var(--dark-card) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.news-thumb-icon { font-size: 40px; opacity: 0.3; }
.news-tag { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; }
.news-time { position: absolute; bottom: 12px; right: 12px; color: rgba(255,255,255,0.4); font-size: 11px; }
.news-body { padding: 20px; }
.news-body h3 { font-family: var(--font-headline); font-size: 16px; color: var(--navy); line-height: 1.35; margin-bottom: 8px; font-weight: 700; }
.news-body p { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.news-link { color: var(--red); font-weight: 700; font-size: 12px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.news-link:hover { text-decoration: underline; }
.news-more { text-align: center; margin-top: 28px; }
.news-more a { color: var(--red); font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; padding: 12px 28px; border: 2px solid var(--red); border-radius: 6px; display: inline-block; transition: all 0.25s; }
.news-more a:hover { background: var(--red); color: var(--white); }

/* ===== DID YOU KNOW CAROUSEL ===== */
.dyk-section { background: var(--navy); color: var(--white); padding: 40px 0; overflow: hidden; }
.dyk-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.dyk-label { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px; font-family: var(--font-headline); }
.dyk-heading { font-family: var(--font-headline); font-size: 16px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; font-weight: 700; }
.dyk-carousel { position: relative; min-height: 120px; }
.dyk-fact { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; pointer-events: none; }
.dyk-fact.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dyk-stat { font-family: var(--font-headline); font-size: 56px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.dyk-text { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.6; }
.dyk-text strong { color: var(--white); }
.dyk-source { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 8px; }
.dyk-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dyk-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.dyk-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq-grid { max-width: 800px; margin: 28px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-family: var(--font-headline); font-size: 17px; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.faq-q:hover { color: var(--red); }
.faq-toggle { font-size: 20px; color: var(--red); transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-a { display: none; padding: 0 0 20px; font-size: 15px; line-height: 1.7; color: var(--gray-600); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-cta { text-align: center; background: var(--off-white); padding: 28px 24px; border-radius: 10px; margin-top: 28px; }
.faq-cta p { font-size: 14px; color: var(--gray-600); margin-bottom: 12px; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; }
.checklist li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-200); font-size: 15px; color: var(--gray-800); line-height: 1.6; }
.checklist li:last-child { border-bottom: none; }
.check-icon { width: 28px; height: 28px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.checklist strong { color: var(--navy); }

/* ===== COMPENSATION CARDS ===== */
.understand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.understand-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 32px; }
.understand-card h3 { font-family: var(--font-headline); font-size: 18px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; color: var(--white); }
.understand-card h3 .icon { margin-right: 8px; }
.comp-list { list-style: none; }
.comp-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.comp-list li:last-child { border-bottom: none; }
.comp-list .li-icon { color: var(--red); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.understand-cta { text-align: center; margin-top: 36px; padding: 32px; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; }
.understand-cta p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.6; }
.understand-cta .big-text { font-family: var(--font-headline); font-size: 24px; color: var(--white); font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }

/* ===== EMPATHY SIDEBAR ===== */
.empathy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.empathy-sidebar { background: var(--navy); border-radius: 12px; padding: 32px; color: var(--white); }
.empathy-sidebar h3 { font-family: var(--font-headline); font-size: 20px; margin-bottom: 16px; }

/* ===== LOCATION BAR ===== */
.location-bar { background: var(--red); padding: 24px 0; color: var(--white); }
.location-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.location-inner h3 { font-family: var(--font-headline); font-size: 18px; letter-spacing: 0.5px; }
.location-inner p { font-size: 13px; opacity: 0.8; margin-top: 2px; }
.location-inner a { color: var(--white); font-weight: 700; text-decoration: none; font-size: 14px; white-space: nowrap; }
.location-inner a:hover { text-decoration: underline; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--navy); padding: 56px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-headline); font-size: 34px; color: var(--white); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 900; }
.cta-banner h2 em { color: var(--red); font-style: normal; }
.cta-banner p { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 24px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: #080810; color: rgba(255,255,255,0.5); padding: 44px 0 20px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand h3 { font-family: var(--font-headline); color: var(--white); font-size: 17px; margin-bottom: 8px; }
footer h4 { color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 6px; }
footer ul a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; }
footer ul a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; display: flex; justify-content: space-between; font-size: 11px; flex-wrap: wrap; gap: 8px; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--red); color: var(--white); text-decoration: none; font-family: var(--font-headline); font-weight: 900; font-size: 18px; text-transform: uppercase; letter-spacing: 1.5px; padding: 18px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,.3); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form { max-width: 480px; margin: 0 auto; }
    .hero h1, .hero h2 { text-align: center; }
    .hero-sub { text-align: center; margin: 0 auto 28px; }
    .hero-badge { display: flex; justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; flex-wrap: wrap; }
    .approach-grid { grid-template-columns: 1fr; }
    .practice-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .understand-grid { grid-template-columns: 1fr; }
    .empathy-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; }
    .top-bar-left { padding: 10px 16px; font-size: 13px; }
    .top-bar-phone { padding: 12px 16px; font-size: 22px; }
    .top-bar-cta { padding: 12px 16px; font-size: 13px; }
    .top-bar-divider { width: 100%; height: 1px; }
    .logo-text .firm-name { font-size: 16px; letter-spacing: 1px; }
    .logo-mark { width: 44px; height: 44px; }
    .logo-mark .initials { font-size: 18px; }
    .hero-grid { padding: 40px 0 48px; }
    .hero h1, .hero h2 { font-size: 28px; }
    .hero-sub { font-size: 15px; }
    .hero-form { padding: 20px; }
    .hf-group input, .hf-group select, .hf-group textarea { font-size: 16px; /* prevents iOS zoom */ }
    .hero-trust { gap: 16px; }
    .hero-trust-item .num { font-size: 20px; }
    .hero-trust-item .label { font-size: 9px; }

    .proof-bar { padding: 16px 0; }
    .proof-items { gap: 16px; }
    .proof-item { font-size: 11px; }

    section { padding: 48px 0; }
    .section-label { font-size: 10px; letter-spacing: 2px; }
    .section-title { font-size: 24px; line-height: 1.2; }
    .section-subtitle { font-size: 14px; }

    .approach-card { padding: 24px; }
    .practice-grid { grid-template-columns: 1fr; }
    .practice-card { padding: 22px; }
    .team-photo { height: 200px; }
    .team-info { padding: 20px; }
    .team-info h3 { font-size: 20px; }
    .checklist li { padding: 14px 0; font-size: 14px; gap: 12px; }
    .check-icon { width: 26px; height: 26px; font-size: 12px; }
    .understand-card { padding: 24px; border-radius: 10px; }
    .comp-list li { font-size: 13px; padding: 10px 0; }
    .understand-cta { padding: 24px 18px; }
    .understand-cta .big-text { font-size: 20px; }
    .pull-quote { padding: 24px 20px; border-radius: 10px; }
    .pull-quote p { font-size: 15px; }
    .review-card { padding: 20px; }
    .faq-q { font-size: 15px; padding: 16px 0; }
    .faq-a { font-size: 14px; }
    .faq-cta { padding: 22px 16px; }
    .news-thumb { height: 120px; }
    .dyk-section { padding: 32px 0; }
    .dyk-stat { font-size: 40px; }
    .dyk-text { font-size: 15px; padding: 0 8px; }
    .dyk-carousel { min-height: 140px; }
    .location-inner { flex-direction: column; text-align: center; gap: 10px; }
    .location-inner h3 { font-size: 14px; }
    .cta-banner { padding: 40px 0; }
    .cta-banner h2 { font-size: 24px; line-height: 1.2; }
    .cta-banner p { font-size: 14px; }
    .cta-banner-actions { flex-direction: column; align-items: stretch; }
    .cta-banner .btn-primary { justify-content: center; font-size: 15px; padding: 16px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    footer ul { columns: 2; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

    /* Sticky CTA on mobile */
    .sticky-cta { display: block; }
    body { padding-bottom: 58px; }
}

/* Small phones */
@media (max-width: 380px) {
    .hero h1, .hero h2 { font-size: 24px; }
    .hero-trust-item .num { font-size: 18px; }
    .section-title { font-size: 22px; }
    .logo-text .firm-name { font-size: 13px; }
    .sticky-cta a { font-size: 16px; padding: 14px; }
}
