/* KaiserMesotheliomaLawyer.com — v3.0 */
/* Team 5 (Brand) + Team 17 (UI/UX) redesign */
/* Direction: Simmons mesolaw — light, airy, white-dominant, orange accent */

:root {
    --primary: #0672BB;
    --primary-dark: #055a96;
    --primary-light: #e8f4fc;
    --blue-bg: #0672BB;
    --blue-bg-dark: #055a96;
    --accent: #F59E0B;
    --accent-dark: #d97706;
    --accent-light: #fefce8;
    --text: #1a2a3a;
    --text-light: #4a5d6e;
    --text-muted: #7a8d9e;
    --bg: #ffffff;
    --bg-alt: #f7f9fb;
    --bg-warm: #fdf8f4;
    --border: #e2e8f0;
    --trust-green: #22c55e;
    --link: #0672BB;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;

    --max-width: 1140px;
    --content-width: 800px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.05);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--text); }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
@media (max-width: 768px) { h2 { font-size: 1.5rem; } h3 { font-size: 1.15rem; } }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 768px) { .container { padding: 0 1rem; } }
.section { padding: var(--space-3xl) 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { margin-bottom: var(--space-xs); }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ===================== HEADER ===================== */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 1.5rem;
    max-width: var(--max-width); margin: 0 auto;
}
.header-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text); }
.header-logo-mark {
    width: 40px; height: 40px;
    background: var(--primary); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 0.95rem;
}
.header-logo-text { font-size: 1rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.header-logo-text small { display: block; font-size: 0.72rem; font-weight: 500; color: var(--text-muted); }
.header-right { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--primary); }
.header-phone-label { display: block; font-size: 0.68rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.header-phone-number { display: block; font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.header-cta {
    padding: 0.55rem 1.1rem; background: var(--accent); color: #1a2a3a;
    font-size: 0.85rem; font-weight: 600; border-radius: 6px;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.header-cta:hover { background: var(--accent-dark); color: #1a2a3a; transform: translateY(-1px); }
@media (max-width: 768px) {
    .header-inner { padding: 0.6rem 1rem; }
    .header-logo-text { font-size: 0.85rem; }
    .header-logo-text small { display: none; }
    .header-cta { display: none; }
    .header-phone-label { display: none; }
}

/* ===================== HERO — LIGHT (Simmons-style) ===================== */
.hero {
    background: var(--blue-bg);
    padding: var(--space-3xl) 0 var(--space-2xl);
    color: #fff;
}
.hero-layout {
    display: grid; grid-template-columns: 1fr 420px;
    gap: var(--space-2xl); align-items: start;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 0.4rem 1rem;
    font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-md);
}
.hero-badge::before {
    content: ''; width: 8px; height: 8px;
    background: var(--trust-green); border-radius: 50%;
}
.hero h1 {
    font-size: 2.75rem; font-weight: 800; line-height: 1.1;
    color: #fff; margin-bottom: var(--space-md); letter-spacing: -0.02em;
}
.hero h1 .highlight { color: var(--accent); }
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-lg); line-height: 1.65; max-width: 500px;
}
.hero-props { list-style: none; margin-bottom: var(--space-lg); }
.hero-props li {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.35rem 0; font-size: 1rem; font-weight: 500; color: #fff;
}
.hero-props .check-icon {
    width: 22px; height: 22px; background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stats-row {
    display: flex; gap: var(--space-md); margin-bottom: var(--space-lg);
}
.hero-stat {
    text-align: center; padding: var(--space-sm) var(--space-md);
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
}
.hero-stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-stat-label {
    display: block; font-size: 0.72rem; color: rgba(255,255,255,0.7);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.hero-phone-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: #fff; text-decoration: none; font-size: 1.3rem; font-weight: 800;
}
.hero-phone-cta .phone-label { display: block; font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero-stats-row { flex-wrap: wrap; }
    .hero-stat { flex: 1; min-width: 90px; }
}
@media (max-width: 480px) {
    .hero { padding: var(--space-xl) 0; }
    .hero h1 { font-size: 1.6rem; }
    .hero-stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-sm); }
}

