/* =========================================================
   BFOA GLOBAL — MASTER WEBSITE CSS
   Header + Navigation + World Clock + Responsive
   ========================================================= */

:root{
    --navy:#061a33;
    --navy-2:#0b2d50;
    --blue:#087fc1;
    --cyan:#12a8e8;
    --gold:#c9a45c;
    --white:#ffffff;
    --text:#122033;
    --muted:#68778a;
    --line:#e5eaf0;
    --soft:#f5f8fb;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
}

/* =========================
   CONTAINER
   ========================= */

.container{
    width:min(1240px,92%);
    margin:0 auto;
}

/* =========================
   UTILITY / WORLD TIME BAR
   ========================= */

.utility-bar{
    width:100%;
    background:linear-gradient(90deg,var(--navy),#0a2747);
    color:#dce9f5;
    font-size:11px;
    letter-spacing:.35px;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.utility-inner{
    min-height:36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.utility-left,
.world-clock{
    display:flex;
    align-items:center;
    gap:12px;
    white-space:nowrap;
}

.utility-left span:first-child{
    color:#fff;
    font-weight:600;
}

.utility-divider{
    opacity:.30;
}

.clock-label{
    color:#7ed8f6;
    font-size:10px;
    font-weight:800;
    letter-spacing:1.2px;
}

.world-clock strong{
    color:#fff;
    font-weight:800;
    font-variant-numeric:tabular-nums;
}

/* =========================
   MAIN HEADER
   ========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    width:100%;
    background:#fff;
    box-shadow:0 5px 24px rgba(6,26,51,.08);
}

.main-header{
    width:100%;
    background:#fff;
}

.header-inner{
    min-height:88px;
    display:flex;
    align-items:center;
    gap:28px;
}

/* =========================
   LOGO
   ========================= */

.brand-logo{
    flex:0 0 auto;
    width:190px;
    display:flex;
    align-items:center;
    text-decoration:none;
}

.brand-logo img{
    display:block;
    width:175px;
    height:64px;
    object-fit:contain;
    object-position:left center;
}

/* =========================
   MAIN NAVIGATION
   ========================= */

.main-nav{
    flex:1 1 auto;
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;
}

.main-nav>a,
.nav-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:5px;
    min-height:88px;
    padding:0 12px;
    border:0;
    background:transparent;
    color:var(--text);
    text-decoration:none;
    font:700 13px/1 Arial,Helvetica,sans-serif;
    white-space:nowrap;
    cursor:pointer;
    transition:color .2s ease;
}

.main-nav>a:hover,
.nav-link:hover{
    color:var(--blue);
}

.main-nav>a::after,
.nav-link::after{
    content:"";
    position:absolute;
    left:12px;
    right:12px;
    bottom:20px;
    height:2px;
    border-radius:2px;
    background:var(--cyan);
    transform:scaleX(0);
    transition:transform .22s ease;
}

.main-nav>a:hover::after,
.nav-link:hover::after{
    transform:scaleX(1);
}

/* =========================
   DROPDOWN
   ========================= */

.nav-dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:calc(100% - 4px);
    left:0;
    width:210px;
    padding:9px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:8px;
    box-shadow:0 18px 45px rgba(6,26,51,.14);

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}

.nav-dropdown:hover>.dropdown-menu,
.nav-dropdown:focus-within>.dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:11px 12px;
    border-radius:5px;
    color:var(--text);
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}

.dropdown-menu a:hover{
    color:var(--blue);
    background:#f1f7fb;
}

/* =========================
   MEGA MENU
   ========================= */

.mega-menu{
    position:absolute;
    top:calc(100% - 4px);
    left:50%;

    width:min(780px,78vw);

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;

    padding:26px;

    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;

    box-shadow:0 22px 55px rgba(6,26,51,.16);

    opacity:0;
    visibility:hidden;

    transform:translate(-50%,8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}

.nav-dropdown:hover>.mega-menu,
.nav-dropdown:focus-within>.mega-menu{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
}

.mega-menu>div{
    display:flex;
    flex-direction:column;
}

.mega-menu small{
    margin-bottom:10px;
    color:var(--blue);
    font-size:10px;
    font-weight:800;
    letter-spacing:1.2px;
}

.mega-menu a{
    padding:8px 0;
    color:var(--text);
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}

.mega-menu a:hover{
    color:var(--blue);
}

/* =========================
   HEADER ACTIONS
   ========================= */

.header-actions{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:8px;
}

.language-switcher{
    position:relative;
}

.action-btn{
    height:38px;
    padding:0 11px;

    border:1px solid var(--line);
    border-radius:6px;

    background:#fff;
    color:var(--text);

    font-size:12px;
    font-weight:800;

    cursor:pointer;
}

.language-menu{
    position:absolute;
    top:calc(100% + 7px);
    right:0;

    width:180px;
    max-height:420px;
    overflow:auto;

    padding:8px;

    background:#fff;
    border:1px solid var(--line);
    border-radius:8px;

    box-shadow:0 18px 45px rgba(6,26,51,.14);

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.language-menu a{
    display:block;
    padding:10px 11px;

    border-radius:5px;

    color:var(--text);
    text-decoration:none;

    font-size:13px;
    font-weight:600;
}

.language-menu a:hover{
    background:#f1f7fb;
    color:var(--blue);
}

/* =========================
   PORTAL BUTTON
   ========================= */

.portal-btn{
    height:38px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:0 16px;

    border-radius:6px;

    background:var(--navy);
    color:#fff;

    text-decoration:none;

    font-size:12px;
    font-weight:800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.portal-btn:hover{
    background:var(--blue);
    transform:translateY(-1px);
}

/* =========================
   MOBILE MENU BUTTON
   ========================= */

.menu-toggle{
    display:none;

    width:40px;
    height:38px;

    padding:6px;

    border:1px solid var(--line);
    border-radius:6px;

    background:#fff;

    cursor:pointer;
}

.menu-toggle span{
    display:block;

    width:100%;
    height:2px;

    margin:5px 0;

    background:var(--navy);

    border-radius:2px;
}

/* =========================
   BASIC PAGE
   ========================= */

main{
    min-height:500px;
}

.page-placeholder{
    min-height:600px;
    padding:120px 0;
}

.eyebrow{
    display:inline-block;

    color:var(--blue);

    font-size:12px;
    font-weight:800;
    letter-spacing:3px;
}

.page-placeholder h1{
    margin:18px 0;

    color:var(--navy);

    font-size:clamp(40px,6vw,72px);
    line-height:1.05;
}

.page-placeholder p{
    max-width:700px;

    color:var(--muted);

    font-size:18px;
    line-height:1.7;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
    background:var(--navy);
    color:#dce7f5;

    padding:60px 0 22px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:35px;
}

.site-footer a{
    color:#dce7f5;
    text-decoration:none;
}

.site-footer a:hover{
    color:#7ed8f6;
}

.copyright{
    margin-top:38px;
    padding-top:18px;

    border-top:1px solid rgba(255,255,255,.14);

    color:#9fb2c8;

    font-size:13px;
}

/* =========================
   TABLET
   ========================= */

@media(max-width:1100px){

    .container{
        width:min(96%,1240px);
    }

    .brand-logo{
        width:155px;
    }

    .brand-logo img{
        width:145px;
        height:58px;
    }

    .main-nav>a,
    .nav-link{
        padding-left:7px;
        padding-right:7px;
        font-size:12px;
    }

    .main-nav>a::after,
    .nav-link::after{
        left:7px;
        right:7px;
    }

    .portal-btn{
        display:none;
    }
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:850px){

    .utility-inner{
        min-height:34px;
        justify-content:center;
        overflow:hidden;
    }

    .utility-left{
        display:none;
    }

    .world-clock{
        gap:8px;
        overflow:hidden;
    }

    .world-clock span{
        font-size:10px;
    }

    .world-clock span:nth-child(n+6){
        display:none;
    }

    .header-inner{
        position:relative;
        min-height:72px;
        justify-content:space-between;
    }

    .brand-logo{
        width:auto;
    }

    .brand-logo img{
        width:145px;
        height:56px;
    }

    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;

        top:100%;
        left:2%;
        right:2%;

        display:none;

        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;

        padding:8px;

        background:#fff;

        border:1px solid var(--line);
        border-radius:8px;

        box-shadow:0 18px 40px rgba(6,26,51,.15);
    }

    .main-nav.is-open{
        display:flex;
    }

    .main-nav>a,
    .nav-link{
        width:100%;
        min-height:0;

        padding:13px;

        justify-content:space-between;
        text-align:left;
    }

    .main-nav>a::after,
    .nav-link::after{
        display:none;
    }

    .dropdown-menu,
    .mega-menu{
        position:static;

        width:100%;

        display:none;

        opacity:1;
        visibility:visible;

        transform:none;

        box-shadow:none;
        border:0;
        border-radius:0;
    }

    .nav-dropdown:hover>.dropdown-menu,
    .nav-dropdown:hover>.mega-menu{
        display:block;
    }

    .mega-menu{
        grid-template-columns:1fr;

        gap:10px;

        padding:8px 14px 14px;
    }

    .header-actions{
        margin-left:auto;
    }

    .language-switcher{
        display:none;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .page-placeholder{
        padding:80px 0;
    }
}

/* =========================
   SMALL MOBILE
   ========================= */

@media(max-width:480px){

    .world-clock{
        gap:6px;
    }

    .world-clock span{
        font-size:9px;
    }

    .brand-logo img{
        width:130px;
    }
}
/* =========================================================
   BFOA GLOBAL — FINAL HOME PAGE
   ========================================================= */

.bfoa-home{
    background:#fff;
    color:#102238;
    overflow:hidden;
}

.bfoa-section{
    padding:100px 0;
}

.bfoa-kicker{
    margin-bottom:14px;
    color:#087fc1;
    font-size:11px;
    font-weight:800;
    letter-spacing:3px;
}

.bfoa-kicker.light{
    color:#72d5f5;
}

/* =========================================================
   COMMON HEADINGS
   ========================================================= */

.bfoa-heading-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:35px;
    margin-bottom:45px;
}

.bfoa-heading-row h2,
.bfoa-intro h2,
.bfoa-global-copy h2,
.bfoa-verification h2,
.bfoa-final h2,
.bfoa-career h2{
    margin:0;
    color:#061a33;
    font-size:clamp(34px,4vw,56px);
    line-height:1.07;
    letter-spacing:-1.8px;
}

.bfoa-copy p,
.bfoa-global-copy > p,
.bfoa-verification p{
    color:#647789;
    font-size:16px;
    line-height:1.85;
    margin:0 0 18px;
}

.bfoa-copy strong{
    color:#061a33;
}

.bfoa-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:#087fc1;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.bfoa-link span{
    transition:.25s ease;
}

.bfoa-link:hover span{
    transform:translateX(5px);
}


/* =========================================================
   HERO
   ========================================================= */

.bfoa-hero{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#03172b;
}

.bfoa-hero-bg{
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(15,169,232,.34),
            transparent 25%
        ),
        radial-gradient(
            circle at 68% 85%,
            rgba(0,96,146,.34),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #021324 0%,
            #062c4a 55%,
            #075c7c 100%
        );
}

.bfoa-hero-bg::before{
    content:"";
    position:absolute;
    inset:-20%;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 100px,
            rgba(255,255,255,.025) 101px 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 85px,
            rgba(255,255,255,.02) 86px 87px
        );
    transform:rotate(-8deg);
}

.bfoa-hero-bg::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    right:-180px;
    top:-150px;
    border:1px solid rgba(114,213,245,.16);
    border-radius:50%;
    box-shadow:
        0 0 0 70px rgba(114,213,245,.025),
        0 0 0 140px rgba(114,213,245,.02);
}

.bfoa-hero-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(2,13,26,.97) 0%,
            rgba(3,27,47,.86) 45%,
            rgba(4,63,88,.35) 100%
        );
}

.bfoa-hero-inner{
    position:relative;
    z-index:2;
    padding:115px 0 125px;
}

.bfoa-eyebrow{
    display:inline-block;
    margin-bottom:23px;
    color:#79d8f6;
    font-size:11px;
    font-weight:800;
    letter-spacing:3.5px;
}

.bfoa-hero h1{
    max-width:920px;
    margin:0;
    color:#fff;
    font-size:clamp(45px,6vw,82px);
    line-height:1.01;
    letter-spacing:-3.5px;
}

.bfoa-hero h1 span{
    display:block;
    color:#72d4f5;
}

.bfoa-hero p{
    max-width:710px;
    margin:30px 0 35px;
    color:#d0e0ec;
    font-size:18px;
    line-height:1.75;
}

.bfoa-hero-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.bfoa-btn{
    min-height:51px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 25px;
    border-radius:5px;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    transition:.25s ease;
}

.bfoa-btn-primary{
    background:#12a8e8;
    color:#fff;
    box-shadow:0 10px 30px rgba(18,168,232,.18);
}

.bfoa-btn-primary:hover{
    background:#087fc1;
    color:#fff;
    transform:translateY(-3px);
}

.bfoa-btn-outline{
    border:1px solid rgba(255,255,255,.55);
    color:#fff;
    background:transparent;
}

.bfoa-btn-outline:hover{
    background:#fff;
    color:#061a33;
}

.bfoa-btn-light{
    background:#fff;
    color:#061a33;
}

.bfoa-btn-light:hover{
    background:#e9f8fd;
    color:#061a33;
}

.bfoa-hero-strip{
    display:flex;
    gap:30px;
    flex-wrap:wrap;

    margin-top:62px;
    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.16);

    color:#bcd0df;
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
}


/* =========================================================
   COMPANY INTRO
   ========================================================= */

.bfoa-intro{
    background:#fff;
}

.bfoa-two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:end;
}


/* =========================================================
   SERVICES
   ========================================================= */

.bfoa-services{
    background:#f4f8fb;
}

.bfoa-service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.bfoa-service-card{
    position:relative;
    min-height:315px;
    padding:30px;

    background:#fff;
    border:1px solid #dce6ed;

    text-decoration:none;
    overflow:hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.bfoa-service-card::before{
    content:"";

    position:absolute;
    left:0;
    top:0;

    width:0;
    height:3px;

    background:#12a8e8;

    transition:.3s ease;
}

.bfoa-service-card:hover{
    transform:translateY(-7px);
    border-color:#cbdde8;
    box-shadow:0 22px 55px rgba(6,26,51,.12);
}

.bfoa-service-card:hover::before{
    width:100%;
}

.bfoa-card-no{
    color:#94a7b7;
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
}

.bfoa-service-symbol{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-top:42px;

    border:1px solid #d9e5ec;

    color:#087fc1;
    font-size:21px;

    background:#f8fbfd;
}

.bfoa-service-card h3{
    margin:20px 0 11px;

    color:#061a33;

    font-size:20px;
    line-height:1.2;
}

.bfoa-service-card p{
    margin:0;

    color:#6a7b8c;

    font-size:12.5px;
    line-height:1.7;
}

.bfoa-card-arrow{
    position:absolute;
    right:27px;
    bottom:25px;

    color:#087fc1;
    font-size:20px;

    transition:.25s ease;
}

.bfoa-service-card:hover .bfoa-card-arrow{
    transform:translateX(6px);
}


/* =========================================================
   MARITIME ECOSYSTEM
   ========================================================= */

.bfoa-ecosystem{
    background:#fff;
}

.bfoa-ecosystem-head{
    max-width:850px;
    margin-bottom:50px;
}

.bfoa-ecosystem-head h2{
    margin:0;

    color:#061a33;

    font-size:clamp(34px,4vw,55px);
    line-height:1.08;
    letter-spacing:-1.8px;
}

.bfoa-ecosystem-head p{
    max-width:720px;
    margin:22px 0 0;

    color:#66798a;
    line-height:1.8;
}

.bfoa-flow{
    display:flex;
    align-items:center;
    gap:15px;

    overflow-x:auto;

    padding-bottom:12px;
}

.bfoa-flow-item{
    min-width:180px;
    min-height:150px;

    padding:25px;

    border:1px solid #dce6ed;
    background:#f8fafc;

    transition:.25s ease;
}

.bfoa-flow-item:hover{
    border-color:#9ed8ee;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(6,26,51,.07);
}

.bfoa-flow-item strong{
    display:block;

    color:#087fc1;

    font-size:10px;
    letter-spacing:2px;
}

.bfoa-flow-item span{
    display:block;

    margin-top:28px;

    color:#061a33;

    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
}

.bfoa-flow-item small{
    display:block;

    margin-top:7px;

    color:#718395;
    font-size:11px;
}

.bfoa-flow > i{
    flex:0 0 auto;

    font-style:normal;
    color:#12a8e8;
    font-size:22px;
}


/* =========================================================
   GLOBAL SECTION
   ========================================================= */

.bfoa-global{
    background:#061a33;
}

.bfoa-global-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.bfoa-global-copy h2{
    color:#fff;
}

.bfoa-global-copy > p{
    color:#b8cad8;
    margin-top:24px;
}

.bfoa-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:38px;
}

