/**
 * Summit Claims Recovery — Main Stylesheet
 * Public-facing website styles.
 * Colors: Navy #1e3a5f | Blue #3b5fc0
 */

/* ── Reset & Design Tokens ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:       #1e3a5f;
    --blue:       #3b5fc0;
    --accent:     #2563eb;
    --accent-h:   #1d4ed8;
    --accent-dim: rgba(37,99,235,.1);
    --success:    #10b981;
    --bg:         #f8fafc;
    --surface:    #ffffff;
    --border:     #e2e8f0;
    --text:       #0f172a;
    --muted:      #64748b;
    --radius:          12px;
    --nav-h:           68px;
    --nav-h-compact:   52px;
}

/* Smooth scroll with offset for fixed nav */
html {
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

@keyframes pageIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Scroll Reveal ───────────────────────────────────────── */
/* Elements start invisible and slide up when scrolled into view */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay classes for grouped reveals */
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    /* Frosted glass effect */
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: height .4s ease, box-shadow .4s ease, background .4s ease;
}

/* Stronger background once user scrolls */
.site-nav.scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Compact height when scrolled — saves screen real estate while reading */
.site-nav.compact {
    height: var(--nav-h-compact);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo wrapper — swap .nav-logo-icon for <img> when logo is ready */
.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0;
    /* Smooth shrink on scroll */
    transition: width .4s ease, height .4s ease, border-radius .4s ease, font-size .4s ease;
}

/* Shrink icon when nav compacts */
.site-nav.compact .nav-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: .8rem;
}

/* When logo image is ready, replace icon with: */
 .nav-logo-img { height: 48px; width: auto; max-width: 220px; display: block; object-fit: contain; transition: height .4s ease; } 
.site-nav.compact .nav-logo-img { height: 36px; }

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    overflow: hidden;
}

.nav-logo-name {
    font-size: .95rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    transition: font-size .4s ease;
}

/* Shrink name text when compact */
.site-nav.compact .nav-logo-name {
    font-size: .82rem;
}

.nav-logo-sub {
    font-size: .65rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    /* Fade and collapse tagline when compact */
    transition: opacity .4s ease, max-height .4s ease;
    max-height: 20px;
    opacity: 1;
}

/* Hide tagline when nav shrinks */
.site-nav.compact .nav-logo-sub {
    opacity: 0;
    max-height: 0;
}

/* Desktop nav links list */
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: .45rem .85rem;
    border-radius: 7px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color .15s, background .15s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent);
    background: var(--accent-dim);
}

/* Highlight the link matching the current scroll section */
.nav-links a.active {
    color: var(--accent);
    background: var(--accent-dim);
    font-weight: 600;
}

/* Desktop call-to-action button in nav */
.nav-cta {
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    padding: .5rem 1.25rem;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s, transform .15s, box-shadow .15s;
}

.nav-cta:hover {
    background: var(--accent-h);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.3);
}

/* Mobile hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

/* Animate hamburger into an X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    animation: drawerIn .2s ease;
}

.nav-drawer.open { display: block; }

@keyframes drawerIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-drawer a {
    display: block;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

/* Last link in drawer is styled as a CTA */
.nav-drawer a:last-child {
    border-bottom: none;
    color: var(--accent);
}

/* Offset page content below fixed nav */
/* page-body styles moved to bottom of file */