/* ===================== HERO FORM ===================== */
.hero-form-card {
    background: #fff; border: none;
    border-radius: 10px; padding: var(--space-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.hero-form-card h3 {
    color: var(--primary); font-size: 1.2rem; text-align: center;
    margin-bottom: 0.3rem;
}
.hero-form-card .form-subtitle {
    text-align: center; color: var(--text-muted); font-size: 0.82rem;
    margin-bottom: var(--space-md);
}

/* ===================== FORMS ===================== */
.form-row { display: flex; gap: var(--space-xs); }
.form-row > .form-field { flex: 1; }
.form-field { margin-bottom: 10px; }
.form-field label {
    display: block; font-size: 0.8rem; font-weight: 600;
    color: var(--text-light); margin-bottom: 3px;
}
.form-field input, .form-field select, .form-field textarea {
    display: block; width: 100%; padding: 11px 14px;
    border: 1px solid var(--border); border-radius: 6px;
    font-family: var(--font-main); font-size: 1rem;
    color: var(--text); background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6,114,187,0.12);
}
.form-field textarea { resize: vertical; min-height: 70px; }
.form-field 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='%234a5d6e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 2.5rem;
}
@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 0; }
    .form-field input, .form-field select, .form-field textarea { min-height: 44px; font-size: 16px; }
}

/* Buttons */
.btn-primary {
    display: block; width: 100%; padding: 14px;
    background: var(--accent); color: #1a2a3a; border: none; border-radius: 6px;
    font-family: var(--font-main); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
    text-align: center; margin-top: var(--space-xs);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 12px 28px; background: var(--accent); color: #1a2a3a;
    border: none; border-radius: 6px; font-family: var(--font-main);
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--accent-dark); color: #1a2a3a; transform: translateY(-1px); }
.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 12px 28px; background: transparent;
    border: 2px solid var(--primary); color: var(--primary);
    border-radius: 6px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
@media (max-width: 768px) { .btn-primary { padding: 16px; min-height: 48px; } }

.form-trust-footer {
    display: flex; align-items: center; gap: var(--space-xs);
    margin-top: var(--space-sm); font-size: 0.78rem; color: var(--text-muted);
}
.form-trust-footer svg { flex-shrink: 0; }

/* ===================== TRUST BAR — badge images style ===================== */
.trust-bar {
    background: var(--bg); padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
    display: flex; align-items: center; justify-content: center;
    gap: var(--space-xl); flex-wrap: wrap;
}
.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    opacity: 0.7; transition: opacity 0.2s;
}
.trust-item:hover { opacity: 1; }
.trust-item-icon {
    width: 44px; height: 44px; background: var(--primary);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 0.6rem; font-weight: 800;
}
.trust-item-label {
    font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em; text-align: center;
}
@media (max-width: 768px) { .trust-bar-inner { gap: var(--space-lg); } }

