/* Panel Pro Panel & Paint — automotive design
   Palette pulled from the brand logo: navy + lime green */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --lime: #C9F24E;
    --lime-bright: #D7FF5C;
    --lime-deep: #A8D01B;
    --navy: #0B1739;
    --navy-2: #142452;
    --navy-3: #1E3166;
    --ink: #060E2B; /* matches logo background — use on header/topbar/footer so the logo blends seamlessly */
    --text: #18213B;
    --text-muted: #5C6780;
    --line: #E4E7EF;
    --bg: #FFFFFF;
    --bg-soft: #F4F6FB;
    --danger: #D62828;
    --shadow-lg: 0 30px 60px -25px rgba(11,23,57,.35);
    --shadow-md: 0 10px 30px -12px rgba(11,23,57,.2);
    --font-display: 'Barlow Condensed', 'Oswald', 'Impact', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1220px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lime-deep); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }

p { color: var(--text); }

/* ─── Top utility bar ─── */
.topbar {
    background: var(--ink);
    color: #c9d2e8;
    font-size: .8rem;
    padding: .45rem 0;
    letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--lime); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .tb-right { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ─── Header ─── */
.site-header {
    background: var(--ink); /* same as logo bg — no visible seam around the logo */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 24px -14px rgba(0,0,0,.5);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
}
.site-logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
    gap: .75rem;
}
.site-logo img { height: 100px; width: auto; display: block; }
.site-logo:hover { color: var(--lime); }

.site-nav {
    display: flex;
    gap: .25rem;
    align-items: stretch;   /* fill full header height */
    align-self: stretch;
}
.site-nav > a, .nav-dropdown > a {
    display: flex;
    align-items: center;    /* center label inside the full-height item */
    color: #EAEEF8;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 0 .85rem;
    border-radius: 4px;
    position: relative;
    white-space: nowrap;
}
.nav-dropdown { display: flex; align-items: stretch; }
.site-nav > a:hover, .nav-dropdown > a:hover,
.site-nav > a.active, .nav-dropdown > a.active {
    color: var(--lime);
}
.site-nav > a.active::after, .nav-dropdown > a.active::after {
    content: '';
    position: absolute;
    left: 1rem; right: 1rem; bottom: 22%;
    height: 2px;
    background: var(--lime);
}
.site-nav .btn { margin-left: .75rem; align-self: center; }
.site-nav > a.btn-primary {
    color: var(--navy);            /* override nav's light text so it's readable on lime */
    padding: 1rem 1.9rem;           /* roomier tap target */
    font-size: 1.02rem;
    letter-spacing: .08em;
}
.site-nav > a.btn-primary:hover { color: var(--navy); }
.site-nav > a.btn-primary.active::after { display: none; } /* no underline under the CTA */

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: #fff;
    border-top: 3px solid var(--lime);
    padding: .5rem 0;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block; padding: .55rem 1.2rem;
    font-size: .82rem; color: var(--navy); font-weight: 500;
    text-transform: uppercase; letter-spacing: .05em;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--lime-deep); }