/* ── Hero Section ────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e3a5f 100%);
    color: #fff;
    padding: 7rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle dot-grid background texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content { position: relative; }

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
    max-width: 800px;
    margin: 0 auto 1.25rem;
    animation: heroIn .7s .1s ease both;
}

/* Highlight word in headline */
.hero h1 em {
    font-style: normal;
    color: #60a5fa;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 3rem;
    animation: heroIn .7s .25s ease both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Lead Capture Form ───────────────────────────────────── */
.lead-form-wrap {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.25rem;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
    animation: formUp .75s .35s ease both;
}

@keyframes formUp {
    from { opacity: 0; transform: translateY(32px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.form-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
}

.form-group { margin-bottom: .875rem; }

.form-label {
    display: block;
    font-size: .775rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .4rem;
}

.form-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .725rem 1rem;
    font-family: inherit;
    font-size: .9375rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-input::placeholder { color: #b0bec5; }

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: .95rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: .25rem;
    letter-spacing: -.01em;
    transition: background .15s, transform .15s, box-shadow .15s;
}

.btn-submit:hover {
    background: var(--accent-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

.btn-submit:active { transform: translateY(0); }

.form-disclaimer {
    font-size: .74rem;
    color: var(--muted);
    text-align: center;
    margin-top: .875rem;
    line-height: 1.5;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .875rem;
    margin-bottom: 1rem;
}

.form-success {
    text-align: center;
    padding: 1.5rem 0;
    animation: formUp .35s ease;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: .75rem;
    color: var(--success);
}

.form-success h3   { font-size: 1.3rem; font-weight: 700; color: var(--success); margin-bottom: .5rem; }
.form-success p    { color: var(--muted); font-size: .9rem; }

/* Font Awesome icons in footer contact links */
.footer-contact i {
    width: 1rem;
    text-align: center;
    color: var(--accent);
    margin-right: .25rem;
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--muted);
    transition: color .15s;
}

.trust-item:hover { color: var(--accent); }

/* Font Awesome icon sizing in trust bar */
.trust-item i {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
    color: var(--accent);
}

/* ── Content Sections ────────────────────────────────────── */
.section {
    padding: 5.5rem 1.5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 3.5rem;
    line-height: 1.7;
}

/* ── Steps Grid ──────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.85rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-color: rgba(37,99,235,.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    color: #fff;
    border-radius: 11px;
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.step-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.stats-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: #60a5fa;
}

.stat-item p {
    font-size: .9rem;
    color: #94a3b8;
    margin-top: .4rem;
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section { background: var(--bg); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .875rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.faq-item:hover { border-color: rgba(37,99,235,.25); }

.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(37,99,235,.08);
}

.faq-summary {
    padding: 1.25rem 1.5rem;
    font-size: .975rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    transition: color .15s;
}

/* Remove default browser triangle */
.faq-summary::-webkit-details-marker { display: none; }

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.faq-item[open] .faq-summary { color: var(--accent); }

/* Rotate + to X when open */
.faq-item[open] .faq-toggle {
    background: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 1.5rem 1.25rem;
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.7;
    animation: faqOpen .2s ease;
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    padding: 5.5rem 1.5rem;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: .8;
    margin-bottom: 2.5rem;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--accent);
    border-radius: 10px;
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: #0f172a;
    color: #64748b;
    padding: 3rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 2rem;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: .35rem;
    letter-spacing: -.01em;
}

.footer-brand-tagline { font-size: .825rem; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    font-size: .875rem;
    transition: color .15s;
}

.footer-contact a:hover { color: #fff; }

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: .85rem;
    transition: color .15s;
}

.footer-links a:hover { color: #e2e8f0; }

.footer-bottom { text-align: center; }

.footer-disclosure {
    font-size: .775rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 1.25rem;
}

.footer-copy { font-size: .775rem; }

/* ── Responsive Breakpoints ──────────────────────────────── */
@media (max-width: 768px) {
    /* Hide desktop nav links and CTA, show hamburger */
    .nav-links    { display: none; }
    .nav-cta      { display: none; }
    .nav-hamburger { display: flex; }

    /* Stack form fields on mobile */
    .form-row     { grid-template-columns: 1fr; }

    /* Who We Help — 2 columns on tablet */
    .who-grid     { grid-template-columns: repeat(2, 1fr); }

    /* Reduce stats gap */
    .stats-grid   { gap: 2.5rem; }

    /* Tighter trust bar */
    .trust-bar-inner { gap: 1.25rem; }

    /* Stack footer columns */
    .footer-top   { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .hero    { padding: 4.5rem 1rem 4rem; }
    .section { padding: 4rem 1rem; }

    /* Who We Help — 1 column on mobile */
    .who-grid { grid-template-columns: 1fr; }
}

/* ── Page fade-in on load (wrapper div, not body) ───────── */
/* Applied to .page-body so it doesn't affect position:fixed nav */
.page-body {
    padding-top: var(--nav-h);
    animation: pageFadeIn .8s ease forwards;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Disclosure Box ──────────────────────────────────────── */
.disclosure-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    max-width: 580px;
    margin: 0 auto 2rem;
    text-align: left;
    font-size: .85rem;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
}
.disclosure-box i { color: #60a5fa; font-size: 1rem; margin-top: .15rem; flex-shrink: 0; }
.disclosure-box strong { color: #fff; }
.disclosure-box em { font-style: normal; color: #93c5fd; }

/* ── Honeypot — hide from humans, visible to bots ────────── */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}

/* ── Consent checkbox ────────────────────────────────────── */
.form-consent {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin: .875rem 0;
    text-align: left;
}
.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: .2rem;
    accent-color: var(--accent);
    cursor: pointer;
}
.form-consent label {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* ── Why Legitimate section ──────────────────────────────── */
.legit-section { background: var(--bg); }
.legit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.legit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.legit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    border-color: rgba(37,99,235,.25);
}
.legit-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .95rem;
    margin-bottom: 1rem;
}
.legit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.legit-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.legit-card a  { color: var(--accent); text-decoration: none; }
.legit-card a:hover { text-decoration: underline; }

/* ── Who We Help section ─────────────────────────────────── */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.who-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}
.who-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.who-card i {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: .875rem;
    display: block;
}
.who-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.who-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── Documents section ───────────────────────────────────── */
.docs-section { background: var(--surface); }
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.doc-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s;
}
.doc-item:hover { border-color: rgba(37,99,235,.25); }
.doc-item i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: .15rem;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}
.doc-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.doc-item p  { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.docs-note {
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    background: var(--accent-dim);
    border: 1px solid rgba(37,99,235,.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: .9rem;
    color: var(--accent);
}
.docs-note i { margin-top: .15rem; flex-shrink: 0; }
.docs-note p { color: var(--text); line-height: 1.6; }

/* ── Footer brand registration line ─────────────────────── */
.footer-brand-reg {
    font-size: .75rem;
    color: #475569;
    margin-top: .2rem;
}

/* ── Footer contact span (non-link) ─────────────────────── */
.footer-contact span {
    color: #94a3b8;
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.footer-contact span i { color: var(--accent); width: 1rem; text-align: center; }


/* ── Thank You Page ──────────────────────────────────────── */
.thankyou-wrap {
    max-width: 620px;
    margin: 5rem auto;
    padding: 0 1.5rem;
    text-align: center;
}
.thankyou-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.25rem;
}
.thankyou-wrap h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}
.thankyou-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .75rem;
}
.thankyou-body {
    font-size: .975rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}
.thankyou-details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.thankyou-detail {
    display: flex;
    gap: .875rem;
    align-items: flex-start;
    font-size: .9rem;
    color: var(--text);
}
.thankyou-detail i { color: var(--accent); margin-top: .15rem; width: 1rem; flex-shrink: 0; }
.thankyou-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: gap .2s;
}
.thankyou-back:hover { gap: .75rem; }
/* Hide logo text when using image logo — image already contains company name */
.nav-logo-text { display: none; }
