﻿/* =========================================================
FILE: css/company.css
Purpose:
- Company page styling only
- Mirrors the working Capabilities page image/card pattern
- No reveal rules
- No animation rules
========================================================= */

/* =========================================================
PAGE BASE
========================================================= */

.company-page {
    background: #ffffff;
}

    .company-page main {
        background: #ffffff;
    }

    .company-page .section {
        padding: clamp(3.5rem, 7vw, 6rem) 0;
    }

    .company-page .section-heading {
        max-width: 820px;
        margin-bottom: 1.5rem;
    }

        .company-page .section-heading h2 {
            color: var(--sfs-text);
            font-size: clamp(2rem, 4vw, 3.3rem);
            line-height: 1.05;
            letter-spacing: -0.04em;
            margin-bottom: 0.85rem;
        }

        .company-page .section-heading p {
            color: var(--sfs-muted);
            font-size: clamp(1rem, 1.2vw, 1.1rem);
            line-height: 1.75;
            font-weight: 600;
        }

    .company-page .section-kicker,
    .company-page .eyebrow {
        display: inline-block;
        margin-bottom: 0.75rem;
        color: var(--sfs-blue);
        font-size: 0.85rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

/* =========================================================
HERO
section = relative, overflow hidden
image = absolute, covers full section (z-index 0)
::after overlay = z-index 1
content = z-index 2
card = glass box over image
========================================================= */

.company-hero {
    position: relative;
    min-height: clamp(680px, 82vw, 980px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0d2a45;
}

.company-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.company-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(5, 18, 32, 0.44) 0%, rgba(5, 18, 32, 0.16) 46%, rgba(5, 18, 32, 0.04) 100% );
}