.mobile-menu-btn {
    display: none; background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    font-size: 1.25rem; padding: .35rem .7rem; border-radius: 4px; cursor: pointer;
}
.mobile-menu-btn:hover { border-color: var(--lime); color: var(--lime); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .9rem 1.6rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
    background: var(--lime);
    color: var(--navy);
    box-shadow: 0 6px 20px -8px rgba(201,242,78,.7);
}
.btn-primary:hover { background: var(--lime-bright); color: var(--navy); box-shadow: 0 10px 28px -10px rgba(201,242,78,.9); }
.btn-outline {
    background: transparent; color: #fff; border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-dark {
    background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-dark:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.btn-ghost {
    background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--lime); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ─── Hero ─── */
.hero {
    position: relative;
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(201,242,78,.18), transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
    color: #fff;
    overflow: hidden;
    padding: 5.5rem 0 6.5rem;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    right: -140px; top: -140px;
    width: 520px; height: 520px;
    border: 2px solid rgba(201,242,78,.16);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}
.hero .container { position: relative; z-index: 3; }
/* Hero photo — fills the entire hero as a tinted backdrop.
   A left-weighted gradient keeps headline/sub copy legible while
   letting the workshop scene read through on the right. */
.hero-image {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.hero-image img {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
    object-fit: cover; object-position: 35% center;
    filter: brightness(.92) saturate(.95) contrast(1.02);
}
.hero-image::after {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    background:
        linear-gradient(270deg, rgba(8,16,42,.85) 0%, rgba(8,16,42,.6) 38%, rgba(8,16,42,.18) 70%, rgba(8,16,42,.05) 100%),
        linear-gradient(180deg, rgba(8,16,42,.15) 0%, transparent 40%, rgba(8,16,42,.35) 100%);
}
.hero-image-tag {
    position: absolute; left: 1.5rem; bottom: 1.5rem; z-index: 3;
    color: #fff;
    font-family: var(--font-display);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .55rem .9rem;
    background: rgba(10,15,40,.7);
    border-left: 3px solid var(--lime);
    backdrop-filter: blur(4px);
}
.hero-content { max-width: 720px; margin-left: auto; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    color: var(--lime);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .82rem;
    margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
    content: ''; width: 32px; height: 2px; background: var(--lime);
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    font-weight: 800;
    line-height: .98;
    margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--lime); }
.hero-sub {
    color: #CAD3EB;
    font-size: 1.125rem;
    max-width: 620px;
    margin-bottom: 2rem;
    line-height: 1.65;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}
.hero-stat .num {
    font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
    color: var(--lime); line-height: 1;
}
.hero-stat .lbl { color: #9FA9C5; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem; }

.hero-card {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,242,78,.25);
    padding: 2rem;
    backdrop-filter: blur(6px);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}
.hero-card::before {
    content: ''; position: absolute; top: -2px; left: -2px;
    width: 60px; height: 60px;
    border-top: 3px solid var(--lime);
    border-left: 3px solid var(--lime);
}
.hero-card::after {
    content: ''; position: absolute; bottom: -2px; right: -2px;
    width: 60px; height: 60px;
    border-bottom: 3px solid var(--lime);
    border-right: 3px solid var(--lime);
}
.hero-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.hero-card ul { list-style: none; }
.hero-card li {
    color: #D6DDF0;
    padding: .55rem 0 .55rem 1.8rem;
    position: relative;
    border-bottom: 1px dashed rgba(255,255,255,.08);
    font-size: .95rem;
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
    content: '▸'; position: absolute; left: 0; color: var(--lime); font-weight: 800;
}

/* ─── Certification strip ─── */
.certs {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
}
.certs-inner {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
}
.certs-label {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: .15em;
    font-size: .85rem;
    padding-right: 1.5rem;
    border-right: 2px solid var(--lime);
}
.certs img { height: 54px; width: auto; object-fit: contain; filter: saturate(1); }

/* Equal-tile certification row — used on /about. Each cert sits inside a
   uniform white card so the eye reads 3 identical containers; per-logo
   internal padding differences fade behind the consistent frame. */
.cert-links {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.cert-link {
    display: flex; align-items: center; justify-content: center;
    width: 180px; height: 130px;
    padding: 1rem 1.25rem;
    background: var(--bg-soft);
    border-radius: 6px;
    transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.cert-link:hover, .cert-link:focus-visible {
    transform: translateY(-3px);
    background: #EEF1F8;
    box-shadow: 0 10px 24px rgba(10,15,40,.08);
}
.cert-link:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.cert-link img {
    width: auto;
    object-fit: contain;
    display: block;
}
/* Per-logo sizing tuned for equal optical weight inside the same card:
   - CRA portrait gets full card height (narrow aspect, dense fill)
   - MTA square is reined in because its solid blue fill reads heavy
   - I-CAR text-only logo is sized up to match — low ink density needs area */
.cert-link img[alt^="Collision"] { max-height: 102px; max-width: 70px; }
.cert-link img[alt^="MTA"]       { max-height: 76px;  max-width: 76px; }
.cert-link img[alt^="I-CAR"]     { max-height: 92px;  max-width: 132px; }

/* ─── Option marker (temporary, for client review) ─── */
.opt-marker {
    background: #FFF7D9; border-top: 1px dashed #E5C12A; border-bottom: 1px dashed #E5C12A;
    text-align: center; padding: .45rem 1rem;
}
.opt-marker span {
    display: inline-block;
    font-family: var(--font-display); font-weight: 700; font-size: .72rem;
    letter-spacing: .15em; text-transform: uppercase; color: #8C6A00;
}

/* ─── Certs V1 — Rich trust section ─── */
.certs-v1 { background: var(--bg-soft); padding: 4.5rem 0; }
.certs-v1-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    max-width: 1060px; margin: 0 auto;
}
.cert-card {
    display: block;
    background: #fff; border: 1px solid var(--line);
    padding: 2rem 1.5rem 1.75rem; text-align: center;
    position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cert-card:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.cert-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--lime);
    transform: scaleX(.4); transform-origin: left;
    transition: transform .3s ease;
}
.cert-card:hover {
    border-color: var(--lime-deep);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,.07);
}
.cert-card:hover::before { transform: scaleX(1); }
.cert-card-logo {
    height: 92px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.cert-card-logo img { max-height: 92px; max-width: 100%; width: auto; object-fit: contain; }
.cert-card h3 {
    font-size: 1.15rem; margin: 0 0 .25rem; color: var(--navy);
    letter-spacing: .02em;
}
.cert-card .cert-full {
    font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-muted); margin: 0 0 1rem;
}
.cert-card .cert-desc {
    font-size: .95rem; line-height: 1.55; color: var(--text); margin: 0;
}
@media (max-width: 820px) { .certs-v1-grid { grid-template-columns: 1fr; max-width: 440px; } }

