    :root {
        --navy: #0d2340;
        --navy-mid: #163559;
        --blue: #1a5fa8;
        --gold: #e8a020;
        --gold-light: #f5b93a;
        --white: #ffffff;
        --off-white: #f4f6fa;
        --text: #2a2a2a;
        --text-muted: #6b7280;
        --border: #dce3ef;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--text);
        background: var(--white);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Oswald', sans-serif;
    }

    /* ════════════════ HEADER ════════════════ */
    .announcement-bar {
        position: relative;
        z-index: 1100;
        background: rgba(13, 35, 64, .82);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding: 9px 0;
        overflow: hidden;
    }

    .announcement-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -60%;
        width: 60%;
        height: 1.5px;
        background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
        animation: shimmer 3.5s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% {
            left: -60%
        }

        100% {
            left: 140%
        }
    }

    .ann-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(232, 160, 32, .18);
        border: 1px solid rgba(232, 160, 32, .35);
        border-radius: 20px;
        padding: 3px 12px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--gold-light);
    }

    .ann-text {
        font-size: .79rem;
        color: rgba(255, 255, 255, .78);
    }

    .ann-text a {
        color: var(--gold-light);
        text-decoration: none;
        font-weight: 700;
    }

    .ann-contact {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .79rem;
        color: rgba(255, 255, 255, .7);
    }

    .ann-contact i {
        color: var(--gold);
        font-size: .75rem;
    }

    .ann-contact a {
        color: var(--white);
        font-weight: 700;
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: .92rem;
    }

    .ann-contact a:hover {
        color: var(--gold-light);
    }

    .ann-socials {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ann-socials a {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .55);
        font-size: .75rem;
        text-decoration: none;
        transition: all .25s;
    }

    .ann-socials a:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        background: rgba(232, 160, 32, .1);
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    .main-nav {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(13, 35, 64, .1);
        box-shadow: 0 4px 24px rgba(13, 35, 64, .1);
        padding: 0;
    }

    .nav-logo-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
    }

    .logo-icon-box {
        position: relative;
        width: 54px;
        height: 54px;
        border-radius: 10px;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
        transition: transform .3s;
    }

    .logo-icon-box::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent 60%, rgba(232, 160, 32, .5) 80%, transparent 100%);
        animation: logo-spin 4s linear infinite;
    }

    @keyframes logo-spin {
        to {
            transform: rotate(360deg)
        }
    }

    .logo-icon-box i {
        position: relative;
        z-index: 1;
        color: var(--gold-light);
        font-size: 1.4rem;
    }

    .nav-logo-wrap:hover .logo-icon-box {
        transform: scale(1.06);
    }

    .logo-name {
        font-family: 'Oswald', sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: .5px;
        display: block;
    }

    .logo-tagline {
        font-size: .6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--blue);
        display: block;
    }

    .nav-items {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2px;
    }

    .nav-items .nav-link {
        font-family: 'Oswald', sans-serif;
        font-size: .85rem;
        font-weight: 500;
        letter-spacing: .8px;
        text-transform: uppercase;
        color: var(--navy) !important;
        padding: 28px 15px !important;
        position: relative;
        transition: color .25s;
        text-decoration: none;
    }

    .nav-items .nav-link::before {
        content: '';
        position: absolute;
        bottom: 18px;
        left: 15px;
        right: 15px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s ease;
    }

    .nav-items .nav-link:hover::before,
    .nav-items .nav-link.active::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-items .nav-link:hover {
        color: var(--blue) !important;
    }

    .nav-cta-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 8px;
    }

    .nav-phone-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--navy);
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-size: .88rem;
        transition: color .25s;
    }

    .nav-phone-btn .ph-icon {
        width: 34px;
        height: 34px;
        border: 1.5px solid var(--navy-mid);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .8rem;
        transition: all .25s;
    }

    .nav-phone-btn:hover .ph-icon {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .nav-estimate-btn {
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
        color: var(--navy) !important;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 11px 22px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: all .3s;
        box-shadow: 0 4px 18px rgba(232, 160, 32, .4);
        white-space: nowrap;
        position: relative;
        overflow: hidden;
    }

    .nav-estimate-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .3) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .nav-estimate-btn:hover::before {
        opacity: 1;
    }

    .nav-estimate-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(232, 160, 32, .55);
    }

    .nav-toggler {
        background: var(--off-white);
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 8px 12px;
        cursor: pointer;
        display: none;
        flex-direction: column;
        gap: 5px;
    }

    .nav-toggler span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all .3s;
    }

    .nav-toggler.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggler.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggler.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: rgba(13, 35, 64, .97);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 12px;
        padding: 20px 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
        z-index: 1060;
    }

    .mobile-menu.open {
        display: block;
        animation: slideDown .3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-12px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .mobile-menu a {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, .8);
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        transition: color .2s, padding-left .2s;
    }

    .mobile-menu a:hover {
        color: var(--gold-light);
        padding-left: 8px;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-cta {
        margin-top: 16px;
    }

    .mobile-cta a.primary {
        background: var(--gold);
        color: var(--navy);
        text-align: center;
        padding: 13px;
        border-radius: 8px;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        text-transform: uppercase;
        text-decoration: none;
        display: block;
    }

    @media(max-width:991px) {
        .nav-toggler {
            display: flex
        }

        .nav-items,
        .nav-cta-wrap {
            display: none
        }

        .main-nav .container {
            position: relative
        }
    }

    /* ════════════════ HERO ════════════════ */
    .page-hero {
        position: relative;
        min-height: 88vh;
        display: flex;
        align-items: center;
        background: linear-gradient(120deg, rgba(13, 35, 64, .93) 0%, rgba(22, 53, 89, .82) 55%, rgba(26, 95, 168, .55) 100%),
            url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
        overflow: hidden;
    }

    /* Animated diagonal lines */
    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(-50deg, rgba(255, 255, 255, .018) 0px, rgba(255, 255, 255, .018) 1px, transparent 1px, transparent 36px);
        animation: diag-drift 20s linear infinite;
    }

    @keyframes diag-drift {
        0% {
            background-position: 0 0
        }

        100% {
            background-position: 72px 72px
        }
    }

    /* Floating particles */
    .particle {
        position: absolute;
        border-radius: 50%;
        background: rgba(232, 160, 32, .3);
        animation: float-p 8s ease-in-out infinite;
        pointer-events: none;
    }

    .p1 {
        width: 9px;
        height: 9px;
        top: 18%;
        left: 8%;
        animation-delay: 0s
    }

    .p2 {
        width: 5px;
        height: 5px;
        top: 60%;
        left: 15%;
        animation-delay: 2s
    }

    .p3 {
        width: 12px;
        height: 12px;
        top: 25%;
        right: 12%;
        animation-delay: 1s
    }

    .p4 {
        width: 6px;
        height: 6px;
        top: 72%;
        right: 20%;
        animation-delay: 3s
    }

    .p5 {
        width: 4px;
        height: 4px;
        top: 45%;
        left: 50%;
        animation-delay: 1.5s
    }

    @keyframes float-p {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: .5
        }

        50% {
            transform: translateY(-20px) scale(1.2);
            opacity: 1
        }
    }

    /* Glowing orb right */
    .hero-orb {
        position: absolute;
        top: -80px;
        right: -80px;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(232, 160, 32, .15) 0%, transparent 65%);
        border-radius: 50%;
        animation: orb-pulse 6s ease-in-out infinite alternate;
    }

    @keyframes orb-pulse {
        0% {
            transform: scale(1)
        }

        100% {
            transform: scale(1.18)
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(232, 160, 32, .15);
        border: 1px solid rgba(232, 160, 32, .4);
        border-radius: 20px;
        padding: 5px 16px;
        margin-bottom: 18px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-light);
    }

    .hero-content h1 {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 5px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .hero-content h1 span {
        color: var(--gold-light);
    }

    .hero-desc {
        color: rgba(255, 255, 255, .8);
        font-size: 1.08rem;
        line-height: 1.85;
        max-width: 580px;
        margin-bottom: 32px;
    }

    .hero-desc a {
        color: var(--gold-light);
        font-weight: 700;
        text-decoration: none;
        transition: color .2s;
    }

    .hero-desc a:hover {
        color: #fff;
    }

    .hero-phone-cta {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: var(--gold);
        color: var(--navy);
        padding: 15px 34px;
        border-radius: 8px;
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 8px 28px rgba(232, 160, 32, .45);
        transition: all .3s;
        position: relative;
        overflow: hidden;
    }

    .hero-phone-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .25) 0%, transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .hero-phone-cta:hover::before {
        opacity: 1;
    }

    .hero-phone-cta:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(232, 160, 32, .6);
        color: var(--navy);
    }

    .hero-phone-cta .ph-ring {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(13, 35, 64, .2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        animation: ring-pulse 2s ease-in-out infinite;
    }

    @keyframes ring-pulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(13, 35, 64, .3)
        }

        50% {
            box-shadow: 0 0 0 10px rgba(13, 35, 64, 0)
        }
    }

    .hero-phone-cta .ph-text small {
        display: block;
        font-size: .62rem;
        letter-spacing: 2px;
        opacity: .7;
        margin-bottom: 2px;
    }

    .hero-phone-cta .ph-text span {
        font-size: 1.15rem;
    }

    /* Breadcrumb */
    .breadcrumb-row {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 28px;
        font-size: .8rem;
        color: rgba(255, 255, 255, .45);
    }

    .breadcrumb-row a {
        color: rgba(255, 255, 255, .65);
        text-decoration: none;
    }

    .breadcrumb-row a:hover {
        color: var(--gold-light);
    }

    /* Right side card */
    .hero-right {
        position: relative;
        z-index: 2;
    }

    .hero-img-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    }

    .hero-img-card img {
        width: 100%;
        display: block;
        border-radius: 20px;
    }

    /* Gold border accent animated */
    .hero-img-card::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 22px;
        z-index: -1;
        background: conic-gradient(from 0deg, var(--gold), transparent 30%, transparent 70%, var(--gold));
        animation: card-rotate 4s linear infinite;
    }

    @keyframes card-rotate {
        to {
            transform: rotate(360deg)
        }
    }

    /* Overlay badge */
    .hero-badge-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(13, 35, 64, .88);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 12px;
        padding: 16px 20px;
    }

    .hero-badge-overlay h4 {
        font-size: .9rem;
        color: var(--gold-light);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .hero-badge-overlay p {
        font-size: .82rem;
        color: rgba(255, 255, 255, .7);
        margin: 0;
        line-height: 1.5;
    }

    /* Wave */
    .hero-wave {
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 70px;
        overflow: hidden;
        z-index: 3;
    }

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* ════════════════ REQUIREMENTS SECTION ════════════════ */
    .requirements-section {
        padding: 80px 0;
        background: var(--white);
    }

    .sec-heading {
        text-align: center;
        margin-bottom: 52px;
    }

    .sec-heading h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .divider-line {
        width: 60px;
        height: 3px;
        background: var(--gold);
        margin: 10px auto 14px;
        border-radius: 2px;
    }

    .sec-heading p {
        color: var(--text-muted);
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.7;
        font-size: .95rem;
    }

    /* Requirement cards */
    .req-card {
        background: var(--off-white);
        border-radius: 16px;
        padding: 32px 28px;
        border: 1px solid var(--border);
        height: 100%;
        transition: all .4s;
        position: relative;
        overflow: hidden;
    }

    .req-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--navy), var(--blue), var(--gold));
        transform: scaleX(0);
        transition: transform .4s;
    }

    .req-card:hover {
        background: var(--white);
        box-shadow: 0 20px 56px rgba(13, 35, 64, .1);
        border-color: transparent;
        transform: translateY(-8px);
    }

    .req-card:hover::after {
        transform: scaleX(1);
    }

    .req-icon {
        width: 62px;
        height: 62px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--navy), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-light);
        font-size: 1.4rem;
        margin-bottom: 20px;
        box-shadow: 0 8px 22px rgba(13, 35, 64, .22);
        transition: transform .4s;
    }

    .req-card:hover .req-icon {
        transform: rotate(-8deg) scale(1.1);
    }

    .req-card h4 {
        font-size: 1.1rem;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 10px;
    }

    .req-card p {
        font-size: .88rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0;
    }

    .req-card .req-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(232, 160, 32, .12);
        border: 1px solid rgba(232, 160, 32, .3);
        border-radius: 20px;
        padding: 4px 12px;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 14px;
    }

    /* ════════════════ SPLIT: WHO WE WANT / IMAGE ════════════════ */
    .who-section {
        padding: 80px 0;
        background: var(--off-white);
        overflow: hidden;
    }

    .who-text-col h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .who-text-col .accent-line {
        width: 50px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
        margin-bottom: 22px;
    }

    .who-text-col p {
        color: var(--text-muted);
        font-size: .95rem;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .who-text-col p strong {
        color: var(--navy);
    }

    .who-text-col p a {
        color: var(--blue);
        font-weight: 700;
        text-decoration: none;
    }

    .who-text-col p a:hover {
        color: var(--gold);
    }

    .who-text-col .highlight-box {
        background: linear-gradient(135deg, var(--navy), var(--navy-mid));
        border-radius: 12px;
        padding: 22px 24px;
        margin: 24px 0;
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .who-text-col .highlight-box i {
        color: var(--gold-light);
        font-size: 1.4rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .who-text-col .highlight-box p {
        color: rgba(255, 255, 255, .82);
        font-size: .9rem;
        margin: 0;
        line-height: 1.7;
    }

    .who-text-col .highlight-box p a {
        color: var(--gold-light);
    }

    /* Perks checklist */
    .perk-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .perk-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 0;
        border-bottom: 1px dashed var(--border);
        font-size: .9rem;
        color: var(--text-muted);
    }

    .perk-list li:last-child {
        border-bottom: none;
    }

    .perk-list li i {
        color: var(--gold);
        font-size: .8rem;
        width: 18px;
        flex-shrink: 0;
    }

    .perk-list li strong {
        color: var(--navy);
        margin-right: 4px;
    }

    /* Image collage */
    .who-img-col {
        position: relative;
    }

    .img-stack {
        position: relative;
        height: 520px;
    }

    .img-main {
        position: absolute;
        top: 0;
        left: 0;
        right: 60px;
        bottom: 60px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(13, 35, 64, .25);
    }

    .img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s;
    }

    .img-main:hover img {
        transform: scale(1.05);
    }

    .img-secondary {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 55%;
        height: 55%;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 16px 44px rgba(13, 35, 64, .3);
        border: 4px solid var(--white);
    }

    .img-secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s;
    }

    .img-secondary:hover img {
        transform: scale(1.05);
    }

    /* Gold accent box */
    .img-accent {
        position: absolute;
        top: 40px;
        right: -20px;
        background: var(--gold);
        border-radius: 10px;
        padding: 16px 18px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(232, 160, 32, .4);
    }

    .img-accent .num {
        font-family: 'Oswald', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
    }

    .img-accent .lbl {
        font-size: .65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(13, 35, 64, .7);
        margin-top: 3px;
    }

    @media(max-width:991px) {
        .img-stack {
            height: 360px
        }

        .img-accent {
            display: none
        }
    }

    /* ════════════════ OPEN POSITIONS ════════════════ */
    .positions-section {
        padding: 80px 0;
        background: var(--white);
    }

    .position-card {
        border: 1.5px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        transition: all .35s;
    }

    .position-card:hover {
        border-color: var(--navy);
        box-shadow: 0 16px 50px rgba(13, 35, 64, .1);
        transform: translateY(-5px);
    }

    .pos-header {
        background: var(--off-white);
        padding: 22px 26px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        border-bottom: 1.5px solid var(--border);
        transition: background .35s;
    }

    .position-card:hover .pos-header {
        background: var(--navy);
    }

    .pos-title-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .pos-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--navy), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-light);
        font-size: 1.1rem;
        flex-shrink: 0;
        transition: all .35s;
    }

    .position-card:hover .pos-icon {
        background: var(--gold);
        color: var(--navy);
    }

    .pos-title {
        font-size: 1.1rem;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin: 0;
        transition: color .35s;
    }

    .position-card:hover .pos-title {
        color: var(--white);
    }

    .pos-type {
        font-size: .75rem;
        color: var(--text-muted);
        margin-top: 2px;
        transition: color .35s;
    }

    .position-card:hover .pos-type {
        color: rgba(255, 255, 255, .6);
    }

    .pos-badge {
        font-family: 'Oswald', sans-serif;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 20px;
    }

    .pos-badge.open {
        background: rgba(22, 163, 74, .12);
        color: #16a34a;
        border: 1px solid rgba(22, 163, 74, .25);
    }

    .pos-badge.urgent {
        background: rgba(232, 160, 32, .15);
        color: var(--gold);
        border: 1px solid rgba(232, 160, 32, .3);
    }

    .pos-body {
        padding: 22px 26px;
    }

    .pos-body p {
        font-size: .88rem;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .pos-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
    }

    .pos-tag {
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 20px;
        background: var(--off-white);
        color: var(--text-muted);
        border: 1px solid var(--border);
    }

    .pos-apply {
        background: var(--navy);
        color: var(--white);
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 11px 24px;
        border-radius: 7px;
        border: none;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
        cursor: pointer;
    }

    .pos-apply:hover {
        background: var(--blue);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 35, 64, .25);
        color: var(--white);
    }

    /* ════════════════ CTA SECTION ════════════════ */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1e4a7a 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-glow {
        position: absolute;
        top: -120px;
        right: -120px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232, 160, 32, .14) 0%, transparent 60%);
        border-radius: 50%;
        animation: orb-pulse 6s ease-in-out infinite alternate;
    }

    .cta-inner {
        position: relative;
        z-index: 2;
    }

    .cta-inner h2 {
        font-size: 2.4rem;
        color: var(--white);
        margin-bottom: 14px;
    }

    .cta-inner h2 span {
        color: var(--gold-light);
    }

    .cta-inner p {
        color: rgba(255, 255, 255, .72);
        font-size: .95rem;
        line-height: 1.75;
        max-width: 500px;
        margin-bottom: 28px;
    }

    .btn-gold {
        background: var(--gold);
        color: var(--navy);
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 14px 32px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
        box-shadow: 0 6px 24px rgba(232, 160, 32, .4);
    }

    .btn-gold:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        color: var(--navy);
    }

    .btn-outline-w {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, .45);
        font-family: 'Oswald', sans-serif;
        font-weight: 600;
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 28px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all .3s;
    }

    .btn-outline-w:hover {
        background: rgba(255, 255, 255, .1);
        color: var(--white);
        transform: translateY(-3px);
    }

    .cta-ph-box {
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 14px;
        padding: 30px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .cta-ph-box .num {
        font-family: 'Oswald', sans-serif;
        font-size: 2.1rem;
        font-weight: 700;
        color: var(--gold-light);
        display: block;
        text-decoration: none;
        transition: color .25s;
    }

    .cta-ph-box .num:hover {
        color: #fff;
    }

    .cta-ph-box p {
        color: rgba(255, 255, 255, .5);
        font-size: .82rem;
        margin: 6px 0 0;
    }

    /* ════════════════ FOOTER ════════════════ */
    footer {
        background: var(--navy);
        color: rgba(255, 255, 255, .7);
        padding: 60px 0 0;
    }

    footer h5 {
        font-family: 'Oswald', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--gold);
        display: inline-block;
    }

    footer p {
        font-size: .87rem;
        line-height: 1.75;
    }

    footer a {
        color: rgba(255, 255, 255, .6);
        text-decoration: none;
        font-size: .87rem;
        transition: color .2s;
    }

    footer a:hover {
        color: var(--gold-light);
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

    footer ul li {
        padding: 5px 0;
    }

    footer ul li a::before {
        content: '→ ';
        color: var(--gold);
        font-size: .75rem;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, .08);
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        color: rgba(255, 255, 255, .6) !important;
        font-size: .95rem;
        transition: all .25s;
    }

    .footer-social a:hover {
        background: var(--gold);
        color: var(--navy) !important;
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .1);
        margin-top: 48px;
        padding: 20px 0;
        font-size: .8rem;
        color: rgba(255, 255, 255, .4);
    }

    .footer-logo-text {
        font-family: 'Oswald', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
    }

    .footer-logo-text span {
        color: var(--gold-light);
    }

    /* ════════════════ ANIMATIONS ════════════════ */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.from-left {
        transform: translateX(-28px);
    }

    .reveal.from-right {
        transform: translateX(28px);
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .d1 {
        transition-delay: .1s
    }

    .d2 {
        transition-delay: .2s
    }

    .d3 {
        transition-delay: .3s
    }

    .d4 {
        transition-delay: .4s
    }

    .d5 {
        transition-delay: .5s
    }

    #back-top {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 46px;
        height: 46px;
        background: var(--gold);
        color: var(--navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
        opacity: 0;
        pointer-events: none;
        transition: all .3s;
        z-index: 999;
        text-decoration: none;
    }