.bfoa-stats div{
    padding-top:17px;

    border-top:1px solid rgba(255,255,255,.16);
}

.bfoa-stats strong{
    display:block;
    color:#72d4f5;
    font-size:19px;
}

.bfoa-stats span{
    display:block;
    margin-top:6px;
    color:#91a8bb;
    font-size:10px;
}


/* GLOBE */

.bfoa-globe{
    position:relative;

    min-height:430px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.12);

    background:
        radial-gradient(
            circle,
            rgba(18,168,232,.19),
            transparent 35%
        ),
        #082542;
}

.bfoa-globe-ring{
    position:absolute;

    left:50%;
    top:50%;

    border:1px solid rgba(114,212,245,.24);
    border-radius:50%;

    transform:translate(-50%,-50%);
}

.ring-1{
    width:300px;
    height:300px;
}

.ring-2{
    width:470px;
    height:185px;

    transform:
        translate(-50%,-50%)
        rotate(-18deg);
}

.ring-3{
    width:210px;
    height:470px;

    transform:
        translate(-50%,-50%)
        rotate(18deg);
}

.bfoa-globe-core{
    position:absolute;

    left:50%;
    top:50%;

    width:135px;
    height:135px;

    transform:translate(-50%,-50%);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border:1px solid #72d4f5;
    border-radius:50%;

    background:#061a33;

    color:#fff;

    font-size:20px;
    font-weight:900;
    letter-spacing:3px;

    box-shadow:
        0 0 60px rgba(18,168,232,.22);
}

.bfoa-globe-core small{
    margin-top:5px;

    color:#72d4f5;

    font-size:8px;
    letter-spacing:4px;
}

.globe-dot{
    position:absolute;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#72d4f5;

    box-shadow:0 0 15px #12a8e8;
}

.dot-1{
    left:22%;
    top:29%;
}

.dot-2{
    left:74%;
    top:24%;
}

.dot-3{
    right:18%;
    bottom:25%;
}

.dot-4{
    left:28%;
    bottom:20%;
}


/* =========================================================
   MARITIME SECTORS
   ========================================================= */

.bfoa-sectors{
    background:#fff;
}

.bfoa-sector-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    border-top:1px solid #dce6ed;
    border-left:1px solid #dce6ed;
}

.bfoa-sector{
    min-height:185px;
    padding:29px;

    border-right:1px solid #dce6ed;
    border-bottom:1px solid #dce6ed;

    transition:.25s ease;
}

.bfoa-sector:hover{
    background:#f7fbfd;
}

.bfoa-sector > span{
    color:#087fc1;

    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
}

.bfoa-sector h3{
    margin:20px 0 9px;

    color:#061a33;

    font-size:19px;
}

.bfoa-sector p{
    margin:0;

    color:#6b7d8e;

    font-size:12.5px;
    line-height:1.7;
}


/* =========================================================
   CAREER CTA
   ========================================================= */

.bfoa-career{
    padding:85px 0;

    background:
        linear-gradient(
            105deg,
            #061a33,
            #0a4265
        );
}

.bfoa-career-inner{
    display:grid;

    grid-template-columns:1fr auto;

    gap:50px;

    align-items:center;
}

.bfoa-career h2{
    color:#fff;
}

.bfoa-career p{
    max-width:650px;

    margin:20px 0 0;

    color:#bfd1df;

    line-height:1.75;
}

.bfoa-career-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}


/* =========================================================
   VERIFICATION
   ========================================================= */

.bfoa-verification{
    background:#f4f8fb;
}

.bfoa-verification-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.bfoa-verification-card{
    display:flex;
    align-items:center;
    gap:17px;

    padding:27px;

    background:#fff;

    border:1px solid #dce6ed;

    box-shadow:0 15px 40px rgba(6,26,51,.07);
}

.bfoa-check{
    width:51px;
    height:51px;

    flex:0 0 51px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#e8f8fd;

    color:#087fc1;

    font-size:22px;
    font-weight:900;
}

.bfoa-verification-card div:nth-child(2){
    flex:1;
}

.bfoa-verification-card strong{
    display:block;

    color:#061a33;

    font-size:14px;
}

.bfoa-verification-card span{
    display:block;

    margin-top:5px;

    color:#708294;

    font-size:11px;
}

.bfoa-verification-card > a{
    color:#087fc1;

    text-decoration:none;

    font-size:12px;
    font-weight:800;

    white-space:nowrap;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.bfoa-final{
    padding:78px 0;

    background:#061a33;
}

.bfoa-final-inner{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:35px;
}

.bfoa-final h2{
    color:#fff;
    max-width:750px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1100px){

    .bfoa-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bfoa-two-col,
    .bfoa-global-grid,
    .bfoa-verification-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:800px){

    .bfoa-section{
        padding:75px 0;
    }

    .bfoa-heading-row{
        align-items:flex-start;
        flex-direction:column;
    }

    .bfoa-hero{
        min-height:620px;
    }

    .bfoa-hero-inner{
        padding:85px 0 105px;
    }

    .bfoa-hero h1{
        letter-spacing:-1.5px;
    }

    .bfoa-hero p{
        font-size:16px;
    }

    .bfoa-hero-strip{
        gap:13px;
        margin-top:45px;
    }

    .bfoa-sector-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bfoa-career-inner{
        grid-template-columns:1fr;
    }

    .bfoa-final-inner{
        display:grid;
        grid-template-columns:1fr;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:560px){

    .bfoa-service-grid,
    .bfoa-sector-grid{
        grid-template-columns:1fr;
    }

    .bfoa-stats{
        grid-template-columns:1fr;
    }

    .bfoa-hero-buttons,
    .bfoa-career-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .bfoa-btn{
        width:100%;
    }

    .bfoa-verification-card{
        flex-wrap:wrap;
        align-items:flex-start;
    }

    .bfoa-verification-card > a{
        width:100%;
        margin-left:68px;
    }

    .bfoa-globe{
        min-height:350px;
    }

    .bfoa-globe-ring.ring-2{
        width:360px;
    }

    .bfoa-globe-ring.ring-3{
        height:360px;
    }

}
/* =========================================================
   BFOA GLOBAL — ENTERPRISE FOOTER
   ========================================================= */

.bfoa-footer{
    background:#041426;
    color:#fff;
}

.bfoa-footer-main{
    padding:85px 0 75px;
}

.bfoa-footer-grid{
    display:grid;
    grid-template-columns:1.45fr .8fr 1fr 1fr;
    gap:55px;
}


/* COMPANY */

.bfoa-footer-logo{
    display:inline-flex;
    align-items:center;
    margin-bottom:25px;
}

.bfoa-footer-logo img{
    width:125px;
    height:auto;
    display:block;
    object-fit:contain;
}

.bfoa-footer-company-name{
    max-width:420px;
    margin:0 0 15px;

    color:#fff;

    font-size:13px;
    font-weight:800;
    line-height:1.6;
    letter-spacing:.2px;
}

.bfoa-footer-description{
    max-width:420px;
    margin:0;

    color:#8fa5b8;

    font-size:12px;
    line-height:1.8;
}

.bfoa-footer-contact{
    margin-top:24px;
}

.bfoa-footer-contact a{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#72d4f5;

    text-decoration:none;

    font-size:13px;
    font-weight:700;
}

.bfoa-footer-contact a span{
    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(114,212,245,.25);
    border-radius:50%;
}


/* COLUMNS */

.bfoa-footer-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.bfoa-footer-column h3{
    margin:4px 0 22px;

    color:#72d4f5;

    font-size:10px;
    font-weight:900;
    letter-spacing:2.5px;
}

.bfoa-footer-column a{
    position:relative;

    margin-bottom:12px;

    color:#a9bbc9;

    text-decoration:none;

    font-size:12px;
    line-height:1.5;

    transition:.2s ease;
}

.bfoa-footer-column a:hover{
    color:#fff;
    transform:translateX(4px);
}


/* =========================================================
   MARITIME RESOURCES
   ========================================================= */

.bfoa-footer-resources{
    padding:65px 0 70px;

    background:#061c32;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.bfoa-resource-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:50px;

    margin-bottom:32px;
}

.bfoa-resource-heading > div{
    max-width:700px;
}

.bfoa-resource-heading span{
    display:block;

    margin-bottom:12px;

    color:#72d4f5;

    font-size:10px;
    font-weight:900;
    letter-spacing:3px;
}

.bfoa-resource-heading h3{
    margin:0;

    color:#fff;

    font-size:28px;
    line-height:1.25;
    letter-spacing:-.5px;
}

.bfoa-resource-heading p{
    max-width:390px;

    margin:0;

    color:#8298aa;

    font-size:12px;
    line-height:1.75;
}


/* RESOURCE GRID */

.bfoa-resource-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:10px;
}

.bfoa-resource-card{
    position:relative;

    min-height:110px;

    padding:22px 45px 20px 22px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    border:1px solid rgba(255,255,255,.09);

    background:rgba(255,255,255,.025);

    text-decoration:none;

    transition:.25s ease;
}

.bfoa-resource-card:hover{
    background:rgba(18,168,232,.09);

    border-color:rgba(114,212,245,.35);

    transform:translateY(-3px);
}

.bfoa-resource-card strong{
    color:#fff;

    font-size:13px;
    font-weight:800;
}

.bfoa-resource-card span{
    margin-top:7px;

    color:#8298aa;

    font-size:10.5px;
    line-height:1.5;
}

.bfoa-resource-card b{
    position:absolute;

    top:20px;
    right:19px;

    color:#72d4f5;

    font-size:16px;

    font-weight:400;
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.bfoa-footer-bottom{
    padding:24px 0;

    background:#03101e;
}

.bfoa-footer-bottom-inner{
    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:25px;
}

.bfoa-footer-copy{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;

    color:#71889b;

    font-size:10px;
    line-height:1.7;
}

.bfoa-footer-separator{
    color:#36536a;
}

.bfoa-footer-legal{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;

    gap:18px;
}

.bfoa-footer-legal a{
    color:#8096a8;

    text-decoration:none;

    font-size:10px;

    transition:.2s ease;
}

.bfoa-footer-legal a:hover{
    color:#72d4f5;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.bfoa-footer-disclaimer{
    padding:18px 0;

    background:#020c17;
}

.bfoa-footer-disclaimer p{
    max-width:1100px;

    margin:0 auto;

    color:#526b7e;

    font-size:9.5px;
    line-height:1.7;

    text-align:center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1050px){

    .bfoa-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:45px;
    }

    .bfoa-resource-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bfoa-resource-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .bfoa-footer-bottom-inner{
        align-items:flex-start;
        flex-direction:column;
    }

    .bfoa-footer-legal{
        justify-content:flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:650px){

    .bfoa-footer-main{
        padding:60px 0;
    }

    .bfoa-footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .bfoa-resource-grid{
        grid-template-columns:1fr;
    }

    .bfoa-resource-heading h3{
        font-size:24px;
    }

    .bfoa-footer-bottom-inner{
        gap:18px;
    }

    .bfoa-footer-legal{
        gap:12px 17px;
    }

    .bfoa-footer-copy{
        display:block;
    }

    .bfoa-footer-separator{
        display:none;
    }

}
/* =========================================================
   BFOA GLOBAL — FINAL FOOTER CSS
   ========================================================= */

.bfoa-footer {
    width: 100%;
    background: #041426;
    color: #ffffff;
    overflow: hidden;
}

/* =========================
   CONTAINER
   ========================= */

.bfoa-footer .container {
    width: min(1400px, calc(100% - 70px));
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   MAIN FOOTER
   ========================= */

.bfoa-footer-main {
    padding: 85px 0 75px;
    background: #041426;
}

.bfoa-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.5fr)
        minmax(150px, .8fr)
        minmax(190px, 1fr)
        minmax(190px, 1fr);

    gap: 55px;
}


/* =========================
   COMPANY
   ========================= */

.bfoa-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}

.bfoa-footer-logo img {
    width: 125px;
    height: auto;
    display: block;
    object-fit: contain;
}

.bfoa-footer-company-name {
    max-width: 470px;
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
    line-height: 1.65;
}

.bfoa-footer-description {
    max-width: 470px;
    margin: 0;

    color: #8fa5b8;

    font-size: 13px;
    line-height: 1.8;
}

.bfoa-footer-contact {
    margin-top: 24px;
}

.bfoa-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #72d4f5;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: .25s ease;
}

.bfoa-footer-contact a:hover {
    color: #ffffff;
}

.bfoa-footer-contact a span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(114, 212, 245, .25);
    border-radius: 50%;
}


/* =========================
   FOOTER COLUMNS
   ========================= */

.bfoa-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bfoa-footer-column h3 {
    margin: 4px 0 22px;

    color: #72d4f5;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.bfoa-footer-column a {
    margin-bottom: 13px;

    color: #a9bbc9;

    text-decoration: none;

    font-size: 12px;
    line-height: 1.5;

    transition: .2s ease;
}

.bfoa-footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================
   MARITIME RESOURCES
   ========================= */

.bfoa-footer-resources {
    padding: 75px 0 80px;

    background: #061c32;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bfoa-resource-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 38px;
}

.bfoa-resource-heading > div {
    max-width: 700px;
}

.bfoa-resource-heading > div > span {
    display: block;

    margin-bottom: 12px;

    color: #72d4f5;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
}

.bfoa-resource-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 31px;
    line-height: 1.25;
    letter-spacing: -.5px;
}