/* ─── Certs V2 — Dark contrast band ─── */
.certs-v2 {
    background: var(--navy); color: #fff;
    padding: 3rem 0;
    border-top: 3px solid var(--lime);
}
.certs-v2-inner {
    display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center;
}
.certs-v2-head .certs-v2-eyebrow {
    display: inline-block;
    font-family: var(--font-display); font-weight: 700; font-size: .72rem;
    letter-spacing: .25em; text-transform: uppercase; color: var(--lime);
    margin-bottom: .6rem;
}
.certs-v2-head h3 {
    color: #fff; font-size: 1.55rem; line-height: 1.25; margin: 0;
    letter-spacing: -.01em;
}
.certs-v2-logos {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: flex-end;
}
.cert-chip {
    background: #fff; padding: .85rem 1.1rem; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    height: 82px; min-width: 120px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: transform .2s;
}
.cert-chip:hover { transform: translateY(-3px); }
.cert-chip img { max-height: 100%; max-width: 140px; width: auto; object-fit: contain; }
@media (max-width: 820px) {
    .certs-v2-inner { grid-template-columns: 1fr; text-align: center; }
    .certs-v2-logos { justify-content: center; }
    .certs-v2-head h3 { font-size: 1.3rem; }
}

/* ─── Certs V3 — Enlarged badges ─── */
.certs-v3 {
    background: var(--bg-soft); padding: 3.5rem 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.certs-v3-label {
    text-align: center;
    font-family: var(--font-display); font-weight: 700; font-size: .78rem;
    letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted);
    margin: 0 0 1.75rem;
    position: relative;
}
.certs-v3-label::after {
    content: ''; display: block; width: 40px; height: 2px; background: var(--lime);
    margin: .75rem auto 0;
}
.certs-v3-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    max-width: 900px; margin: 0 auto;
}
.cert-badge {
    background: #fff; border: 1px solid var(--line);
    padding: 1.5rem 1rem 1.25rem;
    display: flex; flex-direction: column; align-items: center; gap: .9rem;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.cert-badge::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--lime);
}
.cert-badge:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.cert-badge img { height: 88px; max-width: 100%; width: auto; object-fit: contain; }
.cert-badge span {
    font-family: var(--font-display); font-weight: 700; font-size: .9rem;
    letter-spacing: .08em; text-transform: uppercase; color: var(--navy);
}
@media (max-width: 680px) { .certs-v3-grid { grid-template-columns: 1fr; max-width: 360px; } }