/* ===================== ATTORNEY BIO ===================== */
.attorney-section { padding: var(--space-3xl) 0; }
.attorney-inner {
    display: grid; grid-template-columns: 260px 1fr;
    gap: var(--space-xl); align-items: start;
}
.attorney-photo {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
    border-radius: 10px; border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.85rem; text-align: center;
}
.attorney-name { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.2rem; }
.attorney-title-text {
    font-size: 0.82rem; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-md);
}
.attorney-content p { color: var(--text-light); margin-bottom: var(--space-sm); line-height: 1.7; }
.attorney-quote {
    background: var(--bg-alt); border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0; padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0; font-style: italic; color: var(--text); line-height: 1.7;
}
.attorney-quote cite {
    display: block; margin-top: var(--space-sm); font-style: normal;
    font-weight: 700; color: var(--primary); font-size: 0.9rem;
}
.attorney-stats { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.attorney-stat-card {
    flex: 1; text-align: center; padding: var(--space-sm);
    background: var(--bg-alt); border-radius: 8px; border: 1px solid var(--border);
}
.attorney-stat-card strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.attorney-stat-card span {
    font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.03em;
}
@media (max-width: 768px) {
    .attorney-inner { grid-template-columns: 1fr; text-align: center; }
    .attorney-photo { max-width: 200px; margin: 0 auto; }
    .attorney-quote { text-align: left; }
    .attorney-stats { flex-wrap: wrap; justify-content: center; }
    .attorney-stat-card { min-width: 100px; }
}

/* ===================== RECOVERIES — light bg ===================== */
.recoveries-section {
    background: var(--blue-bg); padding: var(--space-3xl) 0;
    color: #fff;
}
.recoveries-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md); max-width: 750px; margin: 0 auto var(--space-xl);
    position: relative; z-index: 1;
}
@media (max-width: 480px) {
    .recoveries-grid { grid-template-columns: 1fr; }
}
.recovery-card {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: var(--space-lg) var(--space-md);
    text-align: center; transition: background 0.2s, transform 0.15s;
}
.recovery-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.recovery-amount {
    font-size: 2.25rem; font-weight: 800; color: #fff;
    letter-spacing: -0.02em; margin-bottom: 0.15rem;
}
.recovery-type {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: var(--space-xs);
}
.recovery-desc { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.recoveries-section .section-header h2 { color: #fff; }
.recoveries-section .section-header p { color: rgba(255,255,255,0.75); }
.recoveries-cta { text-align: center; }

/* ===================== HOW WE HELP ===================== */
.how-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: var(--space-md);
}
.how-card {
    background: var(--bg); border: 1px solid var(--border);
    border-top: 3px solid var(--primary); border-radius: 0 0 10px 10px;
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    position: relative;
    transition: box-shadow 0.2s, transform 0.15s;
}
.how-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-top-color: var(--accent);
}
.how-number {
    width: 48px; height: 48px;
    background: var(--primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; font-weight: 800;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(6,114,187,0.25);
}
.how-card:hover .how-number {
    background: var(--accent);
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.how-card h3 {
    color: var(--text); font-size: 1.15rem; font-weight: 700;
    margin-bottom: var(--space-xs);
}
.how-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===================== EXPOSURE ===================== */
.exposure-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: var(--space-md);
}
.exposure-card {
    background: var(--bg); border: 1px solid var(--border);
    border-top: 3px solid var(--primary); border-radius: 8px;
    padding: var(--space-lg); transition: box-shadow 0.2s, transform 0.15s;
}
.exposure-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.exposure-card h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: var(--space-xs); }
.exposure-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===================== CONSULTATION CTA — warm light bg ===================== */
.consultation-cta {
    background: var(--blue-bg-dark); padding: var(--space-3xl) 0;
    color: #fff;
}
.consultation-inner {
    display: grid; grid-template-columns: 1fr 420px;
    gap: var(--space-xl); align-items: center;
}
.consultation-text h2 { margin-bottom: var(--space-sm); color: #fff; }
.consultation-text p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-md); line-height: 1.7; }
.consultation-phone {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: #fff; font-size: 1.5rem; font-weight: 800;
    text-decoration: none; margin-bottom: var(--space-sm);
}
.consultation-phone:hover { color: var(--accent); }
.consultation-form-card {
    background: #fff; border: none;
    border-radius: 10px; padding: var(--space-lg); box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.consultation-form-card h3 {
    color: var(--primary); font-size: 1.1rem; margin-bottom: var(--space-sm); text-align: center;
}

/* Packet checkbox */
.packet-checkbox {
    display: flex; align-items: flex-start; gap: 0.6rem;
    margin: var(--space-sm) 0; padding: var(--space-sm);
    background: var(--accent-light); border-radius: 6px; cursor: pointer;
}
.packet-checkbox input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.packet-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.packet-items { list-style: none; margin-top: 0.3rem; }
.packet-items li { font-size: 0.8rem; color: var(--text-light); padding: 0.1rem 0; }
.packet-items li::before { content: "\2022"; color: var(--accent); margin-right: 0.4rem; }

@media (max-width: 900px) {
    .consultation-inner { grid-template-columns: 1fr; }
    .consultation-text { text-align: center; }
}

/* ===================== FAQ ===================== */
.faq-section { padding: var(--space-3xl) 0; }
.faq-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: var(--space-xs);
}
.faq-item {
    border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: var(--space-md) var(--space-lg);
    background: none; border: none; font-family: var(--font-main);
    font-size: 1rem; font-weight: 600; color: var(--text);
    cursor: pointer; text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-toggle {
    font-size: 1.25rem; color: var(--text-muted);
    transition: transform 0.2s; flex-shrink: 0; margin-left: var(--space-sm);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    display: none; padding: 0 var(--space-lg) var(--space-md);
    color: var(--text-light); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===================== FOOTER ===================== */
.site-footer {
    background: #0b1a2e; color: rgba(255,255,255,0.7);
    padding: var(--space-xl) 0 var(--space-lg);
}
.footer-inner { text-align: center; }
.footer-firm { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.15rem; }
.footer-tagline { font-size: 0.85rem; margin-bottom: var(--space-md); }
.footer-phone {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: #fff; font-size: 1.2rem; font-weight: 700;
    text-decoration: none; margin-bottom: var(--space-md);
}
.footer-phone:hover { color: var(--accent); }
.footer-links {
    display: flex; justify-content: center; gap: var(--space-md);
    margin-bottom: var(--space-md); flex-wrap: wrap;
}
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
    font-size: 0.72rem; color: rgba(255,255,255,0.3);
    max-width: 650px; margin: 0 auto; line-height: 1.6;
}

/* ===================== STICKY CALL BAR ===================== */
.sticky-call-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
    padding: 0.75rem; padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    text-align: center; box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-call-bar a {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    color: #fff; text-decoration: none; font-size: 1.05rem; font-weight: 700;
}
.sticky-call-bar .phone-icon { animation: phoneRing 1.5s ease-in-out infinite; }
@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(8deg); }
    50% { transform: rotate(0); }
}
@media (max-width: 768px) {
    .sticky-call-bar { display: block; }
    .site-footer { padding-bottom: 80px; }
}