.bfoa-resource-heading p {
    max-width: 390px;

    margin: 0;

    color: #8298aa;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================
   RESOURCE GRID
   ========================= */

.bfoa-resource-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.bfoa-resource-card {
    position: relative;

    min-height: 120px;

    padding: 25px 55px 23px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.09);

    background: rgba(255,255,255,.025);

    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.bfoa-resource-card:hover {
    background: rgba(18,168,232,.09);

    border-color: rgba(114,212,245,.35);

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.bfoa-resource-card strong {
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.bfoa-resource-card > span:not(.resource-external-arrow) {
    margin-top: 7px;

    color: #8298aa;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================
   CLEAN EXTERNAL ARROW
   ========================= */

.bfoa-resource-card .resource-external-arrow {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 10px;
    height: 10px;

    border-top: 2px solid #72d4f5;
    border-right: 2px solid #72d4f5;

    transition: .25s ease;
}

.bfoa-resource-card .resource-external-arrow::after {
    content: "";

    position: absolute;

    width: 13px;
    height: 2px;

    top: 4px;
    right: -2px;

    background: #72d4f5;

    transform: rotate(-45deg);
    transform-origin: right center;
}

.bfoa-resource-card:hover .resource-external-arrow {
    transform: translate(3px,-3px);
}


/* =========================
   LEGAL BAR
   ========================= */

.bfoa-footer-bottom {
    padding: 27px 0;

    background: #03101e;
}

.bfoa-footer-bottom-inner {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 25px;
}

.bfoa-footer-copy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    color: #71889b;

    font-size: 10.5px;
    line-height: 1.7;
}

.bfoa-footer-separator {
    color: #36536a;
}

.bfoa-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 18px;
}

.bfoa-footer-legal a {
    color: #8096a8;

    text-decoration: none;

    font-size: 10.5px;

    transition: .2s ease;
}

.bfoa-footer-legal a:hover {
    color: #72d4f5;
}


/* =========================
   DISCLAIMER
   ========================= */

.bfoa-footer-disclaimer {
    padding: 20px 0;

    background: #020c17;
}

.bfoa-footer-disclaimer p {
    max-width: 1100px;

    margin: 0 auto;

    color: #526b7e;

    font-size: 10px;
    line-height: 1.7;

    text-align: center;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1050px) {

    .bfoa-footer .container {
        width: calc(100% - 50px);
    }

    .bfoa-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .bfoa-resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bfoa-resource-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .bfoa-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .bfoa-footer-legal {
        justify-content: flex-start;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 650px) {

    .bfoa-footer .container {
        width: calc(100% - 34px);
    }

    .bfoa-footer-main {
        padding: 60px 0;
    }

    .bfoa-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bfoa-resource-grid {
        grid-template-columns: 1fr;
    }

    .bfoa-resource-heading h3 {
        font-size: 24px;
    }

    .bfoa-footer-bottom-inner {
        gap: 18px;
    }

    .bfoa-footer-copy {
        display: block;
    }

    .bfoa-footer-separator {
        display: none;
    }

    .bfoa-footer-legal {
        justify-content: flex-start;
        gap: 12px 17px;
    }
}
/* =========================================================
   BFOA GLOBAL — CONTACT MAIL ICON FIX
   Removes broken Unicode / emoji mail character
   ========================================================= */

.bfoa-footer-contact a span {
    position: relative;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(114, 212, 245, 0.35);
    border-radius: 50%;

    font-size: 0 !important;
    line-height: 0;

    flex-shrink: 0;
}

/* Envelope */
.bfoa-footer-contact a span::before {
    content: "";

    width: 14px;
    height: 10px;

    border: 1.7px solid #72d4f5;
    border-radius: 2px;

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

/* Envelope flap */
.bfoa-footer-contact a span::after {
    content: "";

    width: 8px;
    height: 8px;

    border-left: 1.7px solid #72d4f5;
    border-bottom: 1.7px solid #72d4f5;

    position: absolute;
    left: 50%;
    top: 46%;

    transform: translate(-50%, -50%) rotate(-45deg);
    }
}
/* =========================================================
   BFOA GLOBAL — ABOUT US PAGE
   ========================================================= */

.about-page {
    background: #ffffff;
    color: #071a32;
}


/* HERO */

.about-hero {
    position: relative;
    min-height: 570px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            #031a31 0%,
            #062b49 55%,
            #0a5b78 100%
        );

    overflow: hidden;
}

.about-hero::after {
    content: "";

    position: absolute;
    width: 650px;
    height: 650px;

    right: -180px;
    top: -170px;

    border: 1px solid rgba(114,212,245,.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(114,212,245,.025),
        0 0 0 160px rgba(114,212,245,.018);
}

.about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.about-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.about-hero h1 span {
    display: block;
    color: #65d5f6;
}

.about-hero p {
    max-width: 720px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.8;
}


/* INTRO */

.about-intro {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.about-intro h2 {
    margin: 15px 0 0;

    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.about-intro-grid p {
    margin: 0 0 20px;

    color: #62778b;

    font-size: 15px;
    line-height: 1.9;
}


/* COMPANY PROFILE */

.about-company {
    background: #f5f8fb;
}

.company-profile-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.company-profile-card {
    position: relative;

    min-height: 260px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e1e9ef;

    transition: .25s ease;
}

.company-profile-card:hover {
    transform: translateY(-5px);

    border-color: #9edff3;

    box-shadow: 0 18px 40px rgba(3,27,50,.08);
}

.profile-number {
    display: block;

    margin-bottom: 45px;

    color: #12a8e8;

    font-size: 12px;
    font-weight: 800;
}

.company-profile-card small {
    display: block;

    margin-bottom: 12px;

    color: #7b91a3;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.company-profile-card h3 {
    margin: 0 0 12px;

    color: #071a32;

    font-size: 18px;
    line-height: 1.4;
}

.company-profile-card p {
    margin: 0;

    color: #63798c;

    font-size: 13px;
    line-height: 1.7;
}


/* CAPABILITIES */

.about-services {
    background: #ffffff;
}

.heading-description {
    max-width: 400px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.about-capability-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: #dce6ed;

    border: 1px solid #dce6ed;
}

.about-capability-card {
    min-height: 260px;

    padding: 30px;

    background: #ffffff;

    transition: .25s ease;
}

.about-capability-card:hover {
    background: #f4fbfe;
}

.about-capability-card > span {
    display: block;

    margin-bottom: 50px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.about-capability-card h3 {
    margin: 0 0 12px;

    font-size: 18px;
}

.about-capability-card p {
    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.75;
}


/* MISSION */

.about-mission {
    background: #041a30;
}

.mission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.mission-panel {
    color: #ffffff;
}

.mission-panel h2 {
    margin: 15px 0 25px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.mission-panel p {
    max-width: 650px;

    color: #9eb5c6;

    font-size: 14px;
    line-height: 1.9;
}

.mission-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.mission-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.mission-item > span {
    color: #5ed4f5;

    font-size: 11px;
    font-weight: 900;
}

.mission-item h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 17px;
}

.mission-item p {
    margin: 0;

    color: #849bac;

    font-size: 12px;
    line-height: 1.7;
}


/* GLOBAL */

.about-global {
    background: #f5f8fb;
}

.about-global-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    align-items: center;
}

.about-global h2 {
    max-width: 650px;

    margin: 15px 0 22px;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.about-global p {
    max-width: 680px;

    color: #687e90;

    font-size: 14px;
    line-height: 1.9;
}

.global-stat-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    background: #d9e4eb;

    border: 1px solid #d9e4eb;
}

.global-stat-grid > div {
    min-height: 170px;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #ffffff;
}

.global-stat-grid strong {
    color: #071a32;

    font-size: 28px;
    font-weight: 900;
}

.global-stat-grid span {
    margin-top: 8px;

    color: #718598;

    font-size: 11px;
}


/* CTA */

.about-cta {
    padding: 75px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.about-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.about-cta h2 {
    max-width: 700px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 54px);
    line-height: 1.1;
}

.about-cta p {
    margin: 0;

    color: #a7c0d0;

    font-size: 14px;
}

.about-cta-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .company-profile-grid,
    .about-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-grid,
    .mission-grid,
    .about-global-grid {
        gap: 50px;
    }
}


@media (max-width: 800px) {

    .about-intro-grid,
    .mission-grid,
    .about-global-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-cta-actions {
        flex-wrap: wrap;
    }
}


@media (max-width: 600px) {

    .about-hero {
        min-height: 500px;
    }

    .about-hero h1 {
        letter-spacing: -1.5px;
    }

    .company-profile-grid,
    .about-capability-grid,
    .global-stat-grid {
        grid-template-columns: 1fr;
    }

    .company-profile-card,
    .about-capability-card {
        min-height: auto;
    }

    .about-intro-grid {
        gap: 35px;
    }

    .mission-grid,
    .about-global-grid {
        gap: 40px;
    }
}
/* =========================================================
   BFOA GLOBAL — COMPANY PAGE
   ========================================================= */

.company-page {
    background: #ffffff;
    color: #071a32;
}


/* HERO */

.company-hero {
    position: relative;
    min-height: 600px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087493 100%
        );

    overflow: hidden;
}

.company-hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -260px;
    top: -160px;

    border: 1px solid rgba(113,214,245,.20);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(113,214,245,.025),
        0 0 0 180px rgba(113,214,245,.018);
}

.company-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: 60px;
    bottom: -260px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.company-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.company-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.company-hero h1 span {
    display: block;
    color: #67d6f5;
}

.company-hero p {
    max-width: 750px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.85;
}

.company-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* IDENTITY */

.company-identity {
    background: #ffffff;
}

.company-identity-head {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 50px;
}

.company-identity-head h2 {
    max-width: 700px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.company-identity-head p {
    max-width: 470px;

    margin: 0;

    color: #687e90;

    font-size: 14px;
    line-height: 1.85;
}

.company-id-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 15px;
}

.company-id-card {
    min-height: 245px;

    padding: 30px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.company-id-card:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #9ddff2;

    box-shadow: 0 18px 40px rgba(3,27,50,.08);
}

.company-id-card.featured {
    background: #061d34;
    border-color: #061d34;
}

.company-id-label {
    display: block;

    margin-bottom: 45px;

    color: #12a8e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.company-id-card strong {
    display: block;

    color: #071a32;

    font-size: 19px;
    line-height: 1.45;
}

.company-id-card.featured strong {
    color: #ffffff;
}

.company-id-card p {
    margin: 12px 0 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.7;
}

.company-id-card.featured p {
    color: #91aabb;
}


/* BUSINESS */

.company-business {
    background: #f5f8fb;
}

.heading-description {
    max-width: 410px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.business-area-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.business-area-card {
    position: relative;

    min-height: 300px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.business-area-card:hover {
    transform: translateY(-5px);

    border-color: #8fdcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.business-area-card > span {
    margin-bottom: 55px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.business-area-card h3 {
    margin: 0 0 12px;

    color: #071a32;

    font-size: 20px;
}

.business-area-card p {
    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.75;
}

.business-area-card b {
    margin-top: auto;
    padding-top: 25px;

    color: #079ed9;

    font-size: 12px;
}


/* OPERATING MODEL */

.company-operating {
    background: #041a30;
}

.company-operating-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.operating-copy h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.operating-copy p {
    max-width: 650px;

    color: #91aabb;

    font-size: 14px;
    line-height: 1.9;
}

.operating-flow {
    padding-left: 20px;
}

.flow-step {
    display: flex;

    align-items: center;

    gap: 20px;
}

.flow-step > span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #72d4f5;

    border: 1px solid rgba(114,212,245,.3);
    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;
}

.flow-step strong {
    display: block;

    color: #ffffff;

    font-size: 15px;
    letter-spacing: 1px;
}

.flow-step small {
    display: block;

    margin-top: 4px;

    color: #8099aa;

    font-size: 11px;
}

.flow-line {
    width: 1px;
    height: 38px;

    margin: 6px 0 6px 21px;

    background: rgba(114,212,245,.2);
}


/* DIGITAL */

.company-digital {
    background: #ffffff;
}

.digital-platform-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.digital-platform-card {
    position: relative;

    min-height: 275px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.digital-platform-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: #8fdcf1;

    box-shadow: 0 18px 40px rgba(3,27,50,.08);
}

.digital-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #12a8e8;

    background: #e5f7fd;

    border: 1px solid #c6edf8;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.digital-platform-card small {
    color: #12a8e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.digital-platform-card h3 {
    margin: 9px 0 10px;

    color: #071a32;

    font-size: 19px;
}

.digital-platform-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.75;
}

.digital-platform-card > span {
    margin-top: auto;
    padding-top: 25px;

    color: #079ed9;

    font-size: 11px;
    font-weight: 800;
}


/* PRINCIPLES */

.company-principles {
    background: #f5f8fb;
}

.principles-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;
}

.principles-grid > div:first-child h2 {
    max-width: 600px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.principles-grid > div:first-child p {
    max-width: 500px;

    color: #718598;

    font-size: 14px;
    line-height: 1.85;
}

.principle-list {
    border-top: 1px solid #d8e3ea;
}

.principle-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #d8e3ea;
}

.principle-item > span {
    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.principle-item h3 {
    margin: 0 0 7px;

    color: #071a32;

    font-size: 17px;
}

.principle-item p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.7;
}


/* CTA */

.company-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.company-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.company-cta h2 {
    max-width: 700px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.08;
}

.company-cta p {
    margin: 0;

    color: #a7c0d0;

    font-size: 14px;
}

.company-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .company-id-grid {
        grid-template-columns: 1fr 1fr;
    }

    .company-id-card.featured {
        grid-column: span 2;
    }

    .business-area-grid,
    .digital-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-identity-head,
    .company-operating-grid,
    .principles-grid {
        gap: 55px;
    }
}


@media (max-width: 800px) {

    .company-identity-head,
    .company-operating-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .company-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 600px) {

    .company-hero {
        min-height: 530px;
    }

    .company-hero h1 {
        letter-spacing: -1.5px;
    }

    .company-id-grid,
    .business-area-grid,
    .digital-platform-grid {
        grid-template-columns: 1fr;
    }

    .company-id-card.featured {
        grid-column: auto;
    }

    .company-id-card,
    .business-area-card,
    .digital-platform-card {
        min-height: auto;
    }

    .operating-flow {
        padding-left: 0;
    }
}
/* =========================================================
   BFOA GLOBAL — FAQ PAGE
   ========================================================= */

.faq-page {
    background: #ffffff;
    color: #071a32;
}


/* HERO */

.faq-hero {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #063653 60%,
            #087a99
        );

    overflow: hidden;
}

.faq-hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -220px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.2);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.018);
}

.faq-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.faq-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.faq-hero h1 span {
    display: block;
    color: #68d7f5;
}

.faq-hero p {
    max-width: 700px;

    margin: 0;

    color: #b8cfdd;

    font-size: 16px;
    line-height: 1.85;
}


/* INTRO */

.faq-intro {
    background: #ffffff;
}

.faq-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.faq-intro h2 {
    max-width: 650px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.faq-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;
    line-height: 1.9;
}


/* FAQ SECTION */

.faq-section {
    background: #f5f8fb;
}

.faq-layout {
    display: grid;

    grid-template-columns: 270px 1fr;

    gap: 70px;

    align-items: start;
}


/* SIDEBAR */