/* ─── Generic section ─── */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #C3CBE2; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; }
.section-eyebrow {
    display: inline-block;
    color: var(--lime-deep);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: .9rem;
}
.section-dark .section-eyebrow { color: var(--lime); }
.section-title {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.section-title .accent { color: var(--lime-deep); }
.section-dark .section-title .accent { color: var(--lime); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); }
.section-dark .section-sub { color: #B8C1DC; }

/* ─── Feature / about blocks ─── */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
}
.about-copy p + p { margin-top: 1rem; color: var(--text); line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-features .feat {
    background: var(--bg-soft); padding: 1.15rem 1.25rem; border-left: 3px solid var(--lime);
}
.about-features .feat strong {
    display: block; font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: .05em; color: var(--navy); margin-bottom: .2rem;
}
.about-features .feat span { font-size: .88rem; color: var(--text-muted); }

.about-art {
    position: relative;
    padding: 2rem;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-3) 100%);
    color: #fff;
    overflow: hidden;
    min-height: 360px;
    display: flex; flex-direction: column; justify-content: center;
}
.about-art::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(201,242,78,.25), transparent 60%);
}
.about-art-inner { position: relative; z-index: 2; }
.about-art h3 {
    color: var(--lime); font-size: 4.5rem; line-height: 1; margin-bottom: .5rem;
}
.about-art p.lead { color: #fff; font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; line-height: 1.2; }
.about-art small { color: #A9B2CF; text-transform: uppercase; letter-spacing: .2em; font-size: .75rem; margin-top: 1.5rem; display: block; }

/* Photo card — same footprint as .about-art, real workshop photography.
   Self-centers in the about-grid so the photo sits visually mid-text
   when the prose column is taller. */
.about-photo {
    position: relative;
    align-self: center;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: 0 12px 40px rgba(10,15,40,.12);
}
.about-photo img {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
    object-fit: cover; object-position: center;
    display: block;
    filter: saturate(.92) contrast(1.03);
}
.about-photo::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,15,40,0) 55%, rgba(10,15,40,.42) 100%),
        radial-gradient(800px 220px at 100% 100%, rgba(201,242,78,.10), transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.about-side { display: flex; flex-direction: column; gap: 1.25rem; }
/* Quick facts card — fills the right column under the photo with
   business essentials so the layout balances the dense left column. */
.quick-facts {
    position: relative;
    overflow: hidden;
    padding: 1.75rem 1.75rem 1.5rem;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-3) 100%);
    color: #fff;
    border-left: 4px solid var(--lime);
}
.quick-facts::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(520px 220px at 100% 0%, rgba(201,242,78,.16), transparent 65%);
    pointer-events: none;
}
.qf-eyebrow {
    position: relative;
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .75rem;
    color: var(--lime);
    margin-bottom: 1.1rem;
}
.quick-facts dl { position: relative; margin: 0; }
.quick-facts dt {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .14em;
    color: rgba(255,255,255,.55);
    margin-top: 1rem;
}
.quick-facts dt:first-of-type { margin-top: 0; }
.quick-facts dd {
    margin: .25rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #fff;
}
.quick-facts dd a { color: var(--lime); text-decoration: none; }
.quick-facts dd a:hover { text-decoration: underline; }
.qf-certs {
    position: relative;
    margin: 1.4rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .14em;
    color: rgba(255,255,255,.6);
}

.about-photo .photo-tag {
    position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 2;
    background: rgba(10,15,40,.78);
    color: #fff;
    padding: .55rem .9rem;
    font-family: var(--font-display);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border-left: 3px solid var(--lime);
    backdrop-filter: blur(4px);
}

/* ─── Services grid ─── */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 2rem 1.75rem;
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; left: 0; top: 0;
    width: 4px; height: 100%; background: var(--lime);
    transform: scaleY(0); transform-origin: bottom; transition: transform .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); transform-origin: top; }
.service-num {
    font-family: var(--font-display); font-weight: 800; font-size: 3rem;
    color: var(--bg-soft);
    line-height: 1; position: absolute; right: 1.25rem; top: 1rem;
    transition: color .2s;
}
.service-card:hover .service-num { color: var(--lime); }
.service-icon {
    width: 58px; height: 58px;
    background: var(--lime);
    color: var(--navy);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform .25s, background .25s;
}
.service-icon svg { width: 30px; height: 30px; display: block; }
.service-card:hover .service-icon { transform: translateY(-3px) rotate(-3deg); }
.service-card h3 {
    font-size: 1.35rem; margin-bottom: .75rem; color: var(--navy);
    padding-right: 3rem;
}
.service-card p { color: var(--text-muted); font-size: .94rem; line-height: 1.7; }

/* ─── Process timeline (insurance) ─── */
.process {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    position: relative;
}
.process::before {
    content: ''; position: absolute; top: 48px; left: 10%; right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--lime) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step {
    background: #fff; padding: 2.25rem 1.75rem; text-align: center;
    border: 1px solid var(--line);
    position: relative; z-index: 1;
}
.step-num {
    width: 72px; height: 72px; margin: 0 auto 1.25rem;
    background: var(--lime); color: var(--navy);
    font-family: var(--font-display); font-weight: 800; font-size: 2rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 6px #fff, 0 0 0 8px var(--lime);
}
.step h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.step p { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }

/* ─── Process flow (5-step icon timeline) ─── */
.process-flow {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
    padding: 1rem 0 0;
    margin: 0;
}
.process-flow::before {
    /* connecting dashed line between icon centers */
    content: '';
    position: absolute;
    top: calc(1rem + 44px);       /* 1rem top padding + half icon height */
    left: calc(10% + 1rem);
    right: calc(10% + 1rem);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--lime) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.pf-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.pf-badge {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 1rem;
}
.pf-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--navy);
    box-shadow: 0 0 0 6px #F4F6FB, 0 12px 28px -14px rgba(11,23,57,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
}
.pf-step:hover .pf-icon { transform: translateY(-3px); box-shadow: 0 0 0 6px #F4F6FB, 0 18px 32px -14px rgba(11,23,57,.7); }
.pf-icon svg { width: 42px; height: 42px; display: block; }
.pf-num {
    position: absolute;
    top: -4px; right: -6px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--lime);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #F4F6FB;
}
.pf-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin: 0 0 .4rem;
    letter-spacing: .01em;
}
.pf-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 220px;
}

@media (max-width: 900px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .process-flow::before { display: none; }
}
@media (max-width: 520px) {
    .process-flow { grid-template-columns: 1fr; }
    .pf-desc { max-width: 320px; }
}

/* ─── Insurers grid ─── */
.insurers-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .75rem;
    max-width: 460px; margin: 0 auto;
}
.insurers-grid .insurer { flex: 0 0 calc(50% - .75rem / 2); }
@media (min-width: 640px) {
    .insurers-grid { max-width: 720px; }
    .insurers-grid .insurer { flex: 0 0 calc(33.333% - .75rem * 2 / 3); }
}
@media (min-width: 1024px) {
    .insurers-grid { max-width: 1100px; gap: 1rem; }
    .insurers-grid .insurer { flex: 0 0 calc(20% - 1rem * 4 / 5); }
}
.insurer {
    min-height: 150px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .9rem;
    background: #fff; border: 1px solid var(--line);
    padding: 1.25rem .75rem;
    text-align: center;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.insurer-logo {
    height: 56px; width: 100%; max-width: 140px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.insurer-logo img {
    max-width: 100%; max-height: 100%; width: auto; height: auto;
    object-fit: contain;
}
/* Per-brand optical sizing — unifies visual weight across differing aspect ratios */
.insurer--iag          .insurer-logo { height: 72px; max-width: 72px; }
.insurer--state        .insurer-logo { height: 68px; max-width: 110px; }
.insurer--aa-insurance .insurer-logo { height: 58px; max-width: 150px; }
.insurer--ami          .insurer-logo { height: 58px; max-width: 115px; }
.insurer--tower        .insurer-logo { height: 58px; max-width: 150px; }
.insurer--protecta     .insurer-logo { height: 56px; max-width: 150px; }
.insurer--vero         .insurer-logo { height: 48px; max-width: 115px; }
.insurer--mas          .insurer-logo { height: 44px; max-width: 110px; }
.insurer--fmg          .insurer-logo { height: 46px; max-width: 108px; }
.insurer-name {
    font-family: var(--font-display); font-weight: 700; font-size: .72rem;
    text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted);
    transition: color .2s;
}
.insurer:hover {
    border-color: var(--lime);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.05);
}
.insurer:hover .insurer-name { color: var(--navy); }
.insurer-more {
    text-decoration: none; color: inherit;
    border-style: dashed; border-color: var(--line);
    background: transparent;
}
.insurer-more .insurer-more-plus {
    font-family: var(--font-display); font-weight: 800;
    font-size: 3rem; line-height: 1; color: var(--lime);
}
.insurer-more:hover { border-style: solid; border-color: var(--lime); background: #fff; }
.insurer-more:hover .insurer-name { color: var(--lime); }

/* ─── FAQ ─── */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 0;
}
.faq-item summary {
    list-style: none;
    padding: 1.4rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .01em;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; color: var(--lime-deep); font-size: 2rem; font-weight: 400;
    transition: transform .2s;
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--lime-deep); }
.faq-item .faq-body {
    padding: 0 0 1.4rem;
    color: var(--text); line-height: 1.75; font-size: 1rem;
}