/* ===================== UTILITIES ===================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-field.error input, .form-field.error select, .form-field.error textarea { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.field-error { font-size: 0.75rem; color: #dc2626; margin-top: 3px; font-weight: 500; }
.btn-primary.loading { pointer-events: none; opacity: 0.7; }
.btn-primary.loading::after { content: ""; display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; margin-left: 0.5rem; animation: spin 0.6s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }

.btn-outline-light {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 12px 28px; background: transparent;
    border: 2px solid rgba(255,255,255,0.5); color: #fff;
    border-radius: 6px; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* White button for blue background sections */
.btn-white {
    display: block; width: 100%; padding: 14px;
    background: #fff; color: var(--primary); border: none; border-radius: 6px;
    font-family: var(--font-main); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
    text-align: center; margin-top: var(--space-xs);
}
.btn-white:hover { background: #f0f7fc; transform: translateY(-1px); }
.btn-white:active { transform: translateY(0); }
@media (max-width: 768px) { .btn-white { padding: 16px; min-height: 48px; } }
.btn-white.loading { pointer-events: none; opacity: 0.7; }
.btn-white.loading::after { content: ""; display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(6,114,187,0.3); border-top-color: var(--primary); border-radius: 50%; margin-left: 0.5rem; animation: spin 0.6s linear infinite; vertical-align: middle; }

/* Veterans callout — Team 36 human engagement component */
.how-veterans-callout {
    margin-top: var(--space-xl);
    background: var(--primary-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: var(--space-lg) var(--space-xl);
}
.veterans-inner {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
}
.veterans-text h3 {
    font-size: 1.15rem; color: var(--primary); margin-bottom: var(--space-xs);
}
.veterans-text p {
    font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin: 0;
}
.how-veterans-callout .btn-secondary { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 768px) {
    .how-veterans-callout { padding: var(--space-md); }
    .veterans-inner { flex-direction: column; align-items: flex-start; }
    .how-veterans-callout .btn-secondary { width: 100%; justify-content: center; }
}

/* Recoveries lead stat — big trust fund number */
.recoveries-lead-stat {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.lead-stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}
.lead-stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
@media (max-width: 480px) {
    .lead-stat-number { font-size: 2rem; }
    .recoveries-lead-stat { padding: var(--space-md); }
}

/* Recoveries disclaimer */
.recoveries-disclaimer {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Amber button — for blue backgrounds */
.btn-amber {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 14px 32px; background: var(--accent); color: #1a2a3a;
    border: none; border-radius: 6px; font-family: var(--font-main);
    font-size: 1rem; font-weight: 700; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.btn-amber:hover { background: var(--accent-dark); color: #1a2a3a; transform: translateY(-1px); }