.faq-sidebar {
    position: sticky;
    top: 110px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.faq-sidebar h3 {
    margin: 12px 0 25px;

    font-size: 20px;
}

.faq-sidebar a {
    display: block;

    padding: 13px 0;

    color: #657b8e;

    border-top: 1px solid #e5edf2;

    text-decoration: none;

    font-size: 12px;
    line-height: 1.5;

    transition: .2s ease;
}

.faq-sidebar a:hover {
    padding-left: 5px;

    color: #079ed9;
}


/* FAQ GROUP */

.faq-group {
    margin-bottom: 80px;

    scroll-margin-top: 100px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    display: flex;

    align-items: flex-start;

    gap: 22px;

    margin-bottom: 25px;
}

.faq-group-title > span {
    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.faq-group-title small {
    display: block;

    margin-bottom: 7px;

    color: #12a8e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.faq-group-title h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.15;
}


/* FAQ ITEMS */

.faq-list {
    border-top: 1px solid #d7e2e9;
}

.faq-item {
    border-bottom: 1px solid #d7e2e9;

    background: #ffffff;
}

.faq-item summary {
    min-height: 72px;

    padding: 22px 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    cursor: pointer;

    list-style: none;

    color: #071a32;

    font-size: 14px;
    font-weight: 750;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary b {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #12a8e8;

    border: 1px solid #c8e9f4;
    border-radius: 50%;

    font-size: 17px;
    font-weight: 400;

    transition: .25s ease;
}

.faq-item[open] summary b {
    transform: rotate(45deg);

    color: #ffffff;

    background: #12a8e8;
}

.faq-answer {
    padding: 0 75px 25px 25px;
}

.faq-answer p {
    max-width: 750px;

    margin: 0;

    color: #687e90;

    font-size: 13px;
    line-height: 1.85;
}

.faq-answer-link {
    display: inline-block;

    margin-top: 15px;

    color: #079ed9;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
}

.faq-answer-link:hover {
    color: #071a32;
}


/* CTA */

.faq-cta {
    padding: 75px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.faq-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.faq-cta h2 {
    max-width: 700px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
}

.faq-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-sidebar a {
        display: inline-block;

        margin-right: 20px;

        border-top: 0;
    }

    .faq-intro-grid {
        gap: 50px;
    }
}


@media (max-width: 700px) {

    .faq-intro-grid {
        grid-template-columns: 1fr;
    }

    .faq-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-group-title h2 {
        font-size: 27px;
    }
}


@media (max-width: 550px) {

    .faq-hero {
        min-height: 470px;
    }

    .faq-hero h1 {
        letter-spacing: -1.5px;
    }

    .faq-item summary {
        padding: 19px 16px;
    }

    .faq-answer {
        padding: 0 16px 22px;
    }

    .faq-sidebar {
        padding: 22px;
    }
}
/* =========================================================
   BFOA GLOBAL — SERVICES PAGE
   ========================================================= */

.services-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.services-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.services-hero::before {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -270px;
    top: -210px;

    border: 1px solid rgba(114,212,245,.20);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.018);
}

.services-hero::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: 160px;
    bottom: -240px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.services-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.services-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.services-hero h1 span {
    display: block;
    color: #68d7f5;
}

.services-hero p {
    max-width: 730px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.85;
}

.services-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.services-intro {
    background: #ffffff;
}

.services-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.services-intro h2 {
    max-width: 700px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   DIRECTORY
   ========================================================= */

.services-directory {
    background: #f5f8fb;
}

.services-heading-text {
    max-width: 410px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.service-directory-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.service-directory-card {
    position: relative;

    min-height: 350px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.service-directory-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.service-directory-card.service-featured {
    background: #061d34;

    border-color: #061d34;
}

.service-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.service-card-top span {
    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.service-card-top small {
    color: #8095a6;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.service-featured .service-card-top small {
    color: #7195aa;
}

.service-card-body {
    margin-top: auto;
    margin-bottom: 35px;
}

.service-card-body h3 {
    margin: 0 0 13px;

    color: #071a32;

    font-size: 20px;
    line-height: 1.3;
}

.service-featured .service-card-body h3 {
    color: #ffffff;
}

.service-card-body p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}

.service-featured .service-card-body p {
    color: #8faabd;
}

.service-card-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid #e2eaf0;
}

.service-featured .service-card-bottom {
    border-color: rgba(255,255,255,.12);
}

.service-card-bottom span {
    color: #079ed9;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .5px;
}

.service-card-bottom b {
    color: #079ed9;

    font-size: 18px;

    transition: .2s ease;
}

.service-directory-card:hover .service-card-bottom b {
    transform: translateX(5px);
}


/* =========================================================
   ECOSYSTEM
   ========================================================= */

.services-ecosystem {
    background: #041a30;
}

.services-ecosystem-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.ecosystem-copy h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.ecosystem-copy p {
    max-width: 600px;

    margin: 0 0 30px;

    color: #91aabb;

    font-size: 14px;
    line-height: 1.9;
}


/* Ecosystem visual */

.ecosystem-map {
    position: relative;

    width: 100%;
    min-height: 500px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        radial-gradient(
            circle at center,
            rgba(28,177,224,.08),
            transparent 55%
        );

    overflow: hidden;
}

.ecosystem-map::before,
.ecosystem-map::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(114,212,245,.12);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.ecosystem-map::before {
    width: 250px;
    height: 250px;
}

.ecosystem-map::after {
    width: 390px;
    height: 390px;
}

.ecosystem-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 120px;
    height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: #07263f;

    border: 1px solid rgba(114,212,245,.35);

    border-radius: 50%;

    z-index: 5;

    box-shadow: 0 0 50px rgba(31,184,231,.10);
}

.ecosystem-center strong {
    color: #ffffff;

    font-size: 22px;
    letter-spacing: 2px;
}

.ecosystem-center span {
    margin-top: 3px;

    color: #65d5f6;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 3px;
}

.ecosystem-node {
    position: absolute;

    width: 110px;

    padding: 13px 8px;

    text-align: center;

    background: rgba(5,29,48,.92);

    border: 1px solid rgba(114,212,245,.18);

    z-index: 4;
}

.ecosystem-node strong {
    display: block;

    color: #ffffff;

    font-size: 9px;
    letter-spacing: 1px;
}

.ecosystem-node span {
    display: block;

    margin-top: 5px;

    color: #718fa2;

    font-size: 8px;
}

.node-one {
    left: 50%;
    top: 38px;
    transform: translateX(-50%);
}

.node-two {
    right: 45px;
    top: 130px;
}

.node-three {
    right: 55px;
    bottom: 70px;
}

.node-four {
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
}

.node-five {
    left: 45px;
    bottom: 70px;
}

.node-six {
    left: 45px;
    top: 130px;
}


/* =========================================================
   CLIENTS
   ========================================================= */

.services-clients {
    background: #ffffff;
}

.services-client-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.services-client-card {
    min-height: 240px;

    padding: 30px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.services-client-card:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow: 0 18px 40px rgba(3,27,50,.07);
}

.services-client-card > span {
    display: block;

    margin-bottom: 50px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.services-client-card h3 {
    margin: 0 0 12px;

    font-size: 19px;
}

.services-client-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   DIGITAL
   ========================================================= */

.services-digital {
    background: #f5f8fb;
}

.services-digital-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.services-digital-card {
    min-height: 285px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.services-digital-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.services-digital-card > span {
    width: 48px;
    height: 48px;

    margin-bottom: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #12a8e8;

    background: #e5f7fd;

    border: 1px solid #c8edf7;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.services-digital-card small {
    color: #12a8e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.services-digital-card h3 {
    margin: 9px 0 10px;

    color: #071a32;

    font-size: 20px;
}

.services-digital-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}

.services-digital-card b {
    margin-top: auto;
    padding-top: 25px;

    color: #079ed9;

    font-size: 11px;
}


/* =========================================================
   CTA
   ========================================================= */

.services-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.services-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.services-cta h2 {
    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.08;
}

.services-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}

.services-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1150px) {

    .service-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-ecosystem-grid {
        gap: 50px;
    }
}


@media (max-width: 900px) {

    .services-intro-grid,
    .services-ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .services-digital-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .services-hero {
        min-height: 520px;
    }

    .services-hero h1 {
        letter-spacing: -1.5px;
    }

    .services-intro-grid {
        gap: 35px;
    }

    .service-directory-grid,
    .services-client-grid,
    .services-digital-grid {
        grid-template-columns: 1fr;
    }

    .service-directory-card,
    .services-client-card,
    .services-digital-card {
        min-height: auto;
    }

    .ecosystem-map {
        min-height: 430px;
    }

    .node-two,
    .node-three {
        right: 15px;
    }

    .node-five,
    .node-six {
        left: 15px;
    }
}
/* =========================================================
   BFOA GLOBAL — CREW RECRUITMENT PAGE
   ========================================================= */

.crew-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.crew-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.crew-hero::before {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -270px;
    top: -210px;

    border: 1px solid rgba(114,212,245,.20);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.018);
}

.crew-hero::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: 120px;
    bottom: -260px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.crew-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.crew-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.crew-hero h1 span {
    display: block;
    color: #68d7f5;
}

.crew-hero p {
    max-width: 740px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.85;
}

.crew-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.crew-intro {
    background: #ffffff;
}

.crew-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.crew-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.crew-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   CREW SERVICES
   ========================================================= */

.crew-services {
    background: #f5f8fb;
}

.crew-heading-description {
    max-width: 410px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.crew-service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.crew-service-card {
    min-height: 275px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.crew-service-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.crew-service-card > span {
    display: block;

    margin-bottom: 50px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.crew-service-card h3 {
    margin: 0 0 12px;

    font-size: 20px;
}

.crew-service-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   RANKS
   ========================================================= */

.crew-ranks {
    background: #ffffff;
}

.crew-rank-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.crew-rank-card {
    padding: 35px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.crew-rank-card:hover {
    background: #ffffff;

    border-color: #8edcf1;

    box-shadow: 0 18px 40px rgba(3,27,50,.07);
}

.crew-rank-card small {
    color: #12a8e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.crew-rank-card h3 {
    margin: 12px 0;

    font-size: 24px;
}

.crew-rank-card p {
    max-width: 600px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.rank-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 25px;
}

.rank-tags span {
    padding: 7px 10px;

    color: #496274;

    background: #ffffff;

    border: 1px solid #dce7ed;

    font-size: 10px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.crew-process {
    background: #f5f8fb;
}

.crew-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #d9e4eb;

    border: 1px solid #d9e4eb;
}

.crew-process-step {
    min-height: 220px;

    padding: 30px;

    background: #ffffff;
}

.crew-process-step > span {
    display: block;

    margin-bottom: 45px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.crew-process-step h3 {
    margin: 0 0 10px;

    font-size: 18px;
}

.crew-process-step p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   DIGITAL
   ========================================================= */

.crew-digital {
    background: #041a30;
}

.crew-digital-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.crew-digital-copy h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.crew-digital-copy p {
    max-width: 600px;

    margin: 0 0 30px;

    color: #91aabb;

    font-size: 14px;
    line-height: 1.9;
}


/* DIGITAL PANEL */

.crew-digital-panel {
    position: relative;

    min-height: 500px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        radial-gradient(
            circle at center,
            rgba(31,184,231,.08),
            transparent 55%
        );
}

.crew-digital-line {
    position: absolute;

    width: 1px;
    height: 320px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        linear-gradient(
            transparent,
            rgba(114,212,245,.4),
            transparent
        );
}

.crew-digital-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: #07263f;

    border: 1px solid rgba(114,212,245,.35);

    border-radius: 50%;

    z-index: 3;
}

.crew-digital-center strong {
    color: #ffffff;

    font-size: 22px;
    letter-spacing: 2px;
}

.crew-digital-center small {
    margin-top: 3px;

    color: #65d5f6;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 3px;
}

.crew-digital-node {
    position: absolute;

    width: 190px;

    padding: 15px 18px;

    background: rgba(5,29,48,.95);

    border: 1px solid rgba(114,212,245,.16);

    z-index: 4;
}

.crew-digital-node strong {
    display: block;

    color: #ffffff;

    font-size: 10px;
    letter-spacing: 1px;
}

.crew-digital-node span {
    display: block;

    margin-top: 5px;

    color: #7791a2;

    font-size: 9px;
}

.node-top {
    left: 50%;
    top: 45px;

    transform: translateX(-50%);
}

.node-middle {
    right: 25px;
    top: 50%;

    transform: translateY(-50%);
}

.node-bottom {
    left: 50%;
    bottom: 45px;

    transform: translateX(-50%);
}


/* =========================================================
   REQUIREMENTS
   ========================================================= */

.crew-requirements {
    background: #ffffff;
}

.crew-requirements-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.crew-requirements-grid h2 {
    max-width: 620px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.crew-requirements-grid > div:first-child p {
    max-width: 600px;

    margin: 0;

    color: #718598;

    font-size: 14px;
    line-height: 1.9;
}

.crew-check-list {
    border-top: 1px solid #d9e4eb;
}

.crew-check-list > div {
    min-height: 65px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-bottom: 1px solid #d9e4eb;
}

.crew-check-list span {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #12a8e8;

    background: #e9f8fd;

    border: 1px solid #c6edf7;
    border-radius: 50%;

    font-size: 12px;
}

.crew-check-list strong {
    color: #263e50;

    font-size: 12px;
}


/* =========================================================
   CTA
   ========================================================= */

.crew-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.crew-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.crew-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.08;
}

.crew-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}

.crew-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .crew-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crew-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crew-digital-grid,
    .crew-requirements-grid {
        gap: 55px;
    }
}


@media (max-width: 850px) {

    .crew-intro-grid,
    .crew-digital-grid,
    .crew-requirements-grid {
        grid-template-columns: 1fr;
    }

    .crew-digital-panel {
        max-width: 650px;
    }

    .crew-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .crew-hero {
        min-height: 520px;
    }

    .crew-hero h1 {
        letter-spacing: -1.5px;
    }

    .crew-service-grid,
    .crew-rank-grid,
    .crew-process-grid {
        grid-template-columns: 1fr;
    }

    .crew-service-card,
    .crew-rank-card,
    .crew-process-step {
        min-height: auto;
    }

    .crew-digital-panel {
        min-height: 430px;
    }

    .crew-digital-node {
        width: 155px;
    }

    .node-middle {
        right: 10px;
    }
}
/* =========================================================
   BFOA GLOBAL — MARITIME TRAINING PAGE
   ========================================================= */

.training-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.training-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.training-hero::before {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -270px;
    top: -210px;

    border: 1px solid rgba(114,212,245,.20);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.018);
}

.training-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: 130px;
    bottom: -250px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.training-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.training-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.training-hero h1 span {
    display: block;
    color: #68d7f5;
}

.training-hero p {
    max-width: 740px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.85;
}

.training-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.training-intro {
    background: #ffffff;
}

.training-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.training-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.training-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   TRAINING AREAS
   ========================================================= */

.training-areas {
    background: #f5f8fb;
}

.training-heading-description {
    max-width: 420px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.training-area-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.training-area-card {
    min-height: 300px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.training-area-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.training-area-card > span {
    margin-bottom: 10px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.training-area-card small {
    color: #8095a6;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.training-area-card h3 {
    margin: 12px 0;

    color: #071a32;

    font-size: 21px;
}

.training-area-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}

.training-area-card a {
    margin-top: auto;
    padding-top: 25px;

    color: #079ed9;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   COURSE DIRECTORY
   ========================================================= */

.training-courses {
    background: #ffffff;
}

.training-course-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.training-course-card {
    min-height: 260px;

    padding: 30px;

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.training-course-card:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow: 0 18px 40px rgba(3,27,50,.07);
}

.course-number {
    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.training-course-card small {
    color: #12a8e8;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.training-course-card h3 {
    margin: 10px 0 12px;

    color: #071a32;

    font-size: 20px;
    line-height: 1.3;
}

.training-course-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}

.training-course-card b {
    grid-column: 2;

    align-self: end;

    color: #079ed9;

    font-size: 11px;
}


/* =========================================================
   APPROACH
   ========================================================= */

.training-approach {
    background: #041a30;
}

.training-approach-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.training-approach-copy h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.training-approach-copy p {
    max-width: 620px;

    color: #91aabb;

    font-size: 14px;
    line-height: 1.9;
}

.training-approach-list {
    border-top: 1px solid rgba(255,255,255,.10);
}

.training-approach-item {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 24px 0;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.training-approach-item > span {
    color: #5ed4f5;

    font-size: 10px;
    font-weight: 900;
}

.training-approach-item strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
}

.training-approach-item small {
    display: block;

    margin-top: 5px;

    color: #7894a6;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.training-process {
    background: #f5f8fb;
}

.training-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #d9e4eb;

    border: 1px solid #d9e4eb;
}

.training-process-step {
    min-height: 220px;

    padding: 30px;

    background: #ffffff;
}

.training-process-step > span {
    display: block;

    margin-bottom: 45px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.training-process-step h3 {
    margin: 0 0 10px;

    font-size: 18px;
}

.training-process-step p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   DIGITAL
   ========================================================= */

.training-digital {
    background: #ffffff;
}

.training-digital-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.training-digital-grid h2 {
    max-width: 650px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.training-digital-grid > div:first-child p {
    max-width: 600px;

    color: #718598;

    font-size: 14px;
    line-height: 1.9;
}

.training-digital-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 30px;
}

.training-digital-card {
    min-height: 330px;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #061d34,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);

    box-shadow: 0 25px 60px rgba(3,27,50,.14);
}

.training-digital-card-head {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.training-digital-card-head span {
    color: #ffffff;

    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.training-digital-card-head small {
    color: #63d4f4;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.training-digital-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 80px;
}

.training-digital-stats div {
    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.10);
}

.training-digital-stats strong {
    display: block;

    color: #ffffff;

    font-size: 10px;
    letter-spacing: 1px;
}

.training-digital-stats span {
    display: block;

    margin-top: 7px;

    color: #7795a8;

    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   NOTE
   ========================================================= */

.training-note {
    background: #f5f8fb;
}

.training-note-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.training-note-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #12a8e8;

    background: #e5f7fd;

    border: 1px solid #c8edf7;
    border-radius: 50%;

    font-size: 13px;
    font-weight: 900;
}

.training-note-box h3 {
    margin: 10px 0;

    font-size: 19px;
}

.training-note-box p {
    max-width: 850px;

    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.training-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.training-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.training-cta h2 {
    max-width: 700px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.08;
}

.training-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}

.training-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .training-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-approach-grid,
    .training-digital-grid {
        gap: 55px;
    }
}


@media (max-width: 850px) {

    .training-intro-grid,
    .training-approach-grid,
    .training-digital-grid {
        grid-template-columns: 1fr;
    }

    .training-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .training-hero {
        min-height: 520px;
    }

    .training-hero h1 {
        letter-spacing: -1.5px;
    }

    .training-area-grid,
    .training-course-grid,
    .training-process-grid {
        grid-template-columns: 1fr;
    }

    .training-course-card {
        grid-template-columns: 40px 1fr;
    }

    .training-digital-stats {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .training-note-box {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   BFOA GLOBAL — COURSES PAGE
   ========================================================= */

.courses-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.courses-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.courses-hero::before {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -270px;
    top: -210px;

    border: 1px solid rgba(114,212,245,.20);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.018);
}

.courses-hero::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: 120px;
    bottom: -260px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.courses-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.courses-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.courses-hero h1 span {
    display: block;
    color: #68d7f5;
}

.courses-hero p {
    max-width: 740px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.85;
}

.courses-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.courses-intro {
    background: #ffffff;
}

.courses-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.courses-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.courses-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.course-categories {
    background: #f5f8fb;
}

.courses-heading-description {
    max-width: 420px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.course-category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.course-category-card {
    min-height: 290px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.course-category-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.course-category-card > span {
    margin-bottom: 10px;

    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.course-category-card small {
    color: #8195a5;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.course-category-card h3 {
    margin: 12px 0;

    color: #071a32;

    font-size: 21px;
}

.course-category-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}

.course-category-card b {
    margin-top: auto;
    padding-top: 25px;

    color: #079ed9;

    font-size: 11px;
}


/* =========================================================
   COURSE LIST
   ========================================================= */

.course-list-section {
    background: #ffffff;
}

.course-list-dark {
    background: #041a30;
}

.course-list-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 40px;
}

.course-list-header h2 {
    margin: 15px 0 0;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.course-list-dark .course-list-header h2 {
    color: #ffffff;
}

.course-section-number {
    color: #12a8e8;

    font-size: 11px;
    font-weight: 900;
}

.course-list-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.course-item-card {
    min-height: 310px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.course-list-dark .course-item-card {
    background: #07233a;

    border-color: rgba(255,255,255,.10);
}

.course-item-number {
    margin-bottom: 50px;

    color: #12a8e8;

    font-size: 10px;
    font-weight: 900;
}

.course-item-content small {
    color: #12a8e8;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.course-item-content h3 {
    margin: 10px 0 12px;

    color: #071a32;

    font-size: 19px;
    line-height: 1.35;
}

.course-list-dark .course-item-content h3 {
    color: #ffffff;
}

.course-item-content p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}

.course-list-dark .course-item-content p {
    color: #8aa2b2;
}

.course-item-card > a {
    margin-top: auto;
    padding-top: 25px;

    color: #079ed9;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   MINI COURSES
   ========================================================= */

.course-mini-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.course-mini-card {
    min-height: 250px;

    padding: 28px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.course-mini-card:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow: 0 18px 40px rgba(3,27,50,.07);
}

.course-mini-card > span {
    display: block;

    margin-bottom: 45px;

    color: #12a8e8;

    font-size: 10px;
    font-weight: 900;
}

.course-mini-card h3 {
    margin: 0 0 12px;

    color: #071a32;

    font-size: 18px;
    line-height: 1.35;
}

.course-mini-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   INSTITUTIONAL PARTNERSHIP
   ========================================================= */

.course-partnership {
    background: #f5f8fb;
}

.course-partnership-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.course-partnership-grid h2 {
    max-width: 650px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.course-partnership-grid > div:first-child p {
    max-width: 620px;

    margin: 0 0 18px;

    color: #718598;

    font-size: 13px;
    line-height: 1.9;
}

.partnership-panel {
    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #061d34,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);

    box-shadow: 0 25px 60px rgba(3,27,50,.12);
}

.partnership-panel-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.partnership-panel-top span {
    color: #ffffff;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
}

.partnership-panel-top small {
    color: #62d5f5;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.partnership-flow {
    min-height: 180px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.partnership-flow > div {
    flex: 1;

    padding: 20px 10px;

    text-align: center;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);
}

.partnership-flow strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}

.partnership-flow span {
    display: block;

    margin-top: 7px;

    color: #7896a8;

    font-size: 9px;
}

.partnership-flow > b {
    color: #62d5f5;

    font-size: 20px;
}

.partnership-note {
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #8aa5b6;

    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   COMPLIANCE
   ========================================================= */

.course-compliance {
    background: #041a30;
}

.course-compliance-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.course-compliance-grid h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.course-compliance-grid > div:first-child p {
    max-width: 600px;

    color: #91aabb;

    font-size: 14px;
    line-height: 1.9;
}

.compliance-points {
    border-top: 1px solid rgba(255,255,255,.10);
}

.compliance-points > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.compliance-points > div > span {
    color: #5ed4f5;

    font-size: 10px;
    font-weight: 900;
}

.compliance-points strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
}

.compliance-points small {
    display: block;

    margin-top: 5px;

    color: #7793a5;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   ENQUIRY
   ========================================================= */

.course-enquiry {
    background: #ffffff;
}

.course-enquiry-box {
    padding: 45px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.course-enquiry-box h2 {
    max-width: 650px;

    margin: 12px 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.course-enquiry-box p {
    max-width: 650px;

    margin: 0;

    color: #718598;

    font-size: 13px;
    line-height: 1.8;
}

.course-enquiry-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}

.hero-btn-dark {
    color: #ffffff !important;

    background: #071a32 !important;

    border: 1px solid #071a32 !important;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.course-disclaimer {
    background: #f5f8fb;
}

.course-disclaimer-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.course-disclaimer-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #12a8e8;

    background: #e5f7fd;

    border: 1px solid #c8edf7;
    border-radius: 50%;

    font-size: 13px;
    font-weight: 900;
}

.course-disclaimer-box h3 {
    margin: 10px 0;

    font-size: 19px;
}

.course-disclaimer-box p {
    max-width: 900px;

    margin: 0;

    color: #718598;

    font-size: 12px;
    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.courses-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.courses-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.courses-cta h2 {
    max-width: 700px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.08;
}

.courses-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}

.courses-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .course-category-grid,
    .course-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 850px) {

    .courses-intro-grid,
    .course-partnership-grid,
    .course-compliance-grid {
        grid-template-columns: 1fr;
    }

    .course-enquiry-box,
    .courses-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .courses-hero {
        min-height: 520px;
    }

    .courses-hero h1 {
        letter-spacing: -1.5px;
    }

    .course-category-grid,
    .course-list-grid,
    .course-mini-grid {
        grid-template-columns: 1fr;
    }

    .course-item-card,
    .course-mini-card,
    .course-category-card {
        min-height: auto;
    }

    .course-partnership-grid {
        gap: 40px;
    }

    .partnership-flow {
        flex-direction: column;
    }

    .partnership-flow > div {
        width: 100%;
    }

    .course-disclaimer-box {
        grid-template-columns: 1fr;
    }

    .course-enquiry-box {
        padding: 30px;
    }
}
/* =========================================================
   BFOA GLOBAL — FLEET PAGE
   ========================================================= */

.fleet-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.fleet-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.fleet-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .15;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            #000 45%,
            transparent
        );
}

.fleet-hero-ring {
    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -200px;

    border: 1px solid rgba(114,212,245,.20);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.018);
}

.fleet-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.fleet-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;

    letter-spacing: -3px;
}

.fleet-hero h1 span {
    display: block;

    color: #68d7f5;
}

.fleet-hero p {
    max-width: 750px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;
    line-height: 1.85;
}

.fleet-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.fleet-intro {
    background: #ffffff;
}

.fleet-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.fleet-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.fleet-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   FLEET SERVICES
   ========================================================= */

.fleet-services {
    background: #f5f8fb;
}

.fleet-heading-description {
    max-width: 420px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.8;
}

.fleet-service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.fleet-service-card {
    min-height: 275px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.fleet-service-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.fleet-service-card > span {
    display: block;

    margin-bottom: 42px;

    color: #12a8e8;

    font-size: 11px;

    font-weight: 900;
}

.fleet-service-card small {
    color: #8095a6;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.fleet-service-card h3 {
    margin: 10px 0 12px;

    font-size: 20px;
}

.fleet-service-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   VESSEL TYPES
   ========================================================= */

.vessel-types {
    background: #ffffff;
}

.vessel-type-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.vessel-type-card {
    position: relative;

    min-height: 280px;

    padding: 30px;

    overflow: hidden;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.vessel-type-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.07);
}

.vessel-type-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -80px;
    bottom: -80px;

    border: 1px solid rgba(18,168,232,.10);

    border-radius: 50%;
}

.vessel-type-number {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.vessel-icon {
    margin-top: 35px;

    color: #0da5dc;

    font-size: 25px;
}

.vessel-type-card h3 {
    margin: 15px 0 12px;

    font-size: 20px;
}

.vessel-type-card p {
    max-width: 420px;

    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FLEET DIRECTORY
   ========================================================= */

.fleet-directory {
    background: #f5f8fb;
}

.fleet-directory-box {
    display: grid;

    grid-template-columns: 1fr 330px;

    gap: 70px;

    align-items: center;

    padding: 55px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.fleet-directory-box h2 {
    max-width: 700px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.fleet-directory-box p {
    max-width: 650px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.fleet-status {
    min-height: 260px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #061d34,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);
}

.fleet-status-circle {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border: 1px solid rgba(104,215,245,.35);

    border-radius: 50%;
}

.fleet-status-circle span {
    width: 10px;
    height: 10px;

    display: block;

    background: #61d5f5;

    border-radius: 50%;

    box-shadow:
        0 0 0 8px rgba(97,213,245,.08);
}

.fleet-status strong {
    color: #ffffff;

    font-size: 11px;

    letter-spacing: 2px;
}

.fleet-status small {
    margin-top: 7px;

    color: #7896a8;

    font-size: 8px;

    letter-spacing: 1px;
}

.fleet-status em {
    margin-top: 20px;

    padding: 8px 13px;

    color: #61d5f5;

    background: rgba(97,213,245,.07);

    border: 1px solid rgba(97,213,245,.16);

    font-size: 9px;

    font-style: normal;

    font-weight: 800;
}


/* =========================================================
   DIGITAL SYSTEM
   ========================================================= */

.fleet-system {
    background: #041a30;
}

.fleet-system-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.fleet-system-grid h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.fleet-system-grid > div:first-child p {
    max-width: 620px;

    margin: 0 0 30px;

    color: #91aabb;

    font-size: 14px;

    line-height: 1.9;
}

.fleet-system-panel {
    position: relative;

    min-height: 500px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        radial-gradient(
            circle at center,
            rgba(31,184,231,.08),
            transparent 55%
        );
}

.system-top-line {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.system-top-line span {
    color: #ffffff;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;
}

.system-top-line small {
    color: #61d5f5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.system-center {
    position: absolute;

    left: 50%;
    top: 52%;

    width: 140px;
    height: 140px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(97,213,245,.35);

    border-radius: 50%;
}

.system-core {
    width: 105px;
    height: 105px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #07263f;

    border-radius: 50%;
}

.system-core strong {
    color: #ffffff;

    font-size: 16px;

    letter-spacing: 1px;
}

.system-core span {
    margin-top: 4px;

    color: #61d5f5;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 2px;
}

.system-node {
    position: absolute;

    width: 125px;

    padding: 13px;

    background: rgba(5,29,48,.95);

    border: 1px solid rgba(114,212,245,.14);
}

.system-node strong {
    display: block;

    color: #ffffff;

    font-size: 9px;

    letter-spacing: 1px;
}

.system-node span {
    display: block;

    margin-top: 5px;

    color: #7794a6;

    font-size: 8px;
}

.node-crew {
    left: 30px;
    top: 130px;
}

.node-docs {
    right: 30px;
    top: 130px;
}

.node-port {
    left: 30px;
    bottom: 70px;
}

.node-flag {
    right: 30px;
    bottom: 70px;
}


/* =========================================================
   FLOW
   ========================================================= */

.fleet-flow {
    background: #f5f8fb;
}

.fleet-flow-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #d9e4eb;

    border: 1px solid #d9e4eb;
}

.fleet-flow-step {
    min-height: 215px;

    padding: 30px;

    background: #ffffff;
}

.fleet-flow-step > span {
    display: block;

    margin-bottom: 40px;

    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.fleet-flow-step h3 {
    margin: 0 0 10px;

    font-size: 18px;
}

.fleet-flow-step p {
    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.fleet-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.fleet-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.fleet-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.fleet-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}

.fleet-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .fleet-service-grid,
    .vessel-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-system-grid {
        gap: 55px;
    }
}


@media (max-width: 850px) {

    .fleet-intro-grid,
    .fleet-system-grid {
        grid-template-columns: 1fr;
    }

    .fleet-directory-box {
        grid-template-columns: 1fr;
    }

    .fleet-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .fleet-hero {
        min-height: 520px;
    }

    .fleet-hero h1 {
        letter-spacing: -1.5px;
    }

    .fleet-service-grid,
    .vessel-type-grid,
    .fleet-flow-grid {
        grid-template-columns: 1fr;
    }

    .fleet-directory-box {
        padding: 30px;
    }

    .fleet-system-panel {
        min-height: 430px;
    }

    .system-node {
        width: 105px;
    }

    .node-crew,
    .node-port {
        left: 12px;
    }

    .node-docs,
    .node-flag {
        right: 12px;
    }
}
/* =========================================================
   BFOA GLOBAL — VACANCIES PAGE
   ========================================================= */

.vacancies-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.vacancies-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.vacancies-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.vacancies-hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -280px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.vacancies-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.vacancies-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.vacancies-hero h1 span {
    display: block;

    color: #68d7f5;
}

.vacancies-hero p {
    max-width: 750px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;

    line-height: 1.85;
}

.vacancies-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.vacancies-intro {
    background: #ffffff;
}

.vacancies-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.vacancies-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.vacancies-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   CURRENT VACANCIES
   ========================================================= */

.vacancies-list {
    background: #f5f8fb;
}

.vacancy-live-status {
    display: flex;

    align-items: center;

    gap: 9px;

    padding-top: 10px;
}

.vacancy-live-status span {
    width: 8px;
    height: 8px;

    background: #23bd82;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(35,189,130,.08);
}

.vacancy-live-status strong {
    color: #5c7486;

    font-size: 9px;

    letter-spacing: 1.5px;
}

.vacancy-empty {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 25px;

    padding: 45px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.vacancy-empty-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #12a8e8;

    border: 1px solid #bfeaf6;

    border-radius: 50%;

    font-size: 25px;

    font-weight: 300;
}

.vacancy-empty h3 {
    margin: 10px 0 12px;

    font-size: 23px;
}

.vacancy-empty p {
    max-width: 720px;

    margin: 0 0 20px;

    color: #718598;

    font-size: 13px;

    line-height: 1.85;
}

.vacancy-template-info {
    margin-top: 15px;

    padding: 20px;

    background: #edf3f7;

    border: 1px dashed #c9d9e2;
}

.vacancy-template-label {
    margin-bottom: 12px;

    color: #8196a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.vacancy-template-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        1fr
        1.5fr
        .7fr;

    gap: 10px;
}

.vacancy-template-grid span {
    padding: 10px;

    color: #6d8394;

    background: #ffffff;

    border: 1px solid #dbe6ec;

    font-size: 9px;
}


/* =========================================================
   RANK CATEGORIES
   ========================================================= */

.vacancy-ranks {
    background: #ffffff;
}

.vacancy-rank-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.vacancy-rank-card {
    min-height: 290px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.vacancy-rank-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow: 0 20px 45px rgba(3,27,50,.08);
}

.vacancy-rank-card > span {
    margin-bottom: 10px;

    color: #12a8e8;

    font-size: 11px;

    font-weight: 900;
}

.vacancy-rank-card small {
    color: #8195a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.vacancy-rank-card h3 {
    margin: 12px 0;

    color: #071a32;

    font-size: 20px;
}

.vacancy-rank-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.8;
}

.vacancy-rank-card b {
    margin-top: auto;

    padding-top: 25px;

    color: #079ed9;

    font-size: 11px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.vacancy-process {
    background: #f5f8fb;
}

.vacancy-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #d9e4eb;

    border: 1px solid #d9e4eb;
}

.vacancy-process-step {
    min-height: 220px;

    padding: 30px;

    background: #ffffff;
}

.vacancy-process-step > span {
    display: block;

    margin-bottom: 45px;

    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.vacancy-process-step h3 {
    margin: 0 0 10px;

    font-size: 18px;
}

.vacancy-process-step p {
    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   DOCUMENTS
   ========================================================= */

.vacancy-documents {
    background: #ffffff;
}

.vacancy-documents-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.vacancy-documents-grid h2 {
    max-width: 650px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.vacancy-documents-grid > div:first-child p {
    max-width: 600px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.vacancy-document-list {
    border-top: 1px solid #d9e4eb;
}

.vacancy-document-list > div {
    min-height: 62px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-bottom: 1px solid #d9e4eb;
}

.vacancy-document-list span {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #12a8e8;

    background: #e8f8fd;

    border: 1px solid #c8edf7;

    border-radius: 50%;

    font-size: 11px;
}

.vacancy-document-list strong {
    color: #263e50;

    font-size: 12px;
}


/* =========================================================
   DIGITAL RECRUITMENT
   ========================================================= */

.vacancy-digital {
    background: #041a30;
}

.vacancy-digital-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.vacancy-digital-grid h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.vacancy-digital-grid > div:first-child p {
    max-width: 620px;

    margin: 0 0 30px;

    color: #91aabb;

    font-size: 14px;

    line-height: 1.9;
}

.vacancy-digital-panel {
    min-height: 390px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #061e35,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);
}

.digital-profile-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.digital-profile-header span {
    color: #ffffff;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 2px;
}

.digital-profile-header small {
    color: #61d5f5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.digital-profile-body {
    padding: 55px 0 35px;
}

.profile-line {
    height: 9px;

    margin-bottom: 12px;

    background: rgba(255,255,255,.08);

    border-radius: 2px;
}

.profile-line.wide {
    width: 80%;
}

.profile-line.medium {
    width: 60%;
}

.profile-line.short {
    width: 38%;
}

.digital-profile-tags {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.digital-profile-tags span {
    padding: 13px;

    color: #8aa7b8;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);

    font-size: 8px;

    letter-spacing: 1px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.vacancy-notice {
    background: #f5f8fb;
}

.vacancy-notice-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.vacancy-notice-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e4a300;

    background: #fff7df;

    border: 1px solid #f1dfaa;

    border-radius: 50%;

    font-size: 14px;

    font-weight: 900;
}

.vacancy-notice-box h3 {
    margin: 10px 0;

    font-size: 19px;
}

.vacancy-notice-box p {
    max-width: 900px;

    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.vacancy-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.vacancy-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.vacancy-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.vacancy-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}

.vacancy-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .vacancy-rank-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {

    .vacancies-intro-grid,
    .vacancy-documents-grid,
    .vacancy-digital-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vacancy-digital-grid {
        gap: 55px;
    }

    .vacancy-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .vacancies-hero {
        min-height: 520px;
    }

    .vacancies-hero h1 {
        letter-spacing: -1.5px;
    }

    .vacancy-rank-grid,
    .vacancy-process-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-empty,
    .vacancy-notice-box {
        grid-template-columns: 1fr;

        padding: 30px;
    }

    .vacancy-template-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vacancy-digital-panel {
        min-height: 330px;
    }

    .digital-profile-tags {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   BFOA GLOBAL — APPLY ONLINE
   ========================================================= */

.apply-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.apply-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.apply-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.apply-hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.apply-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.apply-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.apply-hero h1 span {
    display: block;

    color: #68d7f5;
}

.apply-hero p {
    max-width: 740px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;

    line-height: 1.85;
}

.apply-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.apply-intro {
    background: #ffffff;
}

.apply-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.apply-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.apply-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   APPLICATION AREA
   ========================================================= */

.application-section {
    background: #f5f8fb;
}

.application-layout {
    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 20px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.application-sidebar {
    position: sticky;

    top: 110px;

    padding: 25px;

    background: #041a30;

    border: 1px solid rgba(255,255,255,.08);
}

.application-sidebar-title {
    padding-bottom: 20px;

    color: #61d5f5;

    border-bottom: 1px solid rgba(255,255,255,.10);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.application-step {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 10px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);

    opacity: .55;
}

.application-step.active {
    opacity: 1;
}

.application-step > span {
    color: #61d5f5;

    font-size: 9px;

    font-weight: 900;
}

.application-step strong {
    display: block;

    color: #ffffff;

    font-size: 11px;
}

.application-step small {
    display: block;

    margin-top: 4px;

    color: #7896a8;

    font-size: 8px;
}

.application-security {
    display: grid;

    grid-template-columns: 30px 1fr;

    gap: 10px;

    margin-top: 22px;

    padding: 15px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);
}

.application-security > span {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #61d5f5;

    background: rgba(97,213,245,.08);

    border-radius: 50%;

    font-size: 10px;
}

.application-security strong {
    display: block;

    color: #ffffff;

    font-size: 9px;
}

.application-security small {
    display: block;

    margin-top: 4px;

    color: #7896a8;

    font-size: 7px;

    line-height: 1.5;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.application-card {
    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.form-section {
    padding: 40px;

    border-bottom: 1px solid #dfe8ee;
}

.form-section:last-child {
    border-bottom: 0;
}

.form-section-heading {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.form-section-heading span {
    color: #12a8e8;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.form-section-heading h3 {
    margin: 9px 0 8px;

    font-size: 24px;
}

.form-section-heading p {
    margin: 0;

    color: #718598;

    font-size: 11px;

    line-height: 1.7;
}

.form-section-heading > b {
    color: #dbe5eb;

    font-size: 30px;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-field {
    display: flex;

    flex-direction: column;
}

.form-field-full {
    margin-top: 18px;
}

.form-field label {
    margin-bottom: 8px;

    color: #334b5d;

    font-size: 10px;

    font-weight: 800;
}

.form-field label em {
    color: #0aa6df;

    font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 13px 14px;

    color: #102c40;

    background: #f7fafc;

    border: 1px solid #d7e3e9;

    border-radius: 0;

    outline: none;

    font-family: inherit;

    font-size: 12px;

    transition: .2s ease;

    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: #ffffff;

    border-color: #68cce9;

    box-shadow:
        0 0 0 3px rgba(104,204,233,.08);
}

.form-field textarea {
    min-height: 130px;

    resize: vertical;

    line-height: 1.7;
}


/* =========================================================
   DOCUMENT UPLOADS
   ========================================================= */

.document-upload-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.document-upload {
    position: relative;
}

.document-upload label {
    min-height: 150px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #f7fafc;

    border: 1px dashed #cbdbe3;

    cursor: pointer;

    transition: .2s ease;
}

.document-upload label:hover {
    background: #ffffff;

    border-color: #68cce9;
}

.document-upload label > span {
    margin-bottom: 22px;

    color: #12a8e8;

    font-size: 9px;

    font-weight: 900;
}

.document-upload label strong {
    color: #263e50;

    font-size: 13px;
}

.document-upload label small {
    margin-top: 5px;

    color: #8498a7;

    font-size: 9px;
}

.document-upload input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}


/* =========================================================
   CONSENT
   ========================================================= */

.application-consent {
    position: relative;

    display: grid;

    grid-template-columns: 20px 1fr;

    gap: 12px;

    margin-bottom: 18px;

    cursor: pointer;
}

.application-consent input {
    position: absolute;

    opacity: 0;
}

.application-consent > span {
    width: 18px;
    height: 18px;

    margin-top: 1px;

    background: #f7fafc;

    border: 1px solid #cbdbe3;
}

.application-consent input:checked + span {
    background: #0aa6df;

    border-color: #0aa6df;
}

.application-consent p {
    margin: 0;

    color: #687e90;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.application-submit {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid #dfe8ee;
}

.application-submit-btn {
    padding: 15px 22px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    color: #ffffff;

    background: #071a32;

    border: 1px solid #071a32;

    cursor: pointer;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    transition: .2s ease;
}

.application-submit-btn:hover {
    background: #0aa6df;

    border-color: #0aa6df;
}

.application-submit-btn span {
    font-size: 16px;
}

.application-submit small {
    color: #8396a4;

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   NOTICE
   ========================================================= */

.apply-notice {
    background: #ffffff;
}

.apply-notice-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.apply-notice-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e4a300;

    background: #fff7df;

    border: 1px solid #f1dfaa;

    border-radius: 50%;

    font-size: 14px;

    font-weight: 900;
}

.apply-notice-box h3 {
    margin: 10px 0;

    font-size: 19px;
}

.apply-notice-box p {
    max-width: 900px;

    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.apply-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.apply-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.apply-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.apply-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .application-layout {
        grid-template-columns: 1fr;
    }

    .application-sidebar {
        position: static;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 0 15px;
    }

    .application-sidebar-title,
    .application-security {
        grid-column: 1 / -1;
    }

    .application-step {
        border-bottom: 0;
    }

    .apply-intro-grid {
        grid-template-columns: 1fr;
    }

    .apply-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .apply-hero {
        min-height: 520px;
    }

    .apply-hero h1 {
        letter-spacing: -1.5px;
    }

    .application-sidebar {
        display: block;
    }

    .application-step {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .form-section {
        padding: 25px;
    }

    .form-grid,
    .document-upload-grid {
        grid-template-columns: 1fr;
    }

    .form-section-heading {
        gap: 10px;
    }

    .form-section-heading > b {
        font-size: 22px;
    }

    .application-submit {
        align-items: flex-start;

        flex-direction: column;
    }

    .apply-notice-box {
        grid-template-columns: 1fr;

        padding: 28px;
    }
}
/* =========================================================
   BFOA GLOBAL — DOWNLOADS PAGE
   ========================================================= */

.downloads-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.downloads-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.downloads-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.downloads-hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.downloads-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.downloads-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.downloads-hero h1 span {
    display: block;

    color: #68d7f5;
}

.downloads-hero p {
    max-width: 740px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;

    line-height: 1.85;
}

.downloads-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.downloads-intro {
    background: #ffffff;
}

.downloads-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.downloads-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.downloads-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   DOCUMENT CENTRE
   ========================================================= */

.document-centre {
    background: #f5f8fb;
}

.document-status {
    display: flex;

    align-items: center;

    gap: 9px;

    padding-top: 10px;

    color: #718598;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.document-status span {
    width: 7px;
    height: 7px;

    background: #23bd82;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(35,189,130,.08);
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.download-category {
    margin-bottom: 15px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.download-category-header {
    padding: 25px 30px;

    border-bottom: 1px solid #dfe8ee;
}

.download-category-header > div {
    display: flex;

    align-items: center;

    gap: 20px;
}

.download-category-header > div > span {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.download-category-header small {
    color: #8195a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.download-category-header h3 {
    margin: 7px 0 0;

    font-size: 19px;
}


/* =========================================================
   DOWNLOAD ITEMS
   ========================================================= */

.download-list {
    display: flex;

    flex-direction: column;
}

.download-empty-item {
    min-height: 95px;

    padding: 18px 30px;

    display: grid;

    grid-template-columns: 55px 1fr auto;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid #edf2f5;
}

.download-empty-item:last-child {
    border-bottom: 0;
}

.download-file-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #12a8e8;

    background: #eaf8fc;

    border: 1px solid #c9edf7;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .5px;
}

.download-file-info strong {
    display: block;

    color: #263e50;

    font-size: 12px;
}

.download-file-info span {
    display: block;

    margin-top: 5px;

    color: #8396a5;

    font-size: 9px;

    line-height: 1.6;
}

.download-coming {
    padding: 7px 10px;

    color: #8a9ca8;

    background: #f4f7f9;

    border: 1px solid #e0e8ed;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

    white-space: nowrap;
}

.download-link {
    color: #079ed9;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;
}


/* =========================================================
   DOCUMENT SUBMISSION
   ========================================================= */

.document-submission {
    background: #ffffff;
}

.document-submission-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.document-submission-grid h2 {
    max-width: 650px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.document-submission-grid > div:first-child p {
    max-width: 600px;

    margin: 0 0 28px;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.document-request-panel {
    min-height: 330px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #061e35,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);
}

.document-request-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.document-request-top span {
    color: #ffffff;

    font-size: 16px;

    font-weight: 900;

    letter-spacing: 2px;
}

.document-request-top small {
    color: #61d5f5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.document-request-body {
    padding: 60px 0 45px;
}

.request-line {
    display: grid;

    grid-template-columns: 35% 55%;

    gap: 10px;

    margin-bottom: 15px;
}

.request-line.short {
    grid-template-columns: 22% 38%;
}

.request-line span {
    height: 9px;

    background: rgba(255,255,255,.08);

    border-radius: 2px;
}

.document-request-footer {
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #7896a8;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.downloads-notice {
    background: #f5f8fb;
}

.downloads-notice-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.downloads-notice-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #12a8e8;

    background: #e8f8fd;

    border: 1px solid #c8edf7;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 900;
}

.downloads-notice-box h3 {
    margin: 10px 0;

    font-size: 19px;
}

.downloads-notice-box p {
    max-width: 900px;

    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.downloads-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.downloads-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.downloads-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.downloads-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .downloads-intro-grid,
    .document-submission-grid {
        grid-template-columns: 1fr;
    }

    .downloads-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .downloads-hero {
        min-height: 520px;
    }

    .downloads-hero h1 {
        letter-spacing: -1.5px;
    }

    .download-empty-item {
        grid-template-columns: 45px 1fr;

        padding: 18px;
    }

    .download-coming,
    .download-link {
        grid-column: 2;
        justify-self: start;
    }

    .download-category-header {
        padding: 22px 18px;
    }

    .downloads-notice-box {
        grid-template-columns: 1fr;

        padding: 28px;
    }
}
/* =========================================================
   BFOA GLOBAL — CERTIFICATE VERIFICATION
   ========================================================= */

.verification-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.verification-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.verification-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.verification-hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.verification-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.verification-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.verification-hero h1 span {
    display: block;

    color: #68d7f5;
}

.verification-hero p {
    max-width: 740px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;

    line-height: 1.85;
}

.verification-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   SEARCH
   ========================================================= */

.verification-search {
    background: #f5f8fb;
}

.verification-search-card {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 70px;

    padding: 45px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    box-shadow:
        0 20px 60px rgba(3,27,50,.06);
}

.verification-search-content h2 {
    max-width: 560px;

    margin: 15px 0 18px;

    font-size: clamp(32px, 3.5vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.verification-search-content p {
    max-width: 500px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.85;
}

.verification-form {
    align-self: center;
}

.verification-form label {
    display: block;

    margin-bottom: 9px;

    color: #334b5d;

    font-size: 10px;

    font-weight: 800;
}

.verification-input-row {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 8px;
}

.verification-input-row input {
    min-width: 0;

    padding: 17px;

    color: #102c40;

    background: #f7fafc;

    border: 1px solid #d5e1e8;

    outline: none;

    font-family: inherit;

    font-size: 12px;
}

.verification-input-row input:focus {
    background: #ffffff;

    border-color: #68cce9;

    box-shadow:
        0 0 0 3px rgba(104,204,233,.08);
}

.verification-input-row button {
    padding: 0 25px;

    color: #ffffff;

    background: #071a32;

    border: 1px solid #071a32;

    cursor: pointer;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    transition: .2s ease;
}

.verification-input-row button:hover {
    background: #0aa6df;

    border-color: #0aa6df;
}

.verification-input-row button span {
    margin-left: 18px;

    font-size: 15px;
}

.verification-form > small {
    display: block;

    margin-top: 10px;

    color: #8a9ca8;

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   TRUST
   ========================================================= */

.verification-trust {
    background: #041a30;
}

.verification-trust-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.verification-trust-grid > div {
    min-height: 115px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid rgba(255,255,255,.08);
}

.verification-trust-grid > div:last-child {
    border-right: 0;
}

.verification-trust-grid strong {
    color: #61d5f5;

    font-size: 14px;

    letter-spacing: 1px;
}

.verification-trust-grid span {
    margin-top: 5px;

    color: #849eae;

    font-size: 9px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.verification-process {
    background: #ffffff;
}

.verification-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.verification-process-card {
    position: relative;

    min-height: 300px;

    padding: 30px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.verification-process-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow:
        0 20px 45px rgba(3,27,50,.08);
}

.verification-process-card > span {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.verification-process-icon {
    width: 52px;
    height: 52px;

    margin: 45px 0 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0aa6df;

    background: #e8f8fd;

    border: 1px solid #c8edf7;

    border-radius: 50%;

    font-size: 18px;

    font-weight: 900;
}

.verification-process-card h3 {
    margin: 0 0 12px;

    font-size: 19px;
}

.verification-process-card p {
    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   PLATFORM
   ========================================================= */

.verification-platform {
    background: #041a30;
}

.verification-platform-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.verification-platform h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.verification-platform > .container > div:first-child p {
    max-width: 620px;

    margin: 0 0 30px;

    color: #91aabb;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   CONSOLE
   ========================================================= */

.verification-console {
    min-height: 380px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #061e35,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);

    box-shadow:
        0 30px 70px rgba(0,0,0,.18);
}

.verification-console-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.console-brand {
    color: #ffffff;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: 2px;
}

.console-status {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #7896a8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}

.console-status span {
    width: 6px;
    height: 6px;

    background: #23bd82;

    border-radius: 50%;
}

.verification-console-body {
    padding: 45px 0;
}

.console-title {
    margin-bottom: 12px;

    color: #61d5f5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.console-input {
    padding: 18px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.08);
}

.console-input span {
    display: block;

    color: #7896a8;

    font-size: 7px;

    letter-spacing: 1px;
}

.console-input b {
    display: block;

    margin-top: 10px;

    color: #ffffff;

    font-size: 13px;

    letter-spacing: 2px;
}

.console-result {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 18px;

    padding: 18px;

    background: rgba(35,189,130,.05);

    border: 1px solid rgba(35,189,130,.12);
}

.console-check {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #23bd82;

    background: rgba(35,189,130,.08);

    border-radius: 50%;
}

.console-result strong {
    display: block;

    color: #ffffff;

    font-size: 11px;
}

.console-result small {
    display: block;

    margin-top: 4px;

    color: #7896a8;

    font-size: 8px;
}

.verification-console-bottom {
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.10);

    color: #7896a8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   RECORDS
   ========================================================= */

.verification-records {
    background: #f5f8fb;
}

.verification-record-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.verification-record-card {
    min-height: 220px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.verification-record-card:hover {
    transform: translateY(-4px);

    border-color: #8edcf1;
}

.verification-record-card > span {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.verification-record-card h3 {
    margin: 45px 0 12px;

    font-size: 18px;
}

.verification-record-card p {
    margin: 0;

    color: #718598;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   SECURITY
   ========================================================= */

.verification-security {
    background: #ffffff;
}

.verification-security-grid {
    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 100px;

    align-items: center;
}

.verification-security-badge {
    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.security-ring {
    width: 105px;
    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0aa6df;

    border: 1px solid #8edcf1;

    border-radius: 50%;

    box-shadow:
        0 0 0 15px rgba(10,166,223,.035),
        0 0 0 30px rgba(10,166,223,.02);

    font-size: 30px;
}

.verification-security-badge small {
    margin-top: 30px;

    color: #8195a5;

    font-size: 8px;

    letter-spacing: 2px;
}

.verification-security-badge strong {
    margin-top: 5px;

    color: #071a32;

    font-size: 12px;

    letter-spacing: 2px;
}

.verification-security h2 {
    max-width: 650px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.verification-security > .container > div:last-child > p {
    max-width: 720px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.verification-security-points {
    margin-top: 25px;

    border-top: 1px solid #dfe8ee;
}

.verification-security-points > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom: 1px solid #dfe8ee;
}

.verification-security-points span {
    color: #12a8e8;

    font-size: 12px;
}

.verification-security-points strong {
    color: #344c5d;

    font-size: 10px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.verification-notice {
    background: #f5f8fb;
}

.verification-notice-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.verification-notice-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #12a8e8;

    background: #e8f8fd;

    border: 1px solid #c8edf7;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 900;
}

.verification-notice-box h3 {
    margin: 10px 0;

    font-size: 18px;
}

.verification-notice-box p {
    max-width: 950px;

    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.verification-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.verification-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.verification-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.verification-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .verification-search-card,
    .verification-platform-grid {
        grid-template-columns: 1fr;
    }

    .verification-record-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .verification-security-grid {
        grid-template-columns: 250px 1fr;

        gap: 50px;
    }
}


@media (max-width: 750px) {

    .verification-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .verification-trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .verification-process-grid {
        grid-template-columns: 1fr;
    }

    .verification-security-grid {
        grid-template-columns: 1fr;
    }

    .verification-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 600px) {

    .verification-hero {
        min-height: 520px;
    }

    .verification-hero h1 {
        letter-spacing: -1.5px;
    }

    .verification-search-card {
        padding: 28px;
    }

    .verification-input-row {
        grid-template-columns: 1fr;
    }

    .verification-input-row button {
        min-height: 50px;
    }

    .verification-record-grid {
        grid-template-columns: 1fr;
    }

    .verification-notice-box {
        grid-template-columns: 1fr;

        padding: 28px;
    }
}
/* =========================================================
   BFOA GLOBAL — BLOG / NEWSROOM
   ========================================================= */

.blog-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.blog-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.blog-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.blog-hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.blog-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.blog-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.blog-hero h1 span {
    display: block;

    color: #68d7f5;
}

.blog-hero p {
    max-width: 750px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;

    line-height: 1.85;
}

.blog-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   INTRO
   ========================================================= */

.blog-intro {
    background: #ffffff;
}

.blog-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.blog-intro h2 {
    max-width: 680px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.blog-intro-grid p {
    margin: 0 0 20px;

    color: #687e90;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   LATEST
   ========================================================= */

.blog-latest {
    background: #f5f8fb;
}

.blog-live-status {
    display: flex;

    align-items: center;

    gap: 9px;

    padding-top: 10px;

    color: #718598;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.blog-live-status span {
    width: 7px;
    height: 7px;

    background: #23bd82;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(35,189,130,.08);
}


/* =========================================================
   FEATURED STORY
   ========================================================= */

.featured-story {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    min-height: 430px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    box-shadow:
        0 25px 60px rgba(3,27,50,.06);
}

.featured-story-visual {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #061e35,
            #073b58
        );

    overflow: hidden;
}

.featured-visual-grid {
    position: absolute;
    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.featured-visual-label {
    position: relative;
    z-index: 2;

    color: #61d5f5;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.featured-visual-title {
    position: relative;
    z-index: 2;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 58px);

    font-weight: 300;

    line-height: 1;
}

.featured-visual-title strong {
    display: block;

    color: #68d7f5;

    font-weight: 800;
}

.featured-visual-circle {
    position: absolute;

    width: 400px;
    height: 400px;

    right: -170px;
    bottom: -170px;

    border: 1px solid rgba(104,215,245,.20);

    border-radius: 50%;

    box-shadow:
        0 0 0 55px rgba(104,215,245,.025),
        0 0 0 110px rgba(104,215,245,.015);
}

.featured-story-content {
    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.article-meta {
    display: flex;

    gap: 8px;
}

.article-meta span {
    padding: 7px 10px;

    color: #0aa6df;

    background: #eaf8fc;

    border: 1px solid #c9edf7;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}

.featured-story-content h3 {
    max-width: 600px;

    margin: 25px 0 18px;

    font-size: clamp(28px, 3vw, 43px);

    line-height: 1.12;

    letter-spacing: -1px;
}

.featured-story-content p {
    max-width: 560px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.article-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 35px;

    padding-top: 20px;

    border-top: 1px solid #dfe8ee;

    color: #12a8e8;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.blog-categories {
    background: #ffffff;
}

.blog-category-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.blog-category-card {
    min-height: 275px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.blog-category-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: #8edcf1;

    box-shadow:
        0 20px 45px rgba(3,27,50,.08);
}

.blog-category-card > span {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.blog-category-card small {
    margin-top: 35px;

    color: #8195a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.blog-category-card h3 {
    margin: 9px 0 10px;

    color: #071a32;

    font-size: 21px;
}

.blog-category-card p {
    margin: 0;

    color: #718598;

    font-size: 11px;

    line-height: 1.8;
}

.blog-category-card b {
    margin-top: auto;

    padding-top: 25px;

    color: #079ed9;

    font-size: 10px;
}


/* =========================================================
   NEWSROOM
   ========================================================= */

.blog-newsroom {
    background: #f5f8fb;
}

.blog-empty-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.blog-empty-card {
    min-height: 270px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.blog-empty-number {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.blog-empty-type {
    margin-top: 40px;

    color: #8195a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;
}

.blog-empty-card h3 {
    margin: 10px 0;

    font-size: 20px;
}

.blog-empty-card p {
    margin: 0;

    color: #718598;

    font-size: 11px;

    line-height: 1.8;
}

.blog-empty-card > span {
    display: inline-block;

    margin-top: 25px;

    padding: 7px 10px;

    color: #8498a6;

    background: #f4f7f9;

    border: 1px solid #e0e8ed;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* =========================================================
   INFORMATION
   ========================================================= */

.blog-information {
    background: #041a30;
}

.blog-information-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.blog-information h2 {
    max-width: 650px;

    margin: 15px 0 25px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.blog-information > .container > div:first-child p {
    max-width: 620px;

    margin: 0 0 30px;

    color: #91aabb;

    font-size: 14px;

    line-height: 1.9;
}

.information-board {
    padding: 25px 30px;

    background:
        linear-gradient(
            145deg,
            #061e35,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);
}

.information-board-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.information-board-header span {
    color: #ffffff;

    font-size: 15px;

    font-weight: 900;

    letter-spacing: 2px;
}

.information-board-header small {
    color: #61d5f5;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.information-board-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.information-board-row:last-child {
    border-bottom: 0;
}

.information-board-row span {
    color: #7896a8;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.information-board-row b {
    color: #ffffff;

    font-size: 10px;
}


/* =========================================================
   CONNECT
   ========================================================= */

.blog-connect {
    background: #ffffff;
}

.blog-connect-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 50px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.blog-connect-box h2 {
    max-width: 650px;

    margin: 15px 0;

    font-size: clamp(34px, 3.5vw, 48px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.blog-connect-box p {
    max-width: 620px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.blog-connect-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;
}

.hero-btn-dark {
    color: #ffffff;

    background: #071a32;

    border-color: #071a32;
}

.hero-btn-dark:hover {
    background: #0aa6df;

    border-color: #0aa6df;
}

.hero-btn-outline-dark {
    color: #071a32;

    border: 1px solid #9fb3c0;

    background: transparent;
}


/* =========================================================
   CTA
   ========================================================= */

.blog-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.blog-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.blog-cta h2 {
    max-width: 720px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.blog-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .blog-intro-grid,
    .blog-information-grid {
        grid-template-columns: 1fr;
    }

    .featured-story {
        grid-template-columns: 1fr;
    }

    .featured-story-visual {
        min-height: 330px;
    }

    .blog-category-grid,
    .blog-empty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .blog-hero {
        min-height: 520px;
    }

    .blog-hero h1 {
        letter-spacing: -1.5px;
    }

    .blog-category-grid,
    .blog-empty-grid {
        grid-template-columns: 1fr;
    }

    .featured-story-content {
        padding: 30px;
    }

    .blog-connect-box {
        padding: 30px;

        align-items: flex-start;

        flex-direction: column;
    }

    .blog-connect-actions {
        width: 100%;
    }

    .blog-connect-actions .hero-btn {
        width: 100%;

        text-align: center;
    }
}
/* =========================================================
   BFOA GLOBAL — CONTACT PAGE
   ========================================================= */

.contact-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    position: relative;
    min-height: 590px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.contact-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -190px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.contact-hero h1 {
    margin: 18px 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.contact-hero h1 span {
    display: block;

    color: #68d7f5;
}

.contact-hero p {
    max-width: 760px;

    margin: 0;

    color: #b9cfdd;

    font-size: 17px;

    line-height: 1.85;
}

.contact-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   OVERVIEW CARDS
   ========================================================= */

.contact-overview {
    background: #f5f8fb;
}

.contact-overview-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.contact-overview-card {
    min-height: 250px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.contact-overview-card:hover {
    transform: translateY(-4px);

    border-color: #8edcf1;

    box-shadow:
        0 18px 45px rgba(3,27,50,.07);
}

.contact-card-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0aa6df;

    background: #e8f8fd;

    border: 1px solid #c8edf7;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 900;
}

.contact-overview-card small {
    display: block;

    margin-top: 30px;

    color: #8195a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.7px;
}

.contact-overview-card h3 {
    margin: 8px 0;

    font-size: 20px;
}

.contact-overview-card a,
.contact-card-value {
    color: #079ed9;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;
}

.contact-overview-card p {
    margin: 12px 0 0;

    color: #718598;

    font-size: 10px;

    line-height: 1.8;
}


/* =========================================================
   MAIN CONTACT
   ========================================================= */

.contact-main {
    background: #ffffff;
}

.contact-main-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: start;
}

.contact-information h2 {
    max-width: 600px;

    margin: 15px 0 20px;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.contact-information > p {
    max-width: 600px;

    margin: 0;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.contact-service-list {
    margin-top: 35px;

    border-top: 1px solid #dfe8ee;
}

.contact-service-list > div {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid #dfe8ee;
}

.contact-service-list > div > span {
    color: #12a8e8;

    font-size: 9px;

    font-weight: 900;
}

.contact-service-list strong {
    display: block;

    color: #334b5d;

    font-size: 10px;
}

.contact-service-list small {
    display: block;

    margin-top: 4px;

    color: #899ba8;

    font-size: 8px;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form-card {
    padding: 35px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;

    box-shadow:
        0 25px 60px rgba(3,27,50,.06);
}

.contact-form-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #dfe8ee;
}

.contact-form-header h3 {
    margin: 10px 0 0;

    font-size: 25px;
}

.contact-form-header > span {
    color: #12a8e8;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 2px;
}

.bfoa-contact-form {
    padding-top: 25px;
}

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.contact-field {
    margin-bottom: 17px;
}

.contact-field label {
    display: block;

    margin-bottom: 8px;

    color: #3c5262;

    font-size: 9px;

    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px;

    color: #183347;

    background: #ffffff;

    border: 1px solid #d3e0e7;

    outline: none;

    font-family: inherit;

    font-size: 11px;

    transition: .2s ease;
}

.contact-field textarea {
    resize: vertical;

    min-height: 130px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #67cde9;

    box-shadow:
        0 0 0 3px rgba(103,205,233,.08);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a0adb6;
}


/* =========================================================
   FORM NOTICE
   ========================================================= */

.contact-form-notice {
    display: flex;

    gap: 12px;

    padding: 13px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.contact-form-notice > span {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0aa6df;

    background: #e8f8fd;

    border-radius: 50%;

    font-size: 9px;

    font-weight: 900;
}

.contact-form-notice p {
    margin: 0;

    color: #8195a5;

    font-size: 8px;

    line-height: 1.6;
}

.contact-submit {
    width: 100%;

    min-height: 53px;

    margin-top: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    color: #ffffff;

    background: #071a32;

    border: 1px solid #071a32;

    cursor: pointer;

    font-family: inherit;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .5px;

    transition: .2s ease;
}

.contact-submit:hover {
    background: #0aa6df;

    border-color: #0aa6df;
}

.contact-submit span {
    font-size: 17px;
}


/* =========================================================
   OFFICES
   ========================================================= */

.contact-offices {
    background: #f5f8fb;
}

.contact-office-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.contact-office-card {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.office-number {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.contact-office-card > small {
    display: block;

    margin-top: 35px;

    color: #8195a5;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.8px;
}

.contact-office-card h3 {
    margin: 8px 0 25px;

    font-size: 23px;
}

.office-placeholder {
    padding: 14px 0;

    border-top: 1px solid #dfe8ee;
}

.office-placeholder span {
    display: block;

    color: #8b9ba7;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.office-placeholder strong {
    display: block;

    margin-top: 5px;

    color: #4d6372;

    font-size: 10px;

    font-weight: 600;
}

.contact-office-card > a {
    display: inline-block;

    margin-top: 18px;

    color: #079ed9;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   DIGITAL
   ========================================================= */

.contact-digital {
    background: #041a30;
}

.contact-digital-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.contact-digital h2 {
    max-width: 650px;

    margin: 15px 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.contact-digital > .container > div:first-child p {
    max-width: 620px;

    margin: 0;

    color: #91aabb;

    font-size: 13px;

    line-height: 1.9;
}

.contact-portal-list {
    padding: 5px 0;
}

.contact-portal-list a {
    display: grid;

    grid-template-columns: 100px 1fr 30px;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.10);

    color: #ffffff;

    text-decoration: none;
}

.contact-portal-list a:first-child {
    border-top: 1px solid rgba(255,255,255,.10);
}

.contact-portal-list span {
    color: #7896a8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;
}

.contact-portal-list strong {
    font-size: 11px;
}

.contact-portal-list b {
    color: #61d5f5;

    text-align: right;

    font-size: 14px;
}


/* =========================================================
   RESPONSE
   ========================================================= */

.contact-response {
    background: #ffffff;
}

.contact-response-box {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 35px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.contact-response-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #23bd82;

    background: #eafaf3;

    border: 1px solid #c9f0dd;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 900;
}

.contact-response-box h3 {
    margin: 10px 0;

    font-size: 18px;
}

.contact-response-box p {
    max-width: 900px;

    margin: 0;

    color: #718598;

    font-size: 12px;

    line-height: 1.85;
}


/* =========================================================
   CTA
   ========================================================= */

.contact-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.contact-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.contact-cta h2 {
    max-width: 750px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 55px);

    line-height: 1.08;
}

.contact-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 14px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .contact-main-grid,
    .contact-digital-grid {
        grid-template-columns: 1fr;
    }

    .contact-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-office-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .contact-hero {
        min-height: 520px;
    }

    .contact-hero h1 {
        letter-spacing: -1.5px;
    }

    .contact-overview-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-response-box {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .contact-portal-list a {
        grid-template-columns: 80px 1fr 25px;
    }
}
/* =========================================================
   BFOA GLOBAL — LEGAL / PRIVACY PAGES
   ========================================================= */

.legal-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   LEGAL HERO
   ========================================================= */

.legal-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.legal-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.legal-hero::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -240px;
    top: -170px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 85px rgba(114,212,245,.025),
        0 0 0 170px rgba(114,212,245,.015);
}

.legal-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.legal-hero h1 {
    margin: 18px 0 22px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1;

    letter-spacing: -3px;
}

.legal-hero h1 span {
    color: #68d7f5;
}

.legal-hero p {
    max-width: 750px;

    margin: 0;

    color: #b9cfdd;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   META
   ========================================================= */

.legal-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 35px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.legal-meta span {
    color: #7896a8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.legal-meta strong {
    display: block;

    margin-top: 6px;

    color: #ffffff;

    font-size: 9px;

    letter-spacing: .5px;
}


/* =========================================================
   INTRO
   ========================================================= */

.legal-intro {
    background: #ffffff;
}

.legal-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.legal-intro h2 {
    max-width: 650px;

    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.legal-intro-grid p {
    margin: 0 0 18px;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}

.legal-note {
    padding: 18px;

    background: #f5f8fb;

    border-left: 3px solid #12a8e8;
}


/* =========================================================
   CONTENT LAYOUT
   ========================================================= */

.legal-content {
    background: #f5f8fb;
}

.legal-layout {
    display: grid;

    grid-template-columns: 230px 1fr;

    gap: 70px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.legal-sidebar {
    position: sticky;

    top: 25px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.legal-sidebar-title {
    margin-bottom: 12px;

    color: #8195a5;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;
}

.legal-sidebar a {
    display: block;

    padding: 10px 0;

    color: #607787;

    border-bottom: 1px solid #edf2f5;

    font-size: 9px;

    line-height: 1.4;

    text-decoration: none;

    transition: .2s ease;
}

.legal-sidebar a:last-child {
    border-bottom: 0;
}

.legal-sidebar a:hover {
    padding-left: 5px;

    color: #079ed9;
}


/* =========================================================
   ARTICLE
   ========================================================= */

.legal-article {
    max-width: 950px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.legal-section {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 42px 45px;

    border-bottom: 1px solid #dfe8ee;
}

.legal-section-last {
    border-bottom: 0;
}

.legal-section-number {
    color: #12a8e8;

    font-size: 9px;

    font-weight: 900;
}

.legal-section h2 {
    margin: 0 0 18px;

    color: #102b40;

    font-size: 25px;

    line-height: 1.2;

    letter-spacing: -.5px;
}

.legal-section h3 {
    margin: 28px 0 12px;

    color: #304a5b;

    font-size: 15px;
}

.legal-section p {
    margin: 0 0 16px;

    color: #687e90;

    font-size: 12px;

    line-height: 1.9;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 12px 0 0;

    padding-left: 18px;
}

.legal-section li {
    margin: 9px 0;

    color: #687e90;

    font-size: 11px;

    line-height: 1.7;
}

.legal-section li::marker {
    color: #12a8e8;
}


/* =========================================================
   HIGHLIGHT
   ========================================================= */

.legal-highlight {
    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 22px;

    padding: 20px;

    background: #f5f8fb;

    border-left: 3px solid #12a8e8;
}

.legal-highlight strong {
    color: #284356;

    font-size: 10px;
}

.legal-highlight span {
    color: #718598;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   EXTERNAL BOX
   ========================================================= */

.legal-external-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 22px;

    padding: 18px 20px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.legal-external-box span {
    color: #12a8e8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.legal-external-box strong {
    color: #506879;

    font-size: 10px;
}


/* =========================================================
   VERSION
   ========================================================= */

.legal-version {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

    padding: 17px 20px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.legal-version span {
    color: #12a8e8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}

.legal-version strong {
    color: #30495a;

    font-size: 9px;
}

.legal-version small {
    color: #8b9ca8;

    font-size: 8px;
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.legal-contact-card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 25px;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #061e35,
            #073b58
        );

    border: 1px solid rgba(114,212,245,.15);
}

.legal-contact-card div {
    display: flex;

    flex-direction: column;
}

.legal-contact-card small {
    color: #61d5f5;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.legal-contact-card strong {
    margin-top: 8px;

    color: #ffffff;

    font-size: 15px;
}

.legal-contact-card span {
    max-width: 500px;

    margin-top: 5px;

    color: #91aabb;

    font-size: 9px;

    line-height: 1.6;
}

.legal-contact-card > a {
    flex-shrink: 0;

    color: #68d7f5;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   FINAL
   ========================================================= */

.legal-final {
    padding: 75px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.legal-final-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.legal-final h2 {
    max-width: 750px;

    margin: 12px 0 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .legal-intro-grid {
        grid-template-columns: 1fr;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 0 20px;
    }

    .legal-sidebar-title {
        grid-column: 1 / -1;
    }

    .legal-final-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .legal-hero {
        min-height: 460px;
    }

    .legal-hero h1 {
        letter-spacing: -1.5px;
    }

    .legal-meta {
        gap: 20px;
    }

    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-section {
        grid-template-columns: 1fr;

        padding: 30px 22px;
    }

    .legal-section-number {
        margin-bottom: -8px;
    }

    .legal-contact-card {
        align-items: flex-start;

        flex-direction: column;
    }

    .legal-external-box {
        align-items: flex-start;

        flex-direction: column;
    }
}
/* =========================================================
   BFOA GLOBAL — SITEMAP
   ========================================================= */

.sitemap-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.sitemap-hero {
    position: relative;
    min-height: 480px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.sitemap-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.sitemap-hero::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -240px;
    top: -170px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 85px rgba(114,212,245,.025),
        0 0 0 170px rgba(114,212,245,.015);
}

.sitemap-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.sitemap-hero h1 {
    margin: 18px 0 22px;

    color: #ffffff;

    font-size: clamp(46px, 6vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.sitemap-hero h1 span {
    display: block;

    color: #68d7f5;
}

.sitemap-hero p {
    max-width: 730px;

    margin: 0;

    color: #b9cfdd;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   INTRO
   ========================================================= */

.sitemap-intro {
    background: #ffffff;
}

.sitemap-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.sitemap-intro h2 {
    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.sitemap-intro-grid p {
    margin: 0 0 20px;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   DIRECTORY
   ========================================================= */

.sitemap-directory {
    background: #f5f8fb;
}

.sitemap-group {
    margin-bottom: 70px;
}

.sitemap-group:last-child {
    margin-bottom: 0;
}

.sitemap-group-heading {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    align-items: start;

    margin-bottom: 25px;
}

.sitemap-group-heading > span {
    color: #12a8e8;

    font-size: 10px;

    font-weight: 900;
}

.sitemap-group-heading h2 {
    margin: 8px 0 0;

    color: #102b40;

    font-size: 30px;

    letter-spacing: -1px;
}


/* =========================================================
   LINKS
   ========================================================= */

.sitemap-link-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.sitemap-link-grid a {
    position: relative;

    min-height: 125px;

    padding: 24px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    text-decoration: none;

    transition: .25s ease;
}

.sitemap-link-grid a:hover {
    transform: translateY(-4px);

    border-color: #8edcf1;

    box-shadow:
        0 18px 40px rgba(3,27,50,.07);
}

.sitemap-link-grid a span {
    color: #12a8e8;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.sitemap-link-grid a strong {
    max-width: 90%;

    margin-top: 18px;

    color: #253f51;

    font-size: 12px;

    line-height: 1.45;
}

.sitemap-link-grid a b {
    position: absolute;

    right: 22px;
    bottom: 20px;

    color: #079ed9;

    font-size: 15px;
}


/* =========================================================
   CTA
   ========================================================= */

.sitemap-cta {
    padding: 75px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.sitemap-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.sitemap-cta h2 {
    max-width: 650px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.08;
}

.sitemap-cta p {
    margin: 0;

    color: #a5becf;

    font-size: 13px;

    line-height: 1.8;
}

.sitemap-cta-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .sitemap-intro-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sitemap-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .sitemap-hero {
        min-height: 430px;
    }

    .sitemap-hero h1 {
        letter-spacing: -1.5px;
    }

    .sitemap-link-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-group {
        margin-bottom: 50px;
    }

    .sitemap-group-heading h2 {
        font-size: 25px;
    }

    .sitemap-cta-actions {
        width: 100%;
    }

    .sitemap-cta-actions .hero-btn {
        width: 100%;

        text-align: center;
    }
}
/* =========================================================
   BFOA GLOBAL — SERVICE DETAIL PAGES
   ========================================================= */

.service-detail-page {
    background: #ffffff;
    color: #071a32;
}


/* =========================================================
   HERO
   ========================================================= */

.service-detail-hero {
    position: relative;
    min-height: 570px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #03182d 0%,
            #063653 55%,
            #087a99 100%
        );

    overflow: hidden;
}

.service-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.service-detail-hero::after {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    right: -280px;
    top: -180px;

    border: 1px solid rgba(114,212,245,.18);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(114,212,245,.025),
        0 0 0 180px rgba(114,212,245,.015);
}

.service-hero-content {
    position: relative;
    z-index: 2;

    max-width: 950px;
}

.service-hero-content h1 {
    margin: 18px 0 22px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1;

    letter-spacing: -3px;
}

.service-hero-content h1 span {
    color: #68d7f5;
}

.service-hero-content p {
    max-width: 750px;

    color: #b9cfdd;

    font-size: 15px;

    line-height: 1.85;
}

.service-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.service-hero-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 42px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.service-hero-tags span {
    padding: 8px 11px;

    color: #8fb4c5;

    border: 1px solid rgba(255,255,255,.10);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


/* =========================================================
   INTRO
   ========================================================= */

.service-intro {
    background: #ffffff;
}

.service-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;
}

.service-intro h2 {
    margin: 15px 0 0;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.service-intro-grid p {
    margin: 0 0 18px;

    color: #718598;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.service-overview {
    background: #f5f8fb;
}

.service-feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 35px;
}

.service-feature-card {
    position: relative;

    min-height: 240px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #dfe8ee;

    transition: .25s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);

    border-color: #8edcf1;

    box-shadow:
        0 20px 45px rgba(3,27,50,.07);
}

.service-feature-number {
    color: #12a8e8;

    font-size: 9px;

    font-weight: 900;
}

.service-feature-card h3 {
    margin: 28px 0 12px;

    color: #233e51;

    font-size: 18px;
}

.service-feature-card p {
    margin: 0;

    color: #718598;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   PROCESS
   ========================================================= */

.service-process {
    background: #ffffff;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 35px;
}

.process-step {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 16px;

    padding: 24px;

    background: #f5f8fb;

    border: 1px solid #dfe8ee;
}

.process-step > span {
    color: #12a8e8;

    font-size: 9px;

    font-weight: 900;
}

.process-step h3 {
    margin: 0 0 9px;

    color: #294355;

    font-size: 14px;
}

.process-step p {
    margin: 0;

    color: #718598;

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   DOCUMENT SUPPORT
   ========================================================= */

.document-support {
    background: #f5f8fb;
}

.document-support-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: start;
}

.document-support h2 {
    margin: 15px 0;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.document-support p {
    max-width: 600px;

    color: #718598;

    font-size: 12px;

    line-height: 1.85;
}

.document-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.document-list div {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.document-list span {
    color: #12a8e8;

    font-size: 8px;

    font-weight: 900;
}

.document-list strong {
    color: #3d5666;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   NOTICE
   ========================================================= */

.service-notice {
    background: #ffffff;
}

.service-notice-box {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 25px;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #f4f8fb,
            #ffffff
        );

    border: 1px solid #dfe8ee;

    border-left: 4px solid #12a8e8;
}

.service-notice-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f7fc;

    color: #079ed9;

    font-size: 18px;

    font-weight: 900;
}

.service-notice h2 {
    margin: 12px 0;

    color: #203c4f;

    font-size: 27px;
}

.service-notice p {
    max-width: 900px;

    margin: 0 0 13px;

    color: #718598;

    font-size: 11px;

    line-height: 1.85;
}


/* =========================================================
   MINI FAQ
   ========================================================= */

.service-faq {
    background: #f5f8fb;
}

.mini-faq-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 30px;
}

.mini-faq-grid details {
    background: #ffffff;

    border: 1px solid #dfe8ee;
}

.mini-faq-grid summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    cursor: pointer;

    color: #2c4657;

    font-size: 11px;

    font-weight: 800;

    list-style: none;
}

.mini-faq-grid summary::-webkit-details-marker {
    display: none;
}

.mini-faq-grid summary span {
    color: #12a8e8;

    font-size: 18px;

    font-weight: 400;
}

.mini-faq-grid details p {
    margin: 0;

    padding: 0 22px 22px;

    color: #718598;

    font-size: 10px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.service-final-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #03182c,
            #073957
        );
}

.service-final-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.service-final-inner h2 {
    max-width: 760px;

    margin: 12px 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;
}

.service-final-inner p {
    margin: 0;

    color: #a5becf;

    font-size: 12px;

    line-height: 1.8;
}

.service-final-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .service-intro-grid,
    .document-support-grid {
        grid-template-columns: 1fr;
    }

    .service-feature-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-final-inner {
        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .service-detail-hero {
        min-height: 520px;
    }

    .service-hero-content h1 {
        letter-spacing: -1.5px;
    }

    .service-feature-grid,
    .process-grid,
    .mini-faq-grid,
    .document-list {
        grid-template-columns: 1fr;
    }

    .service-notice-box {
        grid-template-columns: 1fr;

        padding: 25px;
    }

    .service-final-actions {
        width: 100%;
    }

    .service-final-actions .hero-btn {
        width: 100%;

        text-align: center;
    }
}