.company-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    min-height: inherit;
    margin: 0;
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 7vw, 6rem) clamp(7rem, 12vw, 16rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.company-hero-card {
    width: min(680px, calc(100% - 2rem));
    padding: clamp(1.4rem, 3vw, 2.35rem);
    background: linear-gradient( 180deg, rgba(243, 249, 255, 0.76) 0%, rgba(220, 236, 248, 0.66) 42%, rgba(199, 222, 239, 0.58) 100% );
    border: 1px solid rgba(126, 160, 190, 0.62);
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(18, 32, 47, 0.22);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

    .company-hero-card h1 {
        color: var(--sfs-text);
        font-size: clamp(2.35rem, 4.9vw, 4.7rem);
        line-height: 1.02;
        letter-spacing: -0.05em;
        margin-bottom: 1rem;
    }

    .company-hero-card p {
        color: var(--sfs-blue);
        font-size: clamp(0.98rem, 1.25vw, 1.1rem);
        line-height: 1.78;
        font-weight: 600;
    }
.company-hero-load {
    opacity: 0;
    transform: translateY(18px);
    animation: heroCardReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

@keyframes heroCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
QUICK LINKS
========================================================= */

.company-quicklinks {
    border-top: 1px solid #dbe4ec;
    border-bottom: 1px solid #dbe4ec;
    background: #eaf2f8;
}

    .company-quicklinks .credibility-items {
        min-height: 72px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem 2rem;
        padding: 1rem 0;
        color: #29455f;
        font-weight: 700;
        text-align: center;
    }

        .company-quicklinks .credibility-items a {
            color: #29455f;
            font-weight: 800;
            transition: color 0.2s ease, transform 0.2s ease;
        }

            .company-quicklinks .credibility-items a:hover {
                color: var(--sfs-blue);
                transform: translateY(-1px);
            }

/* =========================================================
PHOTO SECTIONS
Mirrors capabilities-photo-section system:
section = relative, min-height, overflow hidden
image = absolute, full cover (z-index 0)
::after overlay = z-index 1
content = relative z-index 2, flex
card = glass box, left or right aligned
========================================================= */

.company-history-photo,
.company-motto-photo,
.company-leader-section {
    position: relative;
    min-height: clamp(680px, 78vw, 940px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0d2a45;
}

.company-section-image,
.company-leader-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.company-history-photo::after,
.company-motto-photo::after,
.company-leader-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(5, 18, 32, 0.44) 0%, rgba(5, 18, 32, 0.16) 46%, rgba(5, 18, 32, 0.04) 100% );
}

.company-photo-content,
.company-leader-content {
    position: relative;
    z-index: 2;
    width: var(--container);
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(3rem, 7vw, 6rem) 0;
}

/* David card aligns left, Thomas aligns right (default) */
.company-leader-david .company-leader-content {
    justify-content: flex-start;
}

.company-photo-card,
.company-leader-card {
    width: min(680px, 100%);
    padding: clamp(1.4rem, 3vw, 2.35rem);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(5, 18, 32, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .company-photo-card h2,
    .company-leader-card h2 {
        color: var(--sfs-text);
        font-size: clamp(2.35rem, 5vw, 5.25rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
        margin-bottom: 1rem;
    }

    .company-photo-card h3,
    .company-leader-card h3 {
        color: var(--sfs-blue);
        font-size: clamp(1.35rem, 2.2vw, 2rem);
        line-height: 1.2;
        margin: 1.25rem 0 0.75rem;
    }

    .company-photo-card p,
    .company-leader-card p {
        color: var(--sfs-text);
        font-size: clamp(0.98rem, 1.25vw, 1.1rem);
        line-height: 1.78;
        font-weight: 600;
        margin-bottom: 1rem;
    }

        .company-photo-card p:last-child,
        .company-leader-card p:last-child {
            margin-bottom: 0;
        }
/* =========================================================
LEADERSHIP BALANCE BANNER
========================================================= */

.company-balance-banner {
    background: linear-gradient(180deg, #eef5fb 0%, #e3eef7 42%, #d6e6f4 100%);
    border-top: 1px solid #dbe4ec;
    border-bottom: 1px solid #dbe4ec;
}

.company-balance-banner-inner {
    min-height: 150px;
    display: grid;
    align-content: center;
    padding: 2rem 0;
    text-align: center;
}

    .company-balance-banner-inner p {
        max-width: 980px;
        margin: 0 auto;
        color: #12385f;
        font-size: clamp(1rem, 1.2vw, 1.18rem);
        line-height: 1.65;
        font-weight: 700;
    }
/* =========================================================
LEADER PHOTO MEDIA
========================================================= */

.company-leader-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.company-leader-thomas .company-leader-image {
    object-position: center center;
}

.company-leader-david .company-leader-image {
    object-position: center center;
}

/* =========================================================
FOUNDATION / CONTENT SECTIONS
========================================================= */

.company-foundation,
.company-why {
    background: linear-gradient(180deg, #eef5fb 0%, #e3eef7 42%, #d6e6f4 100%);
}

    .company-foundation .card,
    .company-why .card {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(219, 228, 236, 0.9);
        box-shadow: 0 18px 45px rgba(18, 32, 47, 0.10);
    }

        .company-foundation .card h3,
        .company-why .card h3 {
            color: var(--sfs-text);
        }

        .company-foundation .card p,
        .company-why .card p {
            color: var(--sfs-muted);
            line-height: 1.75;
        }

    /* =========================================================
WHY IT MATTERS
========================================================= */

    .company-why .section-heading {
        margin-bottom: 1.5rem;
    }

    .company-why .card {
        min-height: 220px;
    }

/* =========================================================
BUILDING SECTION
========================================================= */

.company-building {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-image: url("../assets/images/page-art/cloud-cover/cloud-transition-02.jpg");
    background-size: 155%;
    background-position: var(--cloud-x, 50%) var(--cloud-y, 50%);
    background-repeat: no-repeat;
    background-color: #dfeef8;
    transition: background-position 0.08s linear;
}

    .company-building::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: rgba(255, 255, 255, 0.10);
    }

    .company-building > .container {
        position: relative;
        z-index: 1;
    }

    .company-building h2 {
        color: var(--sfs-text);
        font-size: clamp(2.4rem, 5vw, 5.2rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
        margin-bottom: 1rem;
    }

    .company-building p,
    .company-building li {
        color: var(--sfs-blue);
        line-height: 1.78;
        font-weight: 650;
    }

    .company-building .panel {
        background: rgba(234, 242, 248, 0.62);
        border: 1px solid rgba(156, 180, 201, 0.58);
        box-shadow: 0 18px 45px rgba(18, 32, 47, 0.12);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

/* =========================================================
LEADERSHIP BANNER
========================================================= */

.company-leadership-banner {
    background: linear-gradient(180deg, #eef5fb 0%, #e3eef7 42%, #d6e6f4 100%);
    border-top: 1px solid var(--sfs-border);
    border-bottom: 1px solid var(--sfs-border);
}

.company-leadership-banner-inner {
    max-width: 920px;
    text-align: center;
}

    .company-leadership-banner-inner h2 {
        color: var(--sfs-text);
        font-size: clamp(2rem, 3.8vw, 3.7rem);
        line-height: 1.02;
        letter-spacing: -0.045em;
        margin-bottom: 1rem;
    }

    .company-leadership-banner-inner p:last-child {
        color: var(--sfs-muted);
        font-weight: 600;
        line-height: 1.75;
    }

/* =========================================================
GOVERNMENT REACH
========================================================= */

.company-agency-banner {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, #eef5fb 0%, #d6e6f4 100%);
    border-top: 1px solid var(--sfs-border);
    border-bottom: 1px solid var(--sfs-border);
}

.company-agency-banner-inner {
    text-align: center;
}

.company-agency-banner h2 {
    max-width: 920px;
    margin: 0 auto 1.5rem;
    color: var(--sfs-text);
    font-size: clamp(2rem, 3.6vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.company-agency-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

    .company-agency-list span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0.75rem 1rem;
        border-radius: 999px;
        background: var(--sfs-blue-gradient);
        color: #ffffff;
        border: 1px solid var(--sfs-blue-border);
        box-shadow: var(--sfs-blue-shadow);
        font-weight: 800;
    }
/* =========================================================
NEXT STEP
========================================================= */

.company-next-step {
    position: relative;
    min-height: clamp(560px, 62vw, 760px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0d2a45;
}

.company-next-step-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../../assets/images/hero/home/next_steps_banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.company-next-step::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(5, 18, 32, 0.40) 0%, rgba(5, 18, 32, 0.14) 48%, rgba(5, 18, 32, 0.04) 100%);
}

.company-next-step > .container {
    position: relative;
    z-index: 2;
    width: var(--container);
}

.company-next-step-card {
    width: min(720px, 100%);
    padding: clamp(1.4rem, 3vw, 2.35rem);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(5, 18, 32, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    .company-next-step-card h2 {
        color: var(--sfs-text);
        font-size: clamp(2.2rem, 4.3vw, 4rem);
        line-height: 1.02;
        letter-spacing: -0.045em;
        margin-bottom: 1rem;
    }

    .company-next-step-card p {
        color: var(--sfs-blue);
        line-height: 1.78;
        font-weight: 600;
    }
/* =========================================================
BUTTON ROWS
========================================================= */

.company-page .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 860px) {

    .company-hero,
    .company-history-photo,
    .company-motto-photo,
    .company-leader-section {
        min-height: 720px;
    }

    .company-hero-content,
    .company-photo-content,
    .company-leader-content {
        width: var(--container);
        max-width: var(--container);
        padding: clamp(2.5rem, 8vw, 4rem) 0;
        align-items: flex-end;
        justify-content: center;
    }

    .company-leader-david .company-leader-content {
        justify-content: center;
    }

    .company-hero-card,
    .company-photo-card,
    .company-leader-card,
    .company-next-step-card {
        width: 100%;
        max-width: 620px;
        padding: clamp(1.25rem, 5vw, 1.8rem);
        background: rgba(255, 255, 255, 0.86);
    }

        .company-hero-card h1,
        .company-photo-card h2,
        .company-leader-card h2,
        .company-building h2,
        .company-next-step-card h2 {
            font-size: clamp(2.05rem, 9vw, 3.45rem);
            line-height: 1.02;
        }

        .company-hero-card p,
        .company-photo-card p,
        .company-leader-card p,
        .company-next-step-card p {
            font-size: 0.98rem;
            line-height: 1.68;
        }

    .company-quicklinks .credibility-items {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
    }

        .company-quicklinks .credibility-items a {
            flex: 0 0 auto;
        }

    .company-building .split-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .company-next-step .btn,
    .company-hero .btn {
        width: 100%;
    }

    .company-leadership-banner-inner,
    .company-agency-banner-inner {
        text-align: left;
    }

    .company-agency-list {
        justify-content: flex-start;
    }
}
.footer-grid-reversed {
    grid-template-columns: 1fr 1fr 1.35fr;
    align-items: start;
}

.footer-brand-column {
    justify-self: end;
    max-width: 420px;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #d8e3ed;
}

@media (max-width: 860px) {
    .footer-grid-reversed {
        grid-template-columns: 1fr;
    }

    .footer-brand-column {
        justify-self: start;
        max-width: none;
    }
}
/* =========================================================
   MOBILE — Company Page
   Replace the existing @media (max-width: 860px) block
   in company.css with this entire block.
   All rules scoped to body.company-page.
   Desktop rules above are completely untouched.
========================================================= */

@media (max-width: 860px) {

    /* ═══════════════════════════════════════════
       GLOBAL RHYTHM
    ═══════════════════════════════════════════ */
    body.company-page .section {
        padding: clamp(2rem, 7vw, 3rem) 0;
    }

    body.company-page .section-heading {
        margin-bottom: 0.75rem;
    }

        body.company-page .section-heading h2 {
            font-size: clamp(1.55rem, 7vw, 2.1rem);
            line-height: 1.04;
            letter-spacing: -0.04em;
            margin-bottom: 0.45rem;
        }

        body.company-page .section-heading p {
            font-size: 0.78rem;
            line-height: 1.5;
        }

    body.company-page .section-kicker,
    body.company-page .eyebrow {
        font-size: 0.58rem;
        margin-bottom: 0.28rem;
        letter-spacing: 0.16em;
    }

    /* ═══════════════════════════════════════════
       HERO — compact glass box pinned top-left
    ═══════════════════════════════════════════ */
    body.company-page .company-hero {
        min-height: 720px;
        overflow: hidden;
        padding: 0;
        align-items: flex-start;
    }

    body.company-page .company-hero-content {
        width: 100%;
        max-width: none;
        min-height: inherit;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
    }

    body.company-page .company-hero-card {
        position: absolute;
        top: 1.25rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: 370px;
        margin: 0;
        padding: 0.75rem 0.9rem 0.85rem;
        background: linear-gradient( 180deg, rgba(245, 250, 255, 0.52) 0%, rgba(224, 239, 250, 0.44) 48%, rgba(203, 226, 242, 0.36) 100% );
        border: 1px solid rgba(255, 255, 255, 0.50);
        border-radius: 0.9rem;
        box-shadow: 0 12px 28px rgba(5, 18, 32, 0.20);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

        body.company-page .company-hero-card .eyebrow {
            font-size: 0.55rem;
            line-height: 1.3;
            letter-spacing: 0.16em;
            margin-bottom: 0.3rem;
        }

        body.company-page .company-hero-card h1 {
            font-size: clamp(1.1rem, 5.2vw, 1.5rem);
            line-height: 1.04;
            letter-spacing: -0.045em;
            margin-bottom: 0.4rem;
            color: var(--sfs-text);
        }

        body.company-page .company-hero-card p {
            font-size: 0.68rem;
            line-height: 1.42;
            margin-bottom: 0;
            color: var(--sfs-blue);
            font-weight: 600;
        }

        body.company-page .company-hero-card .button-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.45rem;
            margin-top: 0.65rem;
            padding-top: 0.65rem;
            border-top: 1px solid rgba(126, 160, 190, 0.22);
        }

        body.company-page .company-hero-card .btn {
            width: 100%;
            min-height: 40px;
            font-size: 0.82rem;
            padding: 0.55rem 0.8rem;
        }

    /* ═══════════════════════════════════════════
       QUICK LINKS — horizontal scroll
    ═══════════════════════════════════════════ */
    body.company-page .company-quicklinks {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

        body.company-page .company-quicklinks .credibility-items {
            width: 100%;
            max-width: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            overflow: visible;
            padding: 0.75rem 1rem;
            gap: 0.65rem 1.1rem;
            min-height: auto;
        }

            body.company-page .company-quicklinks .credibility-items a {
                flex: 0 1 auto;
                font-size: 0.72rem;
                white-space: nowrap;
            }
    /* ═══════════════════════════════════════════
       PHOTO SECTIONS — History & Motto
       Big image fills section, compact glass card at top
    ═══════════════════════════════════════════ */
    body.company-page .company-history-photo,
    body.company-page .company-motto-photo {
        min-height: 680px;
        overflow: hidden;
        padding: 1rem;
        display: block;
        align-items: unset;
    }

    body.company-page .company-photo-content {
        position: relative;
        z-index: 2;
        width: auto;
        max-width: none;
        min-height: 680px;
        padding: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    body.company-page .company-photo-card {
        position: static;
        width: auto;
        max-width: none;
        padding: 0.75rem 0.9rem;
        background: linear-gradient( 180deg, rgba(245, 250, 255, 0.54) 0%, rgba(224, 239, 250, 0.46) 48%, rgba(203, 226, 242, 0.38) 100% );
        border: 1px solid rgba(255, 255, 255, 0.52);
        border-radius: 0.85rem;
        box-shadow: 0 12px 28px rgba(5, 18, 32, 0.18);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

        body.company-page .company-photo-card h2 {
            font-size: clamp(1.35rem, 6vw, 1.85rem);
            line-height: 1.0;
            letter-spacing: -0.04em;
            margin-bottom: 0.4rem;
            color: var(--sfs-blue);
        }

        body.company-page .company-photo-card h3 {
            font-size: 0.82rem;
            line-height: 1.2;
            margin: 0.45rem 0 0.25rem;
            color: var(--sfs-blue);
        }

        body.company-page .company-photo-card p {
            font-size: 0.70rem;
            line-height: 1.38;
            margin-bottom: 0.3rem;
            color: var(--sfs-text);
            font-weight: 600;
        }

            body.company-page .company-photo-card p:last-child {
                margin-bottom: 0;
            }

    /* ═══════════════════════════════════════════
       LEADER SECTIONS — Thomas & David
       Image fills section, glass card pinned to bottom
    ═══════════════════════════════════════════ */
    body.company-page .company-leader-section {
        min-height: 680px;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }

        /* Gradient darkens the bottom so card text is readable */
        body.company-page .company-leader-section::after {
            background: linear-gradient( to top, rgba(5, 18, 32, 0.60) 0%, rgba(5, 18, 32, 0.22) 45%, rgba(5, 18, 32, 0.04) 100% );
        }

    /* Show faces at the top of the portrait */
    body.company-page .company-leader-image {
        object-position: center 12%;
    }

    body.company-page .company-leader-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: none;
        min-height: auto;
        padding: 1rem;
        display: block;
        align-items: unset;
        justify-content: unset;
    }

    body.company-page .company-leader-david .company-leader-content {
        justify-content: unset;
    }

    body.company-page .company-leader-card {
        width: 100%;
        max-width: none;
        padding: 0.75rem 0.9rem;
        background: linear-gradient( 180deg, rgba(245, 250, 255, 0.54) 0%, rgba(224, 239, 250, 0.46) 48%, rgba(203, 226, 242, 0.38) 100% );
        border: 1px solid rgba(255, 255, 255, 0.52);
        border-radius: 0.85rem;
        box-shadow: 0 12px 28px rgba(5, 18, 32, 0.22);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

        body.company-page .company-leader-card h2 {
            font-size: clamp(1.35rem, 6vw, 1.85rem);
            line-height: 1.0;
            letter-spacing: -0.04em;
            margin-bottom: 0.35rem;
            color: var(--sfs-blue);
        }

        body.company-page .company-leader-card p {
            font-size: 0.66rem;
            line-height: 1.38;
            margin-bottom: 0.45rem;
            color: var(--sfs-text);
            font-weight: 600;
            padding-left: 0.65rem;
            border-left: 2px solid rgba(15, 79, 134, 0.38);
        }

            body.company-page .company-leader-card p:last-child {
                margin-bottom: 0;
            }

    /* ═══════════════════════════════════════════
       BALANCE BANNER
    ═══════════════════════════════════════════ */
    body.company-page .company-balance-banner-inner {
        padding: 1.25rem 0;
        text-align: left;
    }

        body.company-page .company-balance-banner-inner p {
            font-size: 0.78rem;
            line-height: 1.5;
            font-weight: 650;
        }

    /* ═══════════════════════════════════════════
       LEADERSHIP BANNER
    ═══════════════════════════════════════════ */
    body.company-page .company-leadership-banner-inner {
        text-align: left;
    }

        body.company-page .company-leadership-banner-inner h2 {
            font-size: clamp(1.55rem, 7vw, 2.1rem);
            line-height: 1.04;
            letter-spacing: -0.04em;
            margin-bottom: 0.45rem;
        }

        body.company-page .company-leadership-banner-inner p:last-child {
            font-size: 0.78rem;
            line-height: 1.5;
        }

    /* ═══════════════════════════════════════════
       FOUNDATION CARDS — 2-column, compact
    ═══════════════════════════════════════════ */
    body.company-page .company-foundation .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    body.company-page .company-foundation .card {
        min-height: 0;
        padding: 0.6rem 0.7rem;
        border-radius: 0.75rem;
        background: linear-gradient( 180deg, rgba(245, 250, 255, 0.50) 0%, rgba(224, 239, 250, 0.42) 48%, rgba(203, 226, 242, 0.34) 100% );
        border: 1px solid rgba(255, 255, 255, 0.48);
        box-shadow: 0 8px 20px rgba(5, 18, 32, 0.12);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

        body.company-page .company-foundation .card .section-kicker {
            font-size: 0.50rem;
            margin-bottom: 0.18rem;
        }

        body.company-page .company-foundation .card h3 {
            font-size: 0.76rem;
            line-height: 1.2;
            margin-bottom: 0.2rem;
            color: var(--sfs-text);
        }

        body.company-page .company-foundation .card p {
            font-size: 0.60rem;
            line-height: 1.35;
            color: var(--sfs-muted);
        }

    /* ═══════════════════════════════════════════
       WHAT WE ARE BUILDING — stacked glass boxes
    ═══════════════════════════════════════════ */
    body.company-page .company-building .split-layout {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    body.company-page .company-building h2 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
        margin-bottom: 0.45rem;
    }

    body.company-page .company-building p {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    body.company-page .company-building .panel {
        padding: 0.75rem 0.9rem;
    }

    body.company-page .company-building .feature-list {
        padding-left: 1rem;
    }

        body.company-page .company-building .feature-list li {
            font-size: 0.72rem;
            line-height: 1.45;
            margin-bottom: 0.3rem;
        }

    /* ═══════════════════════════════════════════
       WHY IT MATTERS CARDS — single column
    ═══════════════════════════════════════════ */
    body.company-page .company-why .card {
        min-height: 0;
        padding: 0.65rem 0.75rem;
        border-radius: 0.75rem;
        background: linear-gradient( 180deg, rgba(245, 250, 255, 0.50) 0%, rgba(224, 239, 250, 0.42) 48%, rgba(203, 226, 242, 0.34) 100% );
        border: 1px solid rgba(255, 255, 255, 0.48);
        box-shadow: 0 8px 20px rgba(5, 18, 32, 0.12);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

        body.company-page .company-why .card h3 {
            font-size: 0.88rem;
            line-height: 1.2;
            margin-bottom: 0.25rem;
            color: var(--sfs-text);
        }

        body.company-page .company-why .card p {
            font-size: 0.68rem;
            line-height: 1.4;
            color: var(--sfs-muted);
        }

    /* ═══════════════════════════════════════════
       GOVERNMENT AGENCIES — compact pills
    ═══════════════════════════════════════════ */
    body.company-page .company-agency-banner {
        padding: 1.75rem 0;
    }

    body.company-page .company-agency-banner-inner {
        text-align: left;
    }

    body.company-page .company-agency-banner h2 {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
        line-height: 1.04;
        margin: 0 auto 0.85rem;
    }

    body.company-page .company-agency-list {
        justify-content: flex-start;
        gap: 0.45rem;
    }

        body.company-page .company-agency-list span {
            font-size: 0.70rem;
            font-weight: 700;
            min-height: 32px;
            padding: 0.38rem 0.7rem;
        }

    /* ═══════════════════════════════════════════
       NEXT STEP — glass card pinned to image bottom
    ═══════════════════════════════════════════ */
    body.company-page .company-next-step {
        min-height: 560px;
        align-items: flex-end;
        padding-bottom: 0;
    }

        body.company-page .company-next-step > .container {
            width: 100%;
            padding: 0 1rem 1rem;
        }

    body.company-page .company-next-step-card {
        width: 100%;
        max-width: none;
        padding: 0.75rem 0.9rem;
        background: linear-gradient( 180deg, rgba(245, 250, 255, 0.54) 0%, rgba(224, 239, 250, 0.46) 48%, rgba(203, 226, 242, 0.38) 100% );
        border: 1px solid rgba(255, 255, 255, 0.52);
        border-radius: 0.85rem;
        box-shadow: 0 12px 28px rgba(5, 18, 32, 0.22);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

        body.company-page .company-next-step-card h2 {
            font-size: clamp(1.35rem, 6vw, 1.85rem);
            line-height: 1.0;
            letter-spacing: -0.04em;
            margin-bottom: 0.35rem;
            color: var(--sfs-text);
        }

        body.company-page .company-next-step-card p {
            font-size: 0.68rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
            color: var(--sfs-blue);
            font-weight: 600;
        }

        body.company-page .company-next-step-card .button-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.45rem;
            margin-top: 0.65rem;
            padding-top: 0.65rem;
            border-top: 1px solid rgba(126, 160, 190, 0.22);
        }

        body.company-page .company-next-step-card .btn {
            width: 100%;
            min-height: 42px;
            font-size: 0.85rem;
            padding: 0.65rem 0.9rem;
        }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .footer-grid-reversed {
        grid-template-columns: 1fr;
    }

    .footer-brand-column {
        justify-self: start;
        max-width: none;
    }
}