/* ─── CTA banner ─── */
.cta-banner {
    background: var(--navy);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(135deg, transparent 0%, transparent 50%, rgba(201,242,78,.08) 50%, rgba(201,242,78,.08) 60%, transparent 60%);
    pointer-events: none;
}
.cta-banner .container { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .25rem; }
.cta-banner p { color: #B8C1DC; font-size: 1.05rem; }
.cta-banner .cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ─── Contact page ─── */
.contact-grid {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem;
}
.contact-info { display: grid; gap: 1rem; }
.info-card {
    background: #fff; border: 1px solid var(--line);
    padding: 1.25rem 1.5rem;
    display: flex; gap: 1rem; align-items: flex-start;
    border-left: 3px solid var(--lime);
}
.info-card .icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 1.1rem; font-weight: 700;
}
.info-card h4 {
    font-family: var(--font-display); text-transform: uppercase;
    font-size: .95rem; letter-spacing: .08em; margin-bottom: .3rem; color: var(--navy);
}
.info-card p, .info-card a { color: var(--text); font-size: .95rem; line-height: 1.6; }
.info-card a:hover { color: var(--lime-deep); }

.contact-form-wrap {
    background: #fff; border: 1px solid var(--line);
    padding: 2rem;
}
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }

/* ─── Forms ─── */
.form-input {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-size: .95rem;
    font-family: var(--font-body);
    background: #fff;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus {
    outline: none; border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(201,242,78,.25);
}
.form-label {
    display: block; font-size: .82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .45rem; color: var(--navy);
}

/* ─── Map ─── */
.map-wrap {
    border: 1px solid var(--line);
    overflow: hidden;
    line-height: 0;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ─── Footer ─── */
.site-footer {
    background: var(--ink);
    color: #A9B2CF;
    padding: 4.5rem 0 1.5rem;
    margin-top: 0;
    position: relative;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--lime) 0%, transparent 60%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: #A9B2CF; line-height: 1.75; }
.site-footer h4 {
    color: #fff; font-family: var(--font-display); font-size: 1rem;
    text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem;
}
.site-footer h4::after {
    content: ''; display: block; width: 32px; height: 2px;
    background: var(--lime); margin-top: .5rem;
}
.site-footer p, .site-footer a {
    font-size: .9rem; color: #A9B2CF; display: block; margin-bottom: .45rem; line-height: 1.6;
}
.site-footer a:hover { color: var(--lime); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p,
.footer-bottom a { font-size: .8rem; color: #7F88A3; margin: 0; }
.footer-bottom a { display: inline; text-decoration: none; }
.footer-bottom a:hover { color: var(--lime); }

/* ─── Gallery ─── */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ─── Utility ─── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: 3rem; }
.pill {
    display: inline-block;
    background: rgba(201,242,78,.15); color: var(--lime-deep);
    padding: .25rem .7rem; font-size: .75rem;
    text-transform: uppercase; letter-spacing: .1em;
    font-family: var(--font-display); font-weight: 700;
    border: 1px solid rgba(201,242,78,.35);
}
.section-dark .pill { color: var(--lime); }

/* ─── Page hero (interior pages) ─── */
.page-hero {
    background:
        radial-gradient(900px 400px at 85% 0%, rgba(201,242,78,.14), transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 4.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.page-hero h1 .accent { color: var(--lime); }
.page-hero p { color: #BAC3DF; max-width: 720px; margin: 0 auto; font-size: 1.1rem; }
.crumb {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--lime);
    font-family: var(--font-display);
    margin-bottom: .9rem;
    font-weight: 700;
}
.crumb a { color: #CAD3EB; }
.crumb a:hover { color: var(--lime); }

/* ─── Responsive ─── */
@media (max-width: 980px) {
    .hero-image::after {
        background:
            linear-gradient(180deg, rgba(8,16,42,.55) 0%, rgba(8,16,42,.72) 50%, rgba(8,16,42,.82) 100%);
    }
    .hero-image img { object-position: 55% center; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: 1fr; }
    .process::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 3.5rem 0 4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .cta-banner .container { flex-direction: column; text-align: center; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .mobile-menu-btn { display: block; }
    .site-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--navy); flex-direction: column;
        padding: 1rem; gap: .25rem;
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 14px 30px -10px rgba(0,0,0,.6);
    }
    .site-nav.open { display: flex; }
    .site-nav > a, .nav-dropdown > a { padding: .75rem 1rem; width: 100%; }
    .site-nav .btn { margin: .5rem 0 0; width: 100%; }
    .site-header .container { gap: 1rem; }
    .site-logo img { height: 56px; }
    .topbar { font-size: .72rem; padding: .35rem 0; }
    .topbar .container { justify-content: center; text-align: center; gap: .25rem .75rem; }
    .topbar .container > div { width: 100%; }
    .topbar .tb-right { justify-content: center; gap: .5rem .75rem; }
    .topbar .tb-email { display: none; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat .num { font-size: 1.8rem; }
    .certs-label { border-right: none; padding-right: 0; text-align: center; width: 100%; }
}
