:root{
    --blue950:#082452;
    --blue900:#0b2d5c;
    --blue700:#145da0;
    --blue500:#2e7dd7;

    --orange:#f7941d;
    --orangeDark:#e87900;

    --white:#ffffff;
    --light:#f5f8fc;
    --lightBlue:#eef5fc;
    --border:#dfe7f0;

    --text:#0b1f3a;
    --muted:#64748b;

    --shadow:0 14px 34px rgba(20,45,90,.09);
    --radius:16px;

    /* Slim fixed footer */
    --footer-height:52px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,"Segoe UI",Roboto,Arial,sans-serif;
    color:var(--text);
    background:#ffffff;
    line-height:1.6;

    /* Leave space for fixed footer */
    padding-bottom:var(--footer-height);
}

a{
    text-decoration:none;
    color:inherit;
}

img,
svg{
    display:block;
}

img{
    max-width:100%;
}

.container{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;

    background:rgba(255,255,255,.98);

    border-bottom:1px solid var(--border);

    box-shadow:0 4px 18px rgba(21,51,91,.04);

    transition:box-shadow .2s ease;
}

.site-header.scrolled{
    box-shadow:0 8px 24px rgba(21,51,91,.10);
}

.nav-wrap{
    width:100%;
    max-width:none;

    min-height:84px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding-left:20px;
    padding-right:20px;

    gap:28px;
}

.brand{
    flex-shrink:0;
    margin-right:auto;
}

.brand img{
    height:52px;
    width:auto;
    max-width:190px;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav{
    display:flex;
    align-items:center;

    gap:28px;

    font-size:.94rem;
    font-weight:700;

    color:var(--blue950);
}

.main-nav>a:not(.nav-cta){
    position:relative;

    padding:31px 0 27px;
}

.main-nav>a:not(.nav-cta)::after{
    content:"";

    position:absolute;

    left:0;
    bottom:18px;

    width:0;
    height:2px;

    background:var(--orange);

    transition:width .2s ease;
}

.main-nav>a:not(.nav-cta):hover::after,
.main-nav>a.active::after{
    width:100%;
}

.nav-cta{
    background:var(--orange);
    color:#ffffff;

    padding:12px 21px;

    border-radius:8px;

    box-shadow:0 8px 20px rgba(247,148,29,.18);

    transition:
        background .2s ease,
        transform .2s ease;
}

.nav-cta:hover{
    background:var(--orangeDark);

    transform:translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.nav-toggle{
    display:none;

    width:42px;
    height:42px;

    border:0;
    background:transparent;

    cursor:pointer;
}

.nav-toggle span{
    display:block;

    width:25px;
    height:2px;

    margin:5px auto;

    background:var(--blue950);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    min-height:500px;

    background:

        linear-gradient(
            90deg,
            rgba(8,36,82,1) 0%,
            rgba(11,45,92,.98) 34%,
            rgba(11,45,92,.82) 48%,
            rgba(11,45,92,.35) 64%,
            rgba(11,45,92,.06) 100%
        ),

        url("/assets/images/hero-bg.jpg")
        center right /
        cover
        no-repeat;
}

.hero-grid{
    min-height:500px;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;
}

.hero-copy{
    max-width:640px;

    padding:64px 0;

    color:#ffffff;
}

.eyebrow,
.section-kicker{
    display:inline-block;

    margin-bottom:12px;

    color:var(--orange);

    font-size:.76rem;
    font-weight:900;

    letter-spacing:.16em;

    text-transform:uppercase;
}

.hero h1{
    font-size:clamp(3rem,5vw,4.8rem);

    line-height:.98;

    letter-spacing:-.045em;

    margin-bottom:24px;
}

.hero h1 span{
    color:var(--orange);
}

.hero p{
    max-width:610px;

    color:#e6eef8;

    font-size:1.05rem;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;

    gap:14px;

    margin-top:30px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn{
    min-height:49px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:0 22px;

    border-radius:8px;

    font-weight:800;

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-orange{
    background:var(--orange);
    color:#ffffff;

    box-shadow:0 10px 24px rgba(247,148,29,.18);
}

.btn-orange:hover{
    background:var(--orangeDark);
}

.btn-outline{
    color:#ffffff;

    border:1px solid rgba(255,255,255,.58);
}

.btn-outline:hover{
    background:rgba(255,255,255,.08);
}

.btn-blue{
    background:var(--blue700);
    color:#ffffff;
}

.btn-blue:hover{
    background:var(--blue900);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip{
    background:var(--lightBlue);

    border-bottom:1px solid var(--border);
}

.trust-grid{
    min-height:106px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    align-items:center;
}

.trust-item{
    display:flex;

    align-items:center;

    gap:14px;

    padding:0 28px;

    border-right:1px solid #cfdae8;
}

.trust-item:first-child{
    padding-left:0;
}

.trust-item:last-child{
    border-right:0;
}

.trust-icon{
    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    color:var(--blue500);
}

.trust-icon svg{
    width:26px;
    height:26px;

    fill:currentColor;
}

.trust-item strong,
.trust-item span{
    display:block;
}

.trust-item strong{
    color:var(--blue950);
}

.trust-item span{
    color:var(--muted);

    font-size:.78rem;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section{
    padding:86px 0;
}

.section-heading{
    max-width:720px;

    margin-bottom:40px;
}

.centered{
    text-align:center;

    margin-inline:auto;
}

.section-heading h2,
.about-section h2,
.cta-section h2{
    font-size:clamp(2rem,3vw,3rem);

    line-height:1.12;

    letter-spacing:-.035em;

    color:var(--blue950);
}

.section-heading p,
.about-section p,
.cta-section p{
    margin-top:12px;

    color:var(--muted);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section{
    background:#ffffff;
}

.services-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.service-card{
    min-height:305px;

    display:flex;
    flex-direction:column;

    padding:28px;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:0 10px 28px rgba(21,51,91,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.service-card:hover{
    transform:translateY(-5px);

    box-shadow:var(--shadow);

    border-color:#bfd0e5;
}

.service-icon{
    width:52px;
    height:52px;

    display:grid;
    place-items:center;

    margin-bottom:20px;

    border-radius:12px;

    background:var(--lightBlue);

    color:var(--blue500);
}

.service-icon svg{
    width:27px;
    height:27px;

    fill:currentColor;
}

.service-card h3{
    color:var(--blue950);

    font-size:1.2rem;

    margin-bottom:12px;
}

.service-card p{
    color:var(--muted);

    font-size:.93rem;
}

.service-card a{
    margin-top:auto;

    padding-top:20px;

    color:var(--orangeDark);

    font-weight:800;
}

.service-card a:hover{
    color:var(--blue700);
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industries-section{
    padding:72px 0;

    color:#ffffff;

    background:

        radial-gradient(
            circle at 25% 20%,
            rgba(46,125,215,.25),
            transparent 28%
        ),

        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.light-heading h2{
    color:#ffffff;
}

.industries-grid{
    display:grid;

    grid-template-columns:repeat(6,1fr);

    border-top:1px solid rgba(255,255,255,.16);
    border-bottom:1px solid rgba(255,255,255,.16);
}

.industry-item{
    min-height:112px;

    display:grid;
    place-content:center;

    gap:8px;

    text-align:center;

    padding:18px;

    border-right:1px solid rgba(255,255,255,.16);

    transition:
        background .2s ease,
        transform .2s ease;
}

.industry-item:last-child{
    border-right:0;
}

.industry-item:hover{
    background:rgba(255,255,255,.06);
}

.industry-icon{
    font-size:1.65rem;
}

.industry-item strong{
    font-size:.88rem;
}


/* =========================================================
   ABOUT / WHY SVG BUSINESS
   ========================================================= */

.about-section{
    background:var(--light);
}

.about-grid{
    display:grid;

    grid-template-columns:.95fr 1.05fr;

    gap:70px;

    align-items:center;
}

.about-copy p{
    max-width:620px;
}

.about-copy p + p{
    margin-top:14px;
}

.about-section .btn{
    margin-top:28px;
}

.stats-panel{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;
}

.stat-card{
    min-height:150px;

    padding:28px;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    box-shadow:0 10px 26px rgba(21,51,91,.04);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.stat-card:hover{
    transform:translateY(-4px);

    box-shadow:var(--shadow);
}

.stat-card strong{
    display:block;

    color:var(--orange);

    font-size:2rem;
}

.stat-card span{
    color:var(--blue950);

    font-weight:700;
}


/* =========================================================
   HOW WE WORK
   ========================================================= */

.how-section{
    background:#ffffff;
}

.steps-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.step-card{
    min-height:220px;

    padding:28px;

    border:1px solid var(--border);

    border-radius:var(--radius);

    background:#ffffff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.step-card:hover{
    transform:translateY(-4px);

    box-shadow:var(--shadow);
}

.step-card>span{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#fff2e3;

    color:var(--orangeDark);

    font-weight:900;
}

.step-card h3{
    margin:18px 0 8px;

    color:var(--blue950);
}

.step-card p{
    color:var(--muted);

    font-size:.93rem;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section{
    padding:70px 0;

    background:var(--blue900);

    color:#ffffff;
}

.cta-grid{
    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:40px;
}

.cta-section h2{
    color:#ffffff;
}

.cta-section p{
    color:#cdd9e8;
}

.cta-button{
    min-width:190px;
}


/* =========================================================
   FLOATING CHAT BUTTON
   ========================================================= */

.chat-button{
    position:fixed;

    right:24px;

    /* Adjusted for smaller footer */
    bottom:calc(var(--footer-height) + 12px);

    z-index:998;

    width:54px;
    height:54px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:var(--orange);

    color:#ffffff;

    border-radius:50%;

    box-shadow:0 8px 24px rgba(8,36,82,.22);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.chat-button svg{
    width:26px;
    height:26px;

    fill:currentColor;
}

.chat-button:hover{
    background:var(--blue700);

    transform:
        translateY(-3px)
        scale(1.05);

    box-shadow:0 12px 28px rgba(8,36,82,.28);
}


/* =========================================================
   SLIM FIXED WHITE FOOTER
   ========================================================= */

.site-footer{
    position:fixed;

    left:0;
    right:0;
    bottom:0;

    z-index:999;

    height:var(--footer-height);

    background:rgba(255,255,255,.98);

    border-top:1px solid var(--border);

    box-shadow:0 -3px 12px rgba(21,51,91,.04);

    color:var(--blue950);
}


/* Footer row */

.footer-bar{
    position:relative;

    width:100%;
    height:100%;

    display:flex;

    align-items:center;
    justify-content:center;
}


/* =========================================================
   SOCIAL MEDIA - FAR LEFT
   ========================================================= */

.social-links{
    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    display:flex;

    align-items:center;

    gap:14px;
}

.social-links a{
    width:24px;
    height:24px;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:0;

    background:transparent !important;

    border:0 !important;
    border-radius:0 !important;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.social-links svg{
    width:21px;
    height:21px;

    fill:initial;
}

.social-facebook svg{
    width:22px;
    height:22px;
}

.social-x svg{
    width:19px;
    height:19px;
}

.social-pinterest svg{
    width:21px;
    height:21px;
}

.social-links a:hover{
    transform:
        translateY(-2px)
        scale(1.06);

    opacity:.80;

    background:transparent !important;
}


/* =========================================================
   COPYRIGHT - EXACT CENTRE
   ========================================================= */

.footer-copyright{
    color:var(--blue950);

    font-size:.82rem;
    font-weight:700;

    white-space:nowrap;

    text-align:center;

    line-height:1;
}


/* =========================================================
   PRIVACY / TERMS - FAR RIGHT
   ========================================================= */

.footer-links{
    position:absolute;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    display:flex;

    align-items:center;

    gap:24px;
}

.footer-links a{
    position:relative;

    color:var(--blue950);

    font-size:.82rem;
    font-weight:700;

    line-height:1;
}

.footer-links a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0;
    height:2px;

    background:var(--orange);

    transition:width .2s ease;
}

.footer-links a:hover::after{
    width:100%;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal{
    opacity:0;

    transform:translateY(16px);

    transition:
        opacity .55s ease,
        transform .55s ease;
}

.reveal.visible{
    opacity:1;

    transform:translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1050px){

    .main-nav{
        gap:18px;

        font-size:.88rem;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .industries-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .steps-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* =========================================================
   TABLET / MOBILE NAV
   ========================================================= */

@media(max-width:820px){

    .nav-toggle{
        display:block;
    }

    .main-nav{
        display:none;

        position:absolute;

        top:84px;
        left:0;
        right:0;

        flex-direction:column;

        align-items:stretch;

        gap:0;

        padding:14px 20px 22px;

        background:#ffffff;

        border-top:1px solid var(--border);

        box-shadow:
            0 16px 30px
            rgba(20,45,90,.08);
    }

    .main-nav.open{
        display:flex;
    }

    .main-nav>a:not(.nav-cta){
        padding:13px 0;

        border-bottom:
            1px solid var(--border);
    }

    .main-nav>a:not(.nav-cta)::after{
        display:none;
    }

    .nav-cta{
        margin-top:14px;

        text-align:center;
    }


    /* Hero */

    .hero{
        background:

            linear-gradient(
                90deg,
                rgba(8,36,82,.96),
                rgba(11,45,92,.86)
            ),

            url("/assets/images/hero-bg.jpg")
            center /
            cover
            no-repeat;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }


    /* Trust */

    .trust-grid{
        grid-template-columns:
            repeat(2,1fr);
    }


    /* CTA */

    .cta-grid{
        align-items:flex-start;

        flex-direction:column;
    }


    /* Footer */

    .social-links{
        left:14px;

        gap:10px;
    }

    .footer-links{
        right:14px;

        gap:13px;
    }

    .footer-copyright{
        font-size:.76rem;
    }

    .footer-links a{
        font-size:.76rem;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:560px){

    :root{
        --footer-height:102px;
    }

    .container{
        width:
            min(100% - 28px,1180px);
    }


    /* Header */

    .nav-wrap{
        min-height:72px;

        padding-left:14px;
        padding-right:14px;
    }

    .main-nav{
        top:72px;
    }

    .brand img{
        height:42px;

        max-width:150px;
    }


    /* Hero */

    .hero h1{
        font-size:2.7rem;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }


    /* Grids */

    .trust-grid,
    .services-grid,
    .industries-grid,
    .stats-panel,
    .steps-grid{
        grid-template-columns:1fr;
    }

    .trust-item{
        padding:20px 0;

        border-right:0;

        border-bottom:
            1px solid #cfdae8;
    }

    .trust-item:last-child{
        border-bottom:0;
    }

    .industry-item{
        border-right:0;

        border-bottom:
            1px solid
            rgba(255,255,255,.16);
    }


    /* Chat */

    .chat-button{
        right:14px;

        bottom:
            calc(var(--footer-height) + 10px);

        width:48px;
        height:48px;
    }

    .chat-button svg{
        width:23px;
        height:23px;
    }


    /* =====================================================
       MOBILE FOOTER
       ===================================================== */

    .footer-bar{
        display:flex;

        flex-direction:column;

        justify-content:center;
        align-items:center;

        gap:6px;

        padding:6px 0;
    }


    /* Social */

    .social-links{
        position:static;

        transform:none;

        order:1;

        gap:17px;
    }

    .social-links a{
        width:22px;
        height:22px;
    }

    .social-links svg{
        width:20px;
        height:20px;
    }


    /* Copyright */

    .footer-copyright{
        order:2;

        font-size:.72rem;

        white-space:normal;

        text-align:center;
    }


    /* Legal */

    .footer-links{
        position:static;

        transform:none;

        order:3;

        gap:15px;
    }

    .footer-links a{
        font-size:.72rem;
    }

}
/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-hero{
    min-height:420px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(46,125,215,.35),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.services-hero-grid{
    min-height:420px;

    display:flex;
    align-items:center;
}

.services-hero-copy{
    max-width:760px;
}

.services-hero-copy h1{
    font-size:clamp(3rem,5vw,4.6rem);

    line-height:1.02;

    letter-spacing:-.045em;

    margin-bottom:22px;
}

.services-hero-copy h1 span{
    color:var(--orange);
}

.services-hero-copy p{
    max-width:650px;

    color:#d9e7f5;

    font-size:1.06rem;
}


/* Intro */

.services-intro{
    padding-bottom:35px;
}


/* =========================================================
   SERVICE DETAIL BLOCKS
   ========================================================= */

.services-detail-section{
    padding-top:30px;
}

.service-detail{
    display:grid;

    grid-template-columns:220px 1fr;

    gap:55px;

    align-items:center;

    padding:55px;

    margin-bottom:28px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    box-shadow:
        0 12px 34px rgba(20,45,90,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.service-detail:hover{
    transform:translateY(-3px);

    box-shadow:
        0 16px 38px rgba(20,45,90,.09);
}

.service-detail.reverse{
    grid-template-columns:1fr 220px;
}

.service-detail.reverse .service-detail-icon{
    order:2;
}

.service-detail.reverse .service-detail-content{
    order:1;
}


.service-detail-icon{
    width:180px;
    height:180px;

    display:grid;
    place-items:center;

    margin:auto;

    border-radius:50%;

    background:
        linear-gradient(
            145deg,
            var(--lightBlue),
            #ffffff
        );

    border:
        1px solid
        #d7e4f1;

    color:var(--blue700);

    box-shadow:
        inset 0 0 25px rgba(46,125,215,.08);
}

.service-detail-icon svg{
    width:70px;
    height:70px;

    fill:currentColor;
}


.service-number{
    display:block;

    margin-bottom:7px;

    color:var(--orange);

    font-size:.78rem;
    font-weight:900;

    letter-spacing:.15em;
}


.service-detail-content h2{
    margin-bottom:14px;

    color:var(--blue950);

    font-size:
        clamp(1.8rem,3vw,2.6rem);

    line-height:1.1;
}

.service-detail-content>p{
    max-width:720px;

    color:var(--muted);
}


/* Capabilities */

.service-capabilities{
    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:22px;
}

.service-capabilities span{
    padding:7px 12px;

    background:var(--lightBlue);

    color:var(--blue900);

    border:
        1px solid #d7e5f4;

    border-radius:999px;

    font-size:.82rem;
    font-weight:700;
}


/* Service CTA */

.service-link{
    display:inline-block;

    margin-top:22px;

    color:var(--orangeDark);

    font-weight:800;

    transition:color .2s ease;
}

.service-link:hover{
    color:var(--blue700);
}


/* =========================================================
   ENGAGEMENT MODELS
   ========================================================= */

.engagement-section{
    background:var(--light);
}

.engagement-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;
}

.engagement-card{
    min-height:220px;

    padding:28px;

    background:#fff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.engagement-card:hover{
    transform:translateY(-4px);

    box-shadow:
        var(--shadow);
}

.engagement-card>span{
    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    margin-bottom:18px;

    background:#fff2e3;

    color:var(--orangeDark);

    border-radius:50%;

    font-weight:900;
}

.engagement-card h3{
    color:var(--blue950);

    margin-bottom:8px;
}

.engagement-card p{
    color:var(--muted);

    font-size:.93rem;
}


/* =========================================================
   SERVICES PAGE TABLET
   ========================================================= */

@media(max-width:900px){

    .service-detail,
    .service-detail.reverse{
        grid-template-columns:1fr;

        padding:38px;

        gap:30px;
    }

    .service-detail.reverse .service-detail-icon,
    .service-detail.reverse .service-detail-content{
        order:initial;
    }

    .service-detail-icon{
        width:140px;
        height:140px;
    }

    .service-detail-icon svg{
        width:55px;
        height:55px;
    }

    .engagement-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   SERVICES PAGE - SVG BUSINESS
   ========================================================= */

.services-page-hero{
    position:relative;
    min-height:430px;
    overflow:hidden;
    color:#fff;
    background:
        radial-gradient(circle at 82% 35%,rgba(46,125,215,.30),transparent 28%),
        linear-gradient(118deg,var(--blue950) 0%,var(--blue900) 48%,var(--blue700) 100%);
}

.services-page-hero::after{
    content:"";
    position:absolute;
    right:-120px;
    top:-180px;
    width:560px;
    height:560px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    box-shadow:
        0 0 0 70px rgba(255,255,255,.025),
        0 0 0 140px rgba(255,255,255,.018);
}

.services-page-hero-inner{
    position:relative;
    z-index:2;
    min-height:430px;
    display:flex;
    align-items:center;
}

.services-page-hero-copy{
    max-width:790px;
}

.services-page-hero-copy h1{
    max-width:760px;
    font-size:clamp(3rem,5vw,4.7rem);
    line-height:1.02;
    letter-spacing:-.045em;
    margin-bottom:22px;
}

.services-page-hero-copy h1 span{
    color:var(--orange);
}

.services-page-hero-copy p{
    max-width:690px;
    color:#dbe8f5;
    font-size:1.06rem;
}

.service-explorer{
    position:sticky;
    top:84px;
    z-index:50;
    background:#fff;
    border-bottom:1px solid var(--border);
    box-shadow:0 5px 16px rgba(20,45,90,.05);
}

.service-explorer .container{
    min-height:76px;
    display:flex;
    align-items:center;
    gap:22px;
}

.service-explorer-title{
    flex-shrink:0;
    color:var(--blue950);
    font-size:.78rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.service-pills{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.service-pills a{
    padding:8px 11px;
    border-radius:999px;
    background:var(--lightBlue);
    border:1px solid #d8e5f3;
    color:var(--blue900);
    font-size:.78rem;
    font-weight:750;
    transition:.2s ease;
}

.service-pills a:hover{
    background:var(--orange);
    border-color:var(--orange);
    color:#fff;
}

.service-mobile-select{
    display:none;
}

.services-overview{
    padding-bottom:55px;
}

.service-band{
    scroll-margin-top:170px;
    padding:78px 0;
    border-top:1px solid var(--border);
}

.service-band-light{
    background:var(--light);
}

.service-band-white{
    background:#fff;
}

.service-row{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:74px;
    align-items:center;
}

.service-row.reverse{
    grid-template-columns:1fr 300px;
}

.service-row.reverse .service-visual{
    order:2;
}

.service-row.reverse .service-copy{
    order:1;
}

.service-visual{
    position:relative;
    min-height:250px;
    display:grid;
    place-items:center;
}

.service-visual-circle{
    width:220px;
    height:220px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:var(--blue700);
    background:
        radial-gradient(circle at 35% 30%,#fff 0%,#eef5fc 65%,#e4eef8 100%);
    border:1px solid #cfdeed;
    box-shadow:
        inset 0 0 38px rgba(46,125,215,.08),
        0 18px 45px rgba(20,45,90,.08);
}

.service-visual-circle svg{
    width:82px;
    height:82px;
    fill:currentColor;
}

.service-visual-label{
    position:absolute;
    right:18px;
    bottom:16px;
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
    font-size:.86rem;
    font-weight:900;
    box-shadow:0 10px 24px rgba(247,148,29,.23);
}

.service-category{
    display:inline-block;
    margin-bottom:9px;
    color:var(--orangeDark);
    font-size:.76rem;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.service-copy h2{
    color:var(--blue950);
    font-size:clamp(2rem,3.2vw,3rem);
    line-height:1.08;
    letter-spacing:-.035em;
    margin-bottom:16px;
}

.service-copy h2 small{
    font-size:.58em;
    color:var(--muted);
    font-weight:700;
}

.service-copy p{
    max-width:790px;
    color:var(--muted);
    margin-bottom:12px;
}

.capability-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:24px;
}

.capability-grid span{
    position:relative;
    padding:11px 12px 11px 31px;
    border:1px solid #d9e5f1;
    border-radius:9px;
    background:#fff;
    color:var(--blue900);
    font-size:.82rem;
    font-weight:700;
}

.service-band-white .capability-grid span{
    background:var(--light);
}

.capability-grid span::before{
    content:"✓";
    position:absolute;
    left:11px;
    top:10px;
    color:var(--orange);
    font-weight:900;
}

.service-cta-link{
    display:inline-block;
    margin-top:23px;
    color:var(--orangeDark);
    font-weight:850;
    transition:.2s ease;
}

.service-cta-link:hover{
    color:var(--blue700);
    transform:translateX(3px);
}

.testing-strength{
    padding:76px 0;
    color:#fff;
    background:
        radial-gradient(circle at 28% 15%,rgba(46,125,215,.25),transparent 30%),
        linear-gradient(120deg,var(--blue950),var(--blue700));
}

.testing-strength .section-heading p{
    color:#cbd9e9;
}

.testing-strength-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    border-top:1px solid rgba(255,255,255,.15);
    border-bottom:1px solid rgba(255,255,255,.15);
}

.testing-strength-grid div{
    min-height:110px;
    display:grid;
    place-content:center;
    text-align:center;
    padding:18px 12px;
    border-right:1px solid rgba(255,255,255,.15);
}

.testing-strength-grid div:last-child{
    border-right:0;
}

.testing-strength-grid strong,
.testing-strength-grid span{
    display:block;
}

.testing-strength-grid strong{
    color:#fff;
    font-size:1rem;
}

.testing-strength-grid span{
    color:#bfd0e3;
    margin-top:4px;
    font-size:.77rem;
}

.client-experience{
    background:#fff;
}

.client-experience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.client-card{
    min-height:150px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:28px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--light);
    text-align:center;
    transition:.2s ease;
}

.client-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.client-card strong{
    color:var(--blue950);
    font-size:1.35rem;
}

.client-card span{
    margin-top:6px;
    color:var(--muted);
    font-size:.84rem;
}

@media(max-width:980px){
    .service-explorer{
        top:84px;
    }

    .service-explorer .container{
        align-items:flex-start;
        padding-top:15px;
        padding-bottom:15px;
    }

    .service-explorer-title{
        padding-top:8px;
    }

    .service-row,
    .service-row.reverse{
        grid-template-columns:220px 1fr;
        gap:42px;
    }

    .service-row.reverse .service-visual,
    .service-row.reverse .service-copy{
        order:initial;
    }

    .service-visual-circle{
        width:180px;
        height:180px;
    }

    .service-visual-circle svg{
        width:66px;
        height:66px;
    }

    .capability-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testing-strength-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .testing-strength-grid div:nth-child(3){
        border-right:0;
    }
}

@media(max-width:760px){
    .service-pills,
    .service-explorer-title{
        display:none;
    }

    .service-mobile-select{
        width:100%;
        display:flex;
        align-items:center;
        gap:14px;
    }

    .service-mobile-select label{
        color:var(--blue950);
        font-size:.78rem;
        font-weight:800;
        white-space:nowrap;
    }

    .service-mobile-select select{
        width:100%;
        padding:10px 12px;
        border:1px solid var(--border);
        border-radius:8px;
        background:#fff;
        color:var(--blue950);
        font:inherit;
    }

    .service-row,
    .service-row.reverse{
        grid-template-columns:1fr;
    }

    .service-row.reverse .service-visual{
        order:initial;
    }

    .service-row.reverse .service-copy{
        order:initial;
    }

    .service-visual{
        min-height:auto;
    }

    .service-visual-circle{
        width:145px;
        height:145px;
    }

    .service-visual-circle svg{
        width:54px;
        height:54px;
    }

    .service-visual-label{
        right:calc(50% - 90px);
        bottom:-5px;
        width:45px;
        height:45px;
    }

    .testing-strength-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testing-strength-grid div{
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .testing-strength-grid div:nth-child(2n){
        border-right:0;
    }

    .client-experience-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:560px){
    .services-page-hero,
    .services-page-hero-inner{
        min-height:390px;
    }

    .services-page-hero-copy h1{
        font-size:2.65rem;
    }

    .service-explorer{
        top:72px;
    }

    .service-band{
        scroll-margin-top:150px;
        padding:60px 0;
    }

    .capability-grid{
        grid-template-columns:1fr;
    }

    .testing-strength-grid{
        grid-template-columns:1fr;
    }

    .testing-strength-grid div{
        border-right:0;
    }
}
/* =========================================================
   SERVICES PAGE - ALWAYS SHOW CONTENT
   Fixes blank sections when jumping to #service anchors
   ========================================================= */

.services-page-hero .reveal,
.services-overview .reveal,
.service-band .reveal,
.testing-strength .reveal,
.client-experience .reveal,
.cta-section .reveal{
    opacity:1 !important;
    transform:none !important;
}
.service-band{
    scroll-margin-top:165px;
}

/* Make sure solution cards are always visible */

.solution-card,
.delivery-card,
.approach-card,
.solution-industries-grid div{
    opacity:1 !important;
    transform:none !important;
}
/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */

/* =========================================================
   SOLUTIONS HERO - FINAL FIX
   Compact hero + always visible content
   ========================================================= */

.solutions-hero{
    min-height:320px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}

.solutions-hero-inner{
    min-height:320px;

    display:flex;
    align-items:center;
}

.solutions-hero-copy{
    max-width:780px;

    opacity:1 !important;
    transform:none !important;
}

.solutions-hero .reveal{
    opacity:1 !important;
    transform:none !important;
}

.solutions-hero-copy h1{
    max-width:760px;

    font-size:clamp(2.8rem,4.5vw,4.2rem);

    line-height:1.02;
    letter-spacing:-.045em;

    margin-bottom:18px;
}

.solutions-hero-copy h1 span{
    color:var(--orange);
}

.solutions-hero-copy p{
    max-width:670px;

    color:#dbe8f5;

    font-size:1.02rem;
}

.solutions-hero .hero-actions{
    margin-top:24px;
}


/* Mobile */

@media(max-width:560px){

    .solutions-hero,
    .solutions-hero-inner{
        min-height:330px;
    }

    .solutions-hero-copy h1{
        font-size:2.55rem;
    }

}

/* =========================================================
   SOLUTION CARDS
   ========================================================= */

.solutions-grid{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;
}

.solution-card{
    min-height:340px;

    display:flex;

    flex-direction:column;

    padding:30px;

    background:#fff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        0 10px 28px
        rgba(21,51,91,.05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.solution-card:hover{
    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);
}

.solution-icon{
    width:54px;
    height:54px;

    display:grid;

    place-items:center;

    margin-bottom:20px;

    border-radius:13px;

    background:
        var(--lightBlue);

    color:
        var(--blue700);
}

.solution-icon svg{
    width:28px;
    height:28px;

    fill:currentColor;
}

.solution-number{
    color:var(--orange);

    font-size:.72rem;

    font-weight:900;

    letter-spacing:.15em;

    margin-bottom:7px;
}

.solution-card h3{
    color:var(--blue950);

    font-size:1.25rem;

    margin-bottom:12px;
}

.solution-card p{
    color:var(--muted);

    font-size:.93rem;
}

.solution-card a{
    margin-top:auto;

    padding-top:20px;

    color:
        var(--orangeDark);

    font-weight:800;
}


/* =========================================================
   DELIVERY MODELS
   ========================================================= */

.delivery-models{
    padding:82px 0;

    color:#fff;

    background:
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.delivery-models .section-heading p{
    color:#cbd9e9;
}

.delivery-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:18px;
}

.delivery-card{
    min-height:210px;

    padding:27px;

    border:
        1px solid
        rgba(255,255,255,.17);

    border-radius:
        var(--radius);

    background:
        rgba(255,255,255,.055);
}

.delivery-card>span{
    width:42px;
    height:42px;

    display:grid;

    place-items:center;

    margin-bottom:18px;

    border-radius:50%;

    background:
        var(--orange);

    color:#fff;

    font-weight:900;
}

.delivery-card h3{
    margin-bottom:8px;
}

.delivery-card p{
    color:#cbd9e9;

    font-size:.9rem;
}


/* =========================================================
   APPROACH
   ========================================================= */

.solution-approach{
    background:
        var(--light);
}

.approach-grid{
    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:20px;
}

.approach-card{
    padding:30px;

    background:#fff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);
}

.approach-card strong{
    display:block;

    color:
        var(--blue950);

    font-size:1.12rem;

    margin-bottom:8px;
}

.approach-card p{
    color:var(--muted);
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.solution-industries{
    padding:78px 0;

    color:#fff;

    background:
        var(--blue900);
}

.solution-industries-grid{
    display:grid;

    grid-template-columns:
        repeat(6,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);
}

.solution-industries-grid div{
    min-height:105px;

    display:grid;

    place-content:center;

    text-align:center;

    padding:15px;

    border-right:
        1px solid
        rgba(255,255,255,.15);

    font-weight:700;
}

.solution-industries-grid div:last-child{
    border-right:0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

    .solutions-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .delivery-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .solution-industries-grid{
        grid-template-columns:
            repeat(3,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:560px){

    .solutions-hero,
    .solutions-hero-inner{
        min-height:390px;
    }

    .solutions-hero-copy h1{
        font-size:2.65rem;
    }

    .solutions-grid,
    .delivery-grid,
    .approach-grid,
    .solution-industries-grid{
        grid-template-columns:1fr;
    }

    .solution-industries-grid div{
        border-right:0;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);
    }

}

/* =========================================================
   INDUSTRIES PAGE
   ========================================================= */

.industries-page-hero{
    min-height:320px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}

.industries-page-hero-inner{
    min-height:320px;

    display:flex;
    align-items:center;
}

.industries-page-hero-copy{
    max-width:780px;
}

.industries-page-hero-copy h1{
    max-width:760px;

    font-size:clamp(2.8rem,4.5vw,4.2rem);

    line-height:1.02;

    letter-spacing:-.045em;

    margin-bottom:18px;
}

.industries-page-hero-copy h1 span{
    color:var(--orange);
}

.industries-page-hero-copy p{
    max-width:680px;

    color:#dbe8f5;

    font-size:1.02rem;
}


/* =========================================================
   INDUSTRY DETAILS
   ========================================================= */

.industry-detail{
    padding:76px 0;

    border-top:1px solid var(--border);
}

.industry-light{
    background:var(--light);
}

.industry-white{
    background:#fff;
}

.industry-row{
    display:grid;

    grid-template-columns:300px 1fr;

    gap:72px;

    align-items:center;
}

.industry-row.reverse{
    grid-template-columns:1fr 300px;
}

.industry-row.reverse .industry-visual{
    order:2;
}

.industry-row.reverse .industry-copy{
    order:1;
}


/* Visual */

.industry-visual{
    position:relative;

    display:grid;

    place-items:center;

    min-height:250px;
}

.industry-circle{
    width:215px;
    height:215px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #fff,
            #eef5fc 65%,
            #e4eef8
        );

    border:1px solid #cfdeed;

    color:var(--blue700);

    box-shadow:
        inset 0 0 38px rgba(46,125,215,.08),
        0 18px 45px rgba(20,45,90,.08);
}

.industry-circle svg{
    width:78px;
    height:78px;

    fill:currentColor;
}

.industry-number{
    position:absolute;

    right:18px;
    bottom:16px;

    width:52px;
    height:52px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:.84rem;
    font-weight:900;

    box-shadow:
        0 10px 24px
        rgba(247,148,29,.23);
}


/* Text */

.industry-category{
    display:inline-block;

    margin-bottom:9px;

    color:var(--orangeDark);

    font-size:.76rem;
    font-weight:900;

    letter-spacing:.13em;

    text-transform:uppercase;
}

.industry-copy h2{
    color:var(--blue950);

    font-size:
        clamp(2rem,3.2vw,3rem);

    line-height:1.08;

    letter-spacing:-.035em;

    margin-bottom:16px;
}

.industry-copy p{
    max-width:790px;

    color:var(--muted);
}


/* Tags */

.industry-tags{
    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:10px;

    margin-top:24px;
}

.industry-tags span{
    position:relative;

    padding:
        11px 12px 11px 31px;

    border:
        1px solid
        #d9e5f1;

    border-radius:9px;

    background:#fff;

    color:var(--blue900);

    font-size:.82rem;

    font-weight:700;
}

.industry-white .industry-tags span{
    background:var(--light);
}

.industry-tags span::before{
    content:"✓";

    position:absolute;

    left:11px;
    top:10px;

    color:var(--orange);

    font-weight:900;
}


/* CTA link */

.industry-link{
    display:inline-block;

    margin-top:23px;

    color:var(--orangeDark);

    font-weight:850;

    transition:
        color .2s ease,
        transform .2s ease;
}

.industry-link:hover{
    color:var(--blue700);

    transform:translateX(3px);
}


/* =========================================================
   CAPABILITY STRIP
   ========================================================= */

.industry-capability-strip{
    padding:76px 0;

    color:#fff;

    background:
        radial-gradient(
            circle at 28% 15%,
            rgba(46,125,215,.25),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.industry-capability-strip .section-heading p{
    color:#cbd9e9;
}

.industry-capability-grid{
    display:grid;

    grid-template-columns:
        repeat(6,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);
}

.industry-capability-grid div{
    min-height:110px;

    display:grid;

    place-content:center;

    text-align:center;

    padding:18px 12px;

    border-right:
        1px solid
        rgba(255,255,255,.15);
}

.industry-capability-grid div:last-child{
    border-right:0;
}

.industry-capability-grid strong,
.industry-capability-grid span{
    display:block;
}

.industry-capability-grid strong{
    color:#fff;

    font-size:1rem;
}

.industry-capability-grid span{
    margin-top:4px;

    color:#bfd0e3;

    font-size:.77rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

    .industry-row,
    .industry-row.reverse{
        grid-template-columns:
            220px 1fr;

        gap:42px;
    }

    .industry-row.reverse .industry-visual,
    .industry-row.reverse .industry-copy{
        order:initial;
    }

    .industry-circle{
        width:175px;
        height:175px;
    }

    .industry-circle svg{
        width:64px;
        height:64px;
    }

    .industry-tags{
        grid-template-columns:
            repeat(2,1fr);
    }

    .industry-capability-grid{
        grid-template-columns:
            repeat(3,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:650px){

    .industries-page-hero,
    .industries-page-hero-inner{
        min-height:330px;
    }

    .industries-page-hero-copy h1{
        font-size:2.55rem;
    }


    .industry-detail{
        padding:60px 0;
    }

    .industry-row,
    .industry-row.reverse{
        grid-template-columns:1fr;
    }

    .industry-row.reverse .industry-visual,
    .industry-row.reverse .industry-copy{
        order:initial;
    }

    .industry-visual{
        min-height:auto;
    }

    .industry-circle{
        width:145px;
        height:145px;
    }

    .industry-circle svg{
        width:54px;
        height:54px;
    }

    .industry-number{
        right:
            calc(50% - 90px);

        bottom:-5px;

        width:45px;
        height:45px;
    }

    .industry-tags{
        grid-template-columns:1fr;
    }

    .industry-capability-grid{
        grid-template-columns:1fr;
    }

    .industry-capability-grid div{
        border-right:0;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);
    }

}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */

.about-page-hero{
    min-height:330px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}

.about-page-hero-inner{
    min-height:330px;

    display:flex;
    align-items:center;
}

.about-page-hero-copy{
    max-width:780px;
}

.about-page-hero-copy h1{
    font-size:clamp(2.8rem,4.5vw,4.2rem);

    line-height:1.02;

    letter-spacing:-.045em;

    margin-bottom:18px;
}

.about-page-hero-copy h1 span{
    color:var(--orange);
}

.about-page-hero-copy p{
    max-width:680px;

    color:#dbe8f5;

    font-size:1.02rem;
}


/* =========================================================
   COMPANY INTRO
   ========================================================= */

.about-company{
    background:#fff;
}

.about-company-grid{
    display:grid;

    grid-template-columns:
        1.05fr .95fr;

    gap:70px;

    align-items:center;
}

.about-company-copy h2{
    color:var(--blue950);

    font-size:
        clamp(2rem,3.2vw,3rem);

    line-height:1.1;

    letter-spacing:-.035em;

    margin-bottom:18px;
}

.about-company-copy p{
    max-width:650px;

    color:var(--muted);

    margin-bottom:14px;
}

.about-company-copy .btn{
    margin-top:16px;
}


/* Stats */

.about-company-stats{
    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:18px;
}

.about-stat{
    min-height:150px;

    padding:28px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:var(--light);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.about-stat:hover{
    transform:translateY(-4px);

    box-shadow:var(--shadow);
}

.about-stat strong{
    display:block;

    color:var(--orange);

    font-size:2rem;

    margin-bottom:4px;
}

.about-stat span{
    color:var(--blue950);

    font-weight:700;
}


/* =========================================================
   OUR STRENGTH
   ========================================================= */

.about-strength-section{
    padding:72px 0;

    color:#fff;

    background:
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.about-strength-grid{
    display:grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:70px;

    align-items:start;
}

.about-strength-heading h2{
    color:#fff;

    font-size:
        clamp(2rem,3vw,2.8rem);

    line-height:1.1;
}

.about-strength-copy p{
    color:#d3dfec;

    margin-bottom:15px;
}


/* =========================================================
   PURPOSE CARDS
   ========================================================= */

.purpose-section{
    background:var(--light);
}

.purpose-grid{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;
}

.purpose-card{
    min-height:315px;

    position:relative;

    padding:30px;

    background:#fff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.purpose-card:hover{
    transform:translateY(-5px);

    box-shadow:var(--shadow);
}

.purpose-number{
    position:absolute;

    right:24px;
    top:22px;

    color:#d2deea;

    font-size:1.7rem;

    font-weight:900;
}

.purpose-icon{
    width:54px;
    height:54px;

    display:grid;

    place-items:center;

    margin-bottom:20px;

    border-radius:13px;

    background:var(--lightBlue);

    color:var(--blue700);
}

.purpose-icon svg{
    width:27px;
    height:27px;

    fill:currentColor;
}

.purpose-card h3{
    color:var(--blue950);

    font-size:1.25rem;

    margin-bottom:12px;
}

.purpose-card p{
    color:var(--muted);

    font-size:.93rem;
}


/* =========================================================
   VALUES
   ========================================================= */

.about-values-section{
    padding:78px 0;

    color:#fff;

    background:var(--blue900);
}

.about-values-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:18px;
}

.about-value{
    min-height:245px;

    padding:27px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius:
        var(--radius);

    background:
        rgba(255,255,255,.045);
}

.about-value>span{
    width:40px;
    height:40px;

    display:grid;

    place-items:center;

    margin-bottom:18px;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-weight:900;
}

.about-value h3{
    margin-bottom:9px;

    color:#fff;
}

.about-value p{
    color:#cbd9e9;

    font-size:.9rem;
}


/* =========================================================
   DELIVERY MODELS
   ========================================================= */

.about-delivery-section{
    background:#fff;
}

.about-delivery-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;
}

.about-delivery-card{
    min-height:210px;

    padding:27px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:var(--light);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.about-delivery-card:hover{
    transform:translateY(-4px);

    box-shadow:var(--shadow);
}

.about-delivery-card>span{
    width:40px;
    height:40px;

    display:grid;

    place-items:center;

    margin-bottom:18px;

    border-radius:50%;

    background:#fff2e3;

    color:var(--orangeDark);

    font-weight:900;
}

.about-delivery-card h3{
    color:var(--blue950);

    margin-bottom:8px;
}

.about-delivery-card p{
    color:var(--muted);

    font-size:.9rem;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.about-industries-section{
    padding:76px 0;

    color:#fff;

    background:
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.about-industries-grid{
    display:grid;

    grid-template-columns:
        repeat(6,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);
}

.about-industries-grid a{
    min-height:110px;

    display:grid;

    place-content:center;

    padding:15px;

    text-align:center;

    border-right:
        1px solid
        rgba(255,255,255,.15);

    color:#fff;

    font-weight:700;

    transition:background .2s ease;
}

.about-industries-grid a:last-child{
    border-right:0;
}

.about-industries-grid a:hover{
    background:
        rgba(255,255,255,.07);
}


/* =========================================================
   STORY / TIMELINE
   ========================================================= */

.company-story{
    background:var(--light);
}

.story-line{
    position:relative;

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:40px;

    margin-top:20px;
}

.story-line::before{
    content:"";

    position:absolute;

    left:12%;
    right:12%;

    top:29px;

    height:2px;

    background:#cedbea;
}

.story-item{
    position:relative;

    text-align:center;
}

.story-year{
    position:relative;

    z-index:2;

    width:62px;
    height:62px;

    display:grid;

    place-items:center;

    margin:0 auto 22px;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:.75rem;

    font-weight:900;
}

.story-item h3{
    color:var(--blue950);

    margin-bottom:8px;
}

.story-item p{
    color:var(--muted);

    font-size:.9rem;
}


/* =========================================================
   CONTACT STRIP
   ========================================================= */

.about-contact-strip{
    padding:54px 0;

    background:#eef5fc;

    border-top:1px solid var(--border);
}

.about-contact-grid{
    display:flex;

    align-items:center;

    justify-content:
        space-between;

    gap:40px;
}

.about-contact-grid h2{
    color:var(--blue950);

    font-size:
        clamp(1.7rem,2.5vw,2.4rem);
}

.about-contact-details{
    display:flex;

    flex-direction:column;

    text-align:right;

    gap:5px;
}

.about-contact-details a{
    color:var(--blue900);

    font-weight:800;
}

.about-contact-details a:hover{
    color:var(--orangeDark);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

    .about-company-grid,
    .about-strength-grid{
        grid-template-columns:1fr;
    }

    .purpose-grid{
        grid-template-columns:1fr;
    }

    .about-values-grid,
    .about-delivery-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .about-industries-grid{
        grid-template-columns:
            repeat(3,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

    .about-page-hero,
    .about-page-hero-inner{
        min-height:340px;
    }

    .about-page-hero-copy h1{
        font-size:2.55rem;
    }

    .about-company-stats,
    .about-values-grid,
    .about-delivery-grid,
    .about-industries-grid,
    .story-line{
        grid-template-columns:1fr;
    }

    .about-industries-grid a{
        border-right:0;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);
    }

    .story-line::before{
        display:none;
    }

    .about-contact-grid{
        flex-direction:column;

        align-items:flex-start;
    }

    .about-contact-details{
        text-align:left;
    }

}

/* =========================================================
   INSIGHTS PAGE
   ========================================================= */

.insights-page-hero{
    min-height:320px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}

.insights-page-hero-inner{
    min-height:320px;

    display:flex;
    align-items:center;
}

.insights-page-hero-copy{
    max-width:790px;
}

.insights-page-hero-copy h1{
    max-width:760px;

    font-size:
        clamp(2.8rem,4.5vw,4.2rem);

    line-height:1.02;

    letter-spacing:-.045em;

    margin-bottom:18px;
}

.insights-page-hero-copy h1 span{
    color:var(--orange);
}

.insights-page-hero-copy p{
    max-width:680px;

    color:#dbe8f5;

    font-size:1.02rem;
}


/* =========================================================
   CATEGORY NAVIGATION
   ========================================================= */

.insight-categories{
    background:#fff;

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 5px 16px
        rgba(20,45,90,.04);
}

.insight-category-row{
    min-height:70px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-wrap:wrap;

    gap:9px;
}

.insight-category-row a{
    padding:8px 13px;

    border-radius:999px;

    background:var(--lightBlue);

    border:
        1px solid #d8e5f3;

    color:var(--blue900);

    font-size:.79rem;

    font-weight:750;

    transition:.2s ease;
}

.insight-category-row a:hover{
    background:var(--orange);

    border-color:var(--orange);

    color:#fff;
}


/* =========================================================
   FEATURED INSIGHT
   ========================================================= */

.featured-insight{
    display:grid;

    grid-template-columns:
        .8fr 1.2fr;

    min-height:360px;

    overflow:hidden;

    border:
        1px solid var(--border);

    border-radius:20px;

    background:#fff;

    box-shadow:
        0 14px 38px
        rgba(20,45,90,.06);
}

.featured-insight-visual{
    min-height:360px;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:18px;

    color:#fff;

    background:
        radial-gradient(
            circle at center,
            rgba(46,125,215,.35),
            transparent 50%
        ),
        linear-gradient(
            140deg,
            var(--blue950),
            var(--blue700)
        );
}

.featured-insight-icon{
    width:115px;
    height:115px;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:
        rgba(255,255,255,.10);

    border:
        1px solid
        rgba(255,255,255,.22);
}

.featured-insight-icon svg{
    width:52px;
    height:52px;

    fill:#fff;
}

.featured-insight-visual>span{
    color:#d9e7f5;

    font-size:.76rem;

    font-weight:800;

    letter-spacing:.12em;

    text-transform:uppercase;
}

.featured-insight-copy{
    padding:50px;
}

.insight-category{
    display:inline-block;

    margin-bottom:10px;

    color:var(--orangeDark);

    font-size:.74rem;

    font-weight:900;

    letter-spacing:.12em;

    text-transform:uppercase;
}

.featured-insight-copy h2{
    color:var(--blue950);

    font-size:
        clamp(2rem,3vw,2.8rem);

    line-height:1.1;

    letter-spacing:-.035em;

    margin-bottom:16px;
}

.featured-insight-copy p{
    color:var(--muted);

    margin-bottom:13px;
}

.featured-insight-copy a{
    display:inline-block;

    margin-top:10px;

    color:var(--orangeDark);

    font-weight:800;
}


/* =========================================================
   INSIGHT LIBRARY
   ========================================================= */

.insight-library{
    background:var(--light);
}

.insight-grid{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;
}

.insight-card{
    min-height:330px;

    display:flex;

    flex-direction:column;

    padding:28px;

    background:#fff;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        0 10px 26px
        rgba(20,45,90,.04);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.insight-card:hover{
    transform:
        translateY(-5px);

    box-shadow:var(--shadow);
}

.insight-card-icon{
    width:52px;
    height:52px;

    display:grid;

    place-items:center;

    margin-bottom:19px;

    background:var(--lightBlue);

    color:var(--blue700);

    border-radius:12px;
}

.insight-card-icon svg{
    width:26px;
    height:26px;

    fill:currentColor;
}

.insight-card h3{
    color:var(--blue950);

    font-size:1.18rem;

    line-height:1.3;

    margin-bottom:12px;
}

.insight-card p{
    color:var(--muted);

    font-size:.91rem;
}

.insight-card a{
    margin-top:auto;

    padding-top:18px;

    color:var(--orangeDark);

    font-weight:800;

    font-size:.88rem;
}


/* =========================================================
   KNOWLEDGE AREAS
   ========================================================= */

.insight-topics{
    padding:78px 0;

    color:#fff;

    background:
        radial-gradient(
            circle at 25% 15%,
            rgba(46,125,215,.25),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.insight-topics .section-heading p{
    color:#cbd9e9;
}

.insight-topic-grid{
    display:grid;

    grid-template-columns:
        repeat(6,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);
}

.insight-topic-grid a{
    min-height:115px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:18px;

    text-align:center;

    border-right:
        1px solid
        rgba(255,255,255,.15);

    transition:
        background .2s ease;
}

.insight-topic-grid a:last-child{
    border-right:0;
}

.insight-topic-grid a:hover{
    background:
        rgba(255,255,255,.07);
}

.insight-topic-grid strong{
    color:#fff;
}

.insight-topic-grid span{
    margin-top:4px;

    color:#bfd0e3;

    font-size:.76rem;
}


/* =========================================================
   FUTURE INSIGHTS
   ========================================================= */

.insight-future-section{
    background:#fff;
}

.insight-future-grid{
    display:grid;

    grid-template-columns:
        1fr .8fr;

    gap:70px;

    align-items:center;
}

.insight-future-grid h2{
    color:var(--blue950);

    font-size:
        clamp(2rem,3vw,2.8rem);

    line-height:1.1;

    margin-bottom:13px;
}

.insight-future-grid p{
    max-width:650px;

    color:var(--muted);
}

.insight-future-box{
    padding:28px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:var(--light);
}

.insight-future-box>span{
    display:block;

    margin-bottom:14px;

    color:var(--orangeDark);

    font-size:.72rem;

    font-weight:900;

    letter-spacing:.12em;

    text-transform:uppercase;
}

.insight-future-box strong{
    display:block;

    padding:9px 0;

    color:var(--blue950);

    border-bottom:
        1px solid #dde6ef;
}

.insight-future-box strong:last-child{
    border-bottom:0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

    .featured-insight{
        grid-template-columns:1fr;
    }

    .featured-insight-visual{
        min-height:240px;
    }

    .insight-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .insight-topic-grid{
        grid-template-columns:
            repeat(3,1fr);
    }

    .insight-future-grid{
        grid-template-columns:1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

    .insights-page-hero,
    .insights-page-hero-inner{
        min-height:340px;
    }

    .insights-page-hero-copy h1{
        font-size:2.55rem;
    }

    .insight-category-row{
        padding:12px 0;

        justify-content:flex-start;
    }

    .featured-insight-copy{
        padding:27px;
    }

    .insight-grid,
    .insight-topic-grid{
        grid-template-columns:1fr;
    }

    .insight-topic-grid a{
        border-right:0;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);
    }

}

/* =========================================================
   CAREERS PAGE
   ========================================================= */

.careers-page-hero{
    min-height:320px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}


.careers-page-hero-inner{
    min-height:320px;

    display:flex;
    align-items:center;
}


.careers-page-hero-copy{
    max-width:790px;
}


.careers-page-hero-copy h1{
    max-width:770px;

    font-size:
        clamp(2.8rem,4.5vw,4.2rem);

    line-height:1.02;

    letter-spacing:-.045em;

    margin-bottom:18px;
}


.careers-page-hero-copy h1 span{
    color:var(--orange);
}


.careers-page-hero-copy p{
    max-width:690px;

    color:#dbe8f5;

    font-size:1.02rem;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.careers-intro{
    background:#fff;
}


.career-benefit-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;
}


.career-benefit-card{
    min-height:245px;

    padding:27px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:var(--light);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.career-benefit-card:hover{
    transform:translateY(-4px);

    box-shadow:var(--shadow);
}


.career-benefit-icon{
    width:52px;
    height:52px;

    display:grid;

    place-items:center;

    margin-bottom:18px;

    border-radius:12px;

    background:#fff;

    color:var(--blue700);
}


.career-benefit-icon svg{
    width:26px;
    height:26px;

    fill:currentColor;
}


.career-benefit-card h3{
    margin-bottom:9px;

    color:var(--blue950);
}


.career-benefit-card p{
    color:var(--muted);

    font-size:.9rem;
}


/* =========================================================
   JOB OPENINGS
   ========================================================= */

.careers-openings{
    background:var(--light);
}


.job-list{
    max-width:1050px;

    margin:auto;
}


.job-card{
    margin-bottom:16px;

    overflow:hidden;

    border:
        1px solid
        var(--border);

    border-radius:14px;

    background:#fff;

    box-shadow:
        0 8px 24px
        rgba(20,45,90,.04);
}


.job-header{
    width:100%;

    min-height:105px;

    display:flex;

    align-items:center;

    justify-content:
        space-between;

    gap:25px;

    padding:24px 28px;

    border:0;

    background:#fff;

    color:inherit;

    text-align:left;

    cursor:pointer;

    transition:
        background .2s ease;
}


.job-header:hover{
    background:#f9fbfd;
}


.job-title-area{
    display:flex;

    align-items:center;

    gap:20px;
}


.job-number{
    width:46px;
    height:46px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:#fff2e3;

    color:var(--orangeDark);

    font-size:.78rem;

    font-weight:900;
}


.job-title-area h3{
    color:var(--blue950);

    font-size:1.25rem;

    margin-bottom:5px;
}


.job-meta{
    display:flex;

    flex-wrap:wrap;

    gap:8px;
}


.job-meta span{
    padding:4px 9px;

    border-radius:999px;

    background:var(--lightBlue);

    color:var(--blue700);

    font-size:.72rem;

    font-weight:700;
}


.job-toggle{
    width:36px;
    height:36px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:var(--blue950);

    color:#fff;

    font-size:1.4rem;

    transition:
        background .2s ease,
        transform .25s ease;
}


.job-card.open .job-toggle{
    background:var(--orange);

    transform:rotate(45deg);
}


/* Accordion content */

.job-content{
    display:grid;

    grid-template-rows:0fr;

    transition:
        grid-template-rows .35s ease;
}


.job-card.open .job-content{
    grid-template-rows:1fr;
}


.job-content-inner{
    overflow:hidden;

    padding:
        0 30px;
}


.job-card.open .job-content-inner{
    padding:
        0 30px 32px;
}


.job-content h4{
    margin:
        26px 0 10px;

    color:var(--blue950);

    font-size:1rem;
}


.job-content p{
    color:var(--muted);
}


.job-content ul{
    margin:
        10px 0 0 20px;

    color:var(--muted);
}


.job-content li{
    margin-bottom:7px;

    padding-left:4px;
}


.job-highlight{
    display:flex;

    gap:12px;

    align-items:center;

    margin-top:4px;

    padding:14px 17px;

    border-radius:9px;

    background:var(--lightBlue);
}


.job-highlight strong{
    color:var(--blue950);
}


.job-highlight span{
    color:var(--muted);
}


.job-apply{
    margin-top:26px;
}


/* =========================================================
   CULTURE
   ========================================================= */

.career-culture{
    padding:78px 0;

    color:#fff;

    background:
        radial-gradient(
            circle at 25% 15%,
            rgba(46,125,215,.25),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}


.career-culture .section-heading p{
    color:#cbd9e9;
}


.career-culture-grid{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);
}


.career-culture-grid div{
    min-height:115px;

    display:grid;

    place-content:center;

    text-align:center;

    padding:18px;

    border-right:
        1px solid
        rgba(255,255,255,.15);
}


.career-culture-grid div:last-child{
    border-right:0;
}


.career-culture-grid strong,
.career-culture-grid span{
    display:block;
}


.career-culture-grid strong{
    color:#fff;

    font-size:1rem;
}


.career-culture-grid span{
    margin-top:4px;

    color:#bfd0e3;

    font-size:.77rem;
}


/* =========================================================
   APPLY SECTION
   ========================================================= */

.careers-apply-section{
    background:#fff;
}


.careers-apply-grid{
    display:grid;

    grid-template-columns:
        1fr .75fr;

    gap:70px;

    align-items:center;
}


.careers-apply-grid h2{
    color:var(--blue950);

    font-size:
        clamp(2rem,3vw,2.8rem);

    line-height:1.1;

    margin-bottom:12px;
}


.careers-apply-grid p{
    max-width:620px;

    color:var(--muted);
}


.careers-contact-box{
    padding:28px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:var(--light);
}


.careers-contact-box>span{
    display:block;

    margin-bottom:8px;

    color:var(--orangeDark);

    font-size:.72rem;

    font-weight:900;

    letter-spacing:.12em;

    text-transform:uppercase;
}


.careers-contact-box>a:not(.btn){
    display:block;

    margin-bottom:22px;

    color:var(--blue950);

    font-size:1.05rem;

    font-weight:800;

    word-break:break-word;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

    .career-benefit-grid{
        grid-template-columns:
            repeat(2,1fr);
    }


    .career-culture-grid{
        grid-template-columns:
            repeat(2,1fr);
    }


    .career-culture-grid div{
        border-bottom:
            1px solid
            rgba(255,255,255,.15);
    }


    .careers-apply-grid{
        grid-template-columns:1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

    .careers-page-hero,
    .careers-page-hero-inner{
        min-height:340px;
    }


    .careers-page-hero-copy h1{
        font-size:2.55rem;
    }


    .career-benefit-grid,
    .career-culture-grid{
        grid-template-columns:1fr;
    }


    .job-header{
        padding:20px;

        align-items:flex-start;
    }


    .job-title-area{
        align-items:flex-start;

        gap:13px;
    }


    .job-number{
        width:38px;
        height:38px;
    }


    .job-meta{
        gap:5px;
    }


    .job-content-inner{
        padding:
            0 20px;
    }


    .job-card.open .job-content-inner{
        padding:
            0 20px 25px;
    }


    .career-culture-grid div{
        border-right:0;
    }

}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page-hero{
    min-height:320px;

    display:flex;
    align-items:center;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}

.contact-page-hero-inner{
    min-height:320px;

    display:flex;
    align-items:center;
}

.contact-page-hero-copy{
    max-width:790px;
}

.contact-page-hero-copy h1{
    max-width:780px;

    font-size:
        clamp(2.8rem,4.5vw,4.2rem);

    line-height:1.02;

    letter-spacing:-.045em;

    margin-bottom:18px;
}

.contact-page-hero-copy h1 span{
    color:var(--orange);
}

.contact-page-hero-copy p{
    max-width:690px;

    color:#dbe8f5;

    font-size:1.02rem;
}


/* =========================================================
   CONTACT CARDS
   ========================================================= */

.contact-details-section{
    background:#fff;
}

.contact-cards{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;
}

.contact-card{
    min-height:285px;

    display:flex;

    flex-direction:column;

    padding:30px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius);

    background:var(--light);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.contact-card:hover{
    transform:translateY(-5px);

    box-shadow:var(--shadow);
}

.contact-card-icon{
    width:54px;
    height:54px;

    display:grid;
    place-items:center;

    margin-bottom:19px;

    border-radius:13px;

    background:#fff;

    color:var(--blue700);
}

.contact-card-icon svg{
    width:27px;
    height:27px;

    fill:currentColor;
}

.contact-card-label{
    color:var(--orangeDark);

    font-size:.72rem;
    font-weight:900;

    letter-spacing:.12em;

    text-transform:uppercase;

    margin-bottom:5px;
}

.contact-card h3{
    color:var(--blue950);

    font-size:1.22rem;

    margin-bottom:9px;
}

.contact-card p{
    color:var(--muted);

    font-size:.91rem;
}

.contact-card>a{
    margin-top:auto;

    padding-top:18px;

    color:var(--blue700);

    font-weight:800;

    word-break:break-word;
}

.contact-card>a:hover{
    color:var(--orangeDark);
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-section{
    background:var(--light);
}

.contact-form-grid{
    display:grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap:70px;

    align-items:start;
}

.contact-form-intro h2{
    color:var(--blue950);

    font-size:
        clamp(2rem,3vw,2.8rem);

    line-height:1.1;

    margin-bottom:13px;
}

.contact-form-intro>p{
    max-width:520px;

    color:var(--muted);
}

.contact-help-list{
    margin-top:32px;
}

.contact-help-list>div{
    display:flex;

    gap:15px;

    margin-bottom:23px;
}

.contact-help-list>div>span{
    width:40px;
    height:40px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:#fff2e3;

    color:var(--orangeDark);

    font-size:.75rem;

    font-weight:900;
}

.contact-help-list strong{
    display:block;

    color:var(--blue950);

    margin-bottom:3px;
}

.contact-help-list p{
    color:var(--muted);

    font-size:.88rem;
}


/* Form box */

.contact-form-box{
    padding:36px;

    background:#fff;

    border:
        1px solid
        var(--border);

    border-radius:18px;

    box-shadow:
        0 14px 38px
        rgba(20,45,90,.06);
}

.contact-form{
    display:block;
}

.form-row{
    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:18px;
}

.form-group{
    margin-bottom:19px;
}

.form-group label{
    display:block;

    margin-bottom:7px;

    color:var(--blue950);

    font-size:.84rem;

    font-weight:800;
}

.form-group label span{
    color:var(--orangeDark);
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:13px 14px;

    border:
        1px solid #cfdae7;

    border-radius:8px;

    background:#fff;

    color:var(--text);

    font-family:inherit;

    font-size:.92rem;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.form-group select{
    cursor:pointer;
}

.form-group textarea{
    resize:vertical;

    min-height:150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--blue500);

    box-shadow:
        0 0 0 3px
        rgba(46,125,215,.10);
}


/* Privacy */

.form-consent{
    margin:3px 0 24px;
}

.form-consent label{
    display:flex;

    align-items:flex-start;

    gap:10px;

    color:var(--muted);

    font-size:.82rem;

    cursor:pointer;
}

.form-consent input{
    margin-top:4px;

    accent-color:var(--orange);
}

.form-consent a{
    color:var(--blue700);

    font-weight:700;
}

.form-consent a:hover{
    color:var(--orangeDark);
}


/* Honeypot */

.website-field{
    position:absolute !important;

    left:-9999px !important;

    width:1px !important;
    height:1px !important;

    overflow:hidden !important;
}


/* Submit */

.contact-submit{
    border:0;

    cursor:pointer;

    min-width:180px;
}


/* =========================================================
   CONTACT SERVICES
   ========================================================= */

.contact-services-section{
    padding:78px 0;

    color:#fff;

    background:
        radial-gradient(
            circle at 25% 15%,
            rgba(46,125,215,.25),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}

.contact-services-grid{
    display:grid;

    grid-template-columns:
        repeat(6,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.15);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);
}

.contact-services-grid a{
    min-height:115px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    text-align:center;

    padding:18px;

    border-right:
        1px solid
        rgba(255,255,255,.15);

    transition:
        background .2s ease;
}

.contact-services-grid a:last-child{
    border-right:0;
}

.contact-services-grid a:hover{
    background:
        rgba(255,255,255,.07);
}

.contact-services-grid strong{
    color:#fff;
}

.contact-services-grid span{
    margin-top:4px;

    color:#bfd0e3;

    font-size:.75rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

    .contact-cards{
        grid-template-columns:1fr;
    }

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .contact-services-grid{
        grid-template-columns:
            repeat(3,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

    .contact-page-hero,
    .contact-page-hero-inner{
        min-height:340px;
    }

    .contact-page-hero-copy h1{
        font-size:2.55rem;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:24px;
    }

    .contact-services-grid{
        grid-template-columns:1fr;
    }

    .contact-services-grid a{
        border-right:0;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);
    }

}

/* =========================================================
   COOKIE CONSENT POPUP
   ========================================================= */

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(8, 36, 82, 0.58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Main popup */

.cookie-popup {
    position: relative;

    width: min(560px, 100%);

    background: #ffffff;

    border-radius: 18px;

    padding: 38px 38px 34px;

    box-shadow:
        0 24px 70px rgba(8, 36, 82, 0.25);

    text-align: center;

    transform: translateY(18px) scale(0.98);

    transition: transform 0.25s ease;
}


.cookie-overlay.show .cookie-popup {
    transform: translateY(0) scale(1);
}


/* Cookie icon */

.cookie-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #fff2e3;

    font-size: 30px;
}


/* Heading */

.cookie-popup h2 {
    margin: 0 0 14px;

    color: #082452;

    font-size: 1.65rem;
    font-weight: 800;

    line-height: 1.2;
}


/* Text */

.cookie-popup p {
    margin: 0 auto;

    max-width: 470px;

    color: #64748b;

    font-size: 0.95rem;
    line-height: 1.65;
}


.cookie-popup .cookie-small {
    margin-top: 10px;

    color: #7b8798;

    font-size: 0.84rem;
}


/* Buttons */

.cookie-popup-actions {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 26px;
}


.cookie-button {
    min-height: 46px;

    padding: 0 21px;

    border-radius: 8px;

    font-family: inherit;

    font-size: 0.9rem;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.cookie-button:hover {
    transform: translateY(-1px);
}


/* Reject */

.cookie-button-secondary {
    background: #ffffff;

    border: 1px solid #cbd5e1;

    color: #082452;
}


.cookie-button-secondary:hover {
    background: #f5f8fc;

    border-color: #9fb2ca;
}


/* Accept */

.cookie-button-primary {
    background: #f7941d;

    border: 1px solid #f7941d;

    color: #ffffff;
}


.cookie-button-primary:hover {
    background: #e87900;

    border-color: #e87900;
}


/* Mobile */

@media (max-width: 600px) {

    .cookie-overlay {
        padding: 18px;
    }

    .cookie-popup {
        padding: 30px 22px 24px;
        border-radius: 15px;
    }

    .cookie-popup h2 {
        font-size: 1.4rem;
    }

    .cookie-popup-actions {
        flex-direction: column-reverse;
    }

    .cookie-button {
        width: 100%;
    }

}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-page{
    background:#fff;
}

.legal-hero{
    padding:64px 0;

    color:#fff;

    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(46,125,215,.28),
            transparent 30%
        ),
        linear-gradient(
            118deg,
            var(--blue950),
            var(--blue700)
        );
}

.legal-hero h1{
    margin-bottom:12px;

    color:#fff;

    font-size:clamp(2.7rem,4vw,4rem);

    line-height:1;

    letter-spacing:-.04em;
}

.legal-hero p{
    max-width:700px;

    color:#dbe8f5;

    font-size:1rem;
}

.legal-content{
    padding:65px 0 105px;

    background:#fff;
}

.legal-container{
    max-width:900px;
}

.legal-updated{
    margin-bottom:38px !important;

    color:var(--muted) !important;

    font-size:.8rem;
}

.legal-container h2{
    margin:38px 0 12px;

    color:var(--blue950);

    font-size:1.35rem;

    line-height:1.3;
}

.legal-container p{
    margin-bottom:14px;

    color:#53657c;

    line-height:1.75;
}

.legal-container a{
    color:var(--blue700);

    font-weight:700;
}

.legal-container a:hover{
    color:var(--orangeDark);
}

.legal-list{
    margin:12px 0 20px 24px;

    color:#53657c;
}

.legal-list li{
    margin-bottom:9px;

    padding-left:4px;

    line-height:1.65;
}

.legal-list strong{
    color:var(--blue950);
}

@media(max-width:600px){

    .legal-hero{
        padding:52px 0;
    }

    .legal-content{
        padding:50px 0 120px;
    }

    .legal-container h2{
        margin-top:30px;
    }

}

/* =========================================================
   SVG BUSINESS CHAT WINDOW
   ========================================================= */

.business-chat{
    position:fixed;

    right:24px;

    bottom:calc(var(--footer-height) + 84px);

    z-index:9998;

    width:370px;

    max-width:
        calc(100vw - 32px);

    overflow:hidden;

    background:#ffffff;

    border:
        1px solid #dce5ef;

    border-radius:17px;

    box-shadow:
        0 20px 60px
        rgba(8,36,82,.22);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transform:
        translateY(18px)
        scale(.97);

    transform-origin:
        bottom right;

    transition:
        opacity .23s ease,
        transform .23s ease,
        visibility .23s ease;
}


.business-chat.open{
    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CHAT HEADER
   ========================================================= */

.business-chat-header{
    min-height:74px;

    display:flex;

    align-items:center;

    justify-content:
        space-between;

    gap:15px;

    padding:15px 17px;

    color:#ffffff;

    background:
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}


.business-chat-header-text{
    display:flex;

    align-items:center;

    gap:10px;
}


.business-chat-header-text strong{
    display:block;

    font-size:.95rem;
}


.business-chat-header-text span:not(.chat-status-dot){
    display:block;

    color:#cbd9e9;

    font-size:.7rem;
}


.chat-status-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#57d68d;

    box-shadow:
        0 0 0 4px
        rgba(87,214,141,.15);
}


.business-chat-close{
    width:34px;
    height:34px;

    display:grid;

    place-items:center;

    border:0;

    border-radius:50%;

    background:
        rgba(255,255,255,.10);

    color:#ffffff;

    font-size:1.45rem;

    cursor:pointer;
}


.business-chat-close:hover{
    background:
        rgba(255,255,255,.18);
}


/* =========================================================
   CHAT BODY
   ========================================================= */

.business-chat-body{
    max-height:
        min(570px,calc(100vh - 190px));

    overflow-y:auto;

    padding:18px;

    background:#f7f9fc;
}


/* Welcome message */

.chat-message{
    display:flex;

    align-items:flex-start;

    gap:9px;

    margin-bottom:17px;
}


.chat-avatar{
    width:34px;
    height:34px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:var(--blue900);

    color:#ffffff;

    font-size:.61rem;

    font-weight:900;
}


.chat-bubble{
    max-width:280px;

    padding:12px 14px;

    border-radius:
        4px 14px 14px 14px;

    background:#ffffff;

    border:
        1px solid #e0e7ef;

    box-shadow:
        0 4px 13px
        rgba(20,45,90,.04);
}


.chat-bubble strong{
    display:block;

    margin-bottom:4px;

    color:var(--blue950);

    font-size:.84rem;
}


.chat-bubble p{
    color:var(--muted);

    font-size:.77rem;

    line-height:1.5;
}


/* =========================================================
   CHAT FORM
   ========================================================= */

.business-chat-form{
    padding:17px;

    background:#ffffff;

    border:
        1px solid #e1e8f0;

    border-radius:12px;
}


.chat-field{
    margin-bottom:12px;
}


.chat-field label{
    display:block;

    margin-bottom:5px;

    color:var(--blue950);

    font-size:.72rem;

    font-weight:800;
}


.chat-field input,
.chat-field textarea{
    width:100%;

    padding:10px 11px;

    border:
        1px solid #cad6e3;

    border-radius:7px;

    background:#ffffff;

    color:var(--text);

    font-family:inherit;

    font-size:.82rem;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.chat-field textarea{
    min-height:88px;

    resize:vertical;
}


.chat-field input:focus,
.chat-field textarea:focus{
    border-color:
        var(--blue500);

    box-shadow:
        0 0 0 3px
        rgba(46,125,215,.09);
}


.chat-honeypot{
    position:absolute;

    left:-10000px;

    width:1px;
    height:1px;

    overflow:hidden;
}


.chat-form-error{
    min-height:18px;

    margin-bottom:7px;

    color:#b42318;

    font-size:.72rem;

    font-weight:700;
}


.chat-send-button{
    width:100%;

    min-height:43px;

    border:0;

    border-radius:7px;

    background:var(--orange);

    color:#ffffff;

    font-family:inherit;

    font-size:.82rem;

    font-weight:850;

    cursor:pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}


.chat-send-button:hover{
    background:
        var(--orangeDark);

    transform:
        translateY(-1px);
}


.chat-send-button:disabled{
    opacity:.65;

    cursor:not-allowed;

    transform:none;
}


/* =========================================================
   CHAT FOOTER
   ========================================================= */

.business-chat-footer{
    min-height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:#ffffff;

    border-top:
        1px solid #edf1f5;

    color:#8a98a9;

    font-size:.62rem;
}


.business-chat-footer a{
    color:var(--blue700);

    font-weight:700;
}


/* =========================================================
   SUCCESS
   ========================================================= */

.chat-success{
    padding:32px 20px;

    text-align:center;
}


.chat-success-icon{
    width:56px;
    height:56px;

    display:grid;

    place-items:center;

    margin:
        0 auto 15px;

    border-radius:50%;

    background:#eaf8ef;

    color:#1e8b4d;

    font-size:1.5rem;

    font-weight:900;
}


.chat-success h3{
    margin-bottom:8px;

    color:var(--blue950);
}


.chat-success p{
    margin-bottom:6px;

    color:var(--muted);

    font-size:.82rem;
}


.chat-success-close{
    margin-top:17px;

    min-height:40px;

    padding:0 24px;

    border:0;

    border-radius:7px;

    background:var(--orange);

    color:#ffffff;

    font-family:inherit;

    font-weight:800;

    cursor:pointer;
}


/* =========================================================
   MOBILE CHAT
   ========================================================= */

@media(max-width:560px){

    .business-chat{
        left:12px;
        right:12px;

        bottom:
            calc(var(--footer-height) + 70px);

        width:auto;
    }


    .business-chat-body{
        max-height:
            calc(100vh - 250px);
    }

}

/* =========================================================
   SMART FAQ CHAT
   ========================================================= */

.smart-chat{
    position:fixed;

    right:24px;

    bottom:calc(var(--footer-height) + 84px);

    z-index:9998;

    width:390px;

    max-width:calc(100vw - 32px);

    height:560px;

    max-height:calc(100vh - 180px);

    display:flex;

    flex-direction:column;

    overflow:hidden;

    background:#fff;

    border:1px solid #dce5ef;

    border-radius:18px;

    box-shadow:
        0 24px 70px rgba(8,36,82,.24);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transform:
        translateY(18px)
        scale(.97);

    transform-origin:bottom right;

    transition:
        opacity .23s ease,
        transform .23s ease,
        visibility .23s ease;
}


.smart-chat.open{
    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:
        translateY(0)
        scale(1);
}


/* Header */

.smart-chat-header{
    min-height:72px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:14px 17px;

    color:#fff;

    background:
        linear-gradient(
            120deg,
            var(--blue950),
            var(--blue700)
        );
}


.smart-chat-heading{
    display:flex;

    align-items:center;

    gap:10px;
}


.smart-chat-heading strong{
    display:block;

    font-size:.92rem;
}


.smart-chat-heading span:not(.smart-chat-status){
    display:block;

    color:#cbd9e9;

    font-size:.68rem;
}


.smart-chat-status{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#52d886;

    box-shadow:
        0 0 0 4px
        rgba(82,216,134,.15);
}


.smart-chat-close{
    width:34px;
    height:34px;

    border:0;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    color:#fff;

    font-size:1.4rem;

    cursor:pointer;
}


/* Messages */

.smart-chat-messages{
    flex:1;

    overflow-y:auto;

    padding:17px;

    background:#f5f8fc;
}


.smart-message{
    display:flex;

    align-items:flex-start;

    gap:8px;

    margin-bottom:13px;
}


.smart-message.user{
    justify-content:flex-end;
}


.smart-avatar{
    width:32px;
    height:32px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border-radius:50%;

    background:var(--blue950);

    color:#fff;

    font-size:.58rem;

    font-weight:900;
}


.smart-bubble{
    max-width:280px;

    padding:11px 13px;

    border-radius:
        4px 14px 14px 14px;

    background:#fff;

    border:1px solid #dfe7f0;

    color:var(--muted);

    font-size:.78rem;

    line-height:1.5;

    box-shadow:
        0 4px 12px rgba(20,45,90,.04);
}


.smart-message.user .smart-bubble{
    border-radius:
        14px 4px 14px 14px;

    background:var(--blue700);

    border-color:var(--blue700);

    color:#fff;
}


.smart-bubble strong{
    display:block;

    margin-bottom:4px;

    color:var(--blue950);
}


.smart-message.user .smart-bubble strong{
    color:#fff;
}


.smart-answer-link{
    display:inline-block;

    margin-top:8px;

    color:var(--orangeDark);

    font-weight:800;
}


/* Quick buttons */

.smart-quick-actions{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin:
        4px 0 14px 40px;
}


.smart-quick-btn{
    padding:7px 10px;

    border:1px solid #d6e2ef;

    border-radius:999px;

    background:#fff;

    color:var(--blue900);

    font-family:inherit;

    font-size:.7rem;

    font-weight:750;

    cursor:pointer;
}


.smart-quick-btn:hover{
    background:var(--lightBlue);
}


/* Input */

.smart-chat-input{
    min-height:58px;

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 12px;

    background:#fff;

    border-top:1px solid #e2e9f0;
}


.smart-chat-input input{
    flex:1;

    min-width:0;

    padding:10px 12px;

    border:1px solid #ccd8e5;

    border-radius:9px;

    outline:none;

    font-family:inherit;

    font-size:.8rem;
}


.smart-chat-input input:focus{
    border-color:var(--blue500);

    box-shadow:
        0 0 0 3px rgba(46,125,215,.08);
}


.smart-chat-input button{
    width:40px;
    height:40px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border:0;

    border-radius:9px;

    background:var(--orange);

    color:#fff;

    cursor:pointer;
}


.smart-chat-input button svg{
    width:18px;
    height:18px;

    fill:currentColor;
}


/* Typing */

.smart-typing{
    display:flex;

    align-items:center;

    gap:4px;

    min-height:39px;
}


.smart-typing span{
    width:6px;
    height:6px;

    border-radius:50%;

    background:#94a3b8;

    animation:
        smartTyping 1.2s infinite ease-in-out;
}


.smart-typing span:nth-child(2){
    animation-delay:.15s;
}


.smart-typing span:nth-child(3){
    animation-delay:.3s;
}


@keyframes smartTyping{

    0%,
    60%,
    100%{
        transform:translateY(0);
        opacity:.45;
    }

    30%{
        transform:translateY(-4px);
        opacity:1;
    }

}


/* Fallback button */

.smart-team-button{
    display:block;

    margin-top:10px;

    padding:8px 11px;

    border:0;

    border-radius:7px;

    background:var(--orange);

    color:#fff;

    font-family:inherit;

    font-size:.72rem;

    font-weight:800;

    cursor:pointer;
}


/* =========================================================
   ENQUIRY PANEL
   ========================================================= */

.smart-enquiry-panel{
    position:absolute;

    inset:72px 0 0;

    z-index:10;

    overflow-y:auto;

    padding:17px;

    background:#fff;

    transform:translateX(100%);

    transition:transform .25s ease;
}


.smart-enquiry-panel.open{
    transform:translateX(0);
}


.smart-enquiry-heading{
    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:17px;
}


.smart-enquiry-heading strong{
    color:var(--blue950);
}


.smart-enquiry-heading button{
    width:30px;
    height:30px;

    border:0;

    border-radius:50%;

    background:var(--lightBlue);

    color:var(--blue950);

    font-size:1.25rem;

    cursor:pointer;
}


.smart-form-field{
    margin-bottom:12px;
}


.smart-form-field label{
    display:block;

    margin-bottom:5px;

    color:var(--blue950);

    font-size:.72rem;

    font-weight:800;
}


.smart-form-field input,
.smart-form-field textarea{
    width:100%;

    padding:10px 11px;

    border:1px solid #ccd8e5;

    border-radius:7px;

    font-family:inherit;

    font-size:.8rem;

    outline:none;
}


.smart-form-field input:focus,
.smart-form-field textarea:focus{
    border-color:var(--blue500);
}


.smart-honeypot{
    position:absolute;

    left:-10000px;

    width:1px;
    height:1px;

    overflow:hidden;
}


.smart-enquiry-error{
    min-height:18px;

    color:#b42318;

    font-size:.72rem;

    font-weight:700;
}


.smart-enquiry-submit{
    width:100%;

    min-height:42px;

    border:0;

    border-radius:7px;

    background:var(--orange);

    color:#fff;

    font-family:inherit;

    font-weight:800;

    cursor:pointer;
}


/* Mobile */

@media(max-width:560px){

    .smart-chat{
        left:12px;
        right:12px;

        bottom:
            calc(var(--footer-height) + 70px);

        width:auto;

        height:
            calc(100vh - 160px);
    }

}

/* =========================================================
   CONTACT LOCATIONS / MAPS
   ========================================================= */

.contact-locations-section{
    background:var(--light);
    border-top:1px solid var(--border);
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.location-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:0 12px 32px rgba(20,45,90,.06);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.location-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.location-card-header{
    display:flex;
    align-items:center;
    gap:14px;
    padding:25px 26px 18px;
}

.location-icon{
    width:50px;
    height:50px;
    flex-shrink:0;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--lightBlue);
    color:var(--blue700);
}

.location-icon svg{
    width:25px;
    height:25px;
    fill:currentColor;
}

.location-label{
    display:block;
    margin-bottom:3px;
    color:var(--orangeDark);
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.location-card h3{
    color:var(--blue950);
    font-size:1.35rem;
}

.location-address{
    padding:0 26px 16px;
    color:var(--muted);
    font-size:.91rem;
    line-height:1.65;
}

.location-address strong{
    color:var(--blue950);
}

.location-contact{
    display:flex;
    flex-wrap:wrap;
    gap:8px 18px;
    padding:0 26px 22px;
}

.location-contact a{
    color:var(--blue700);
    font-size:.84rem;
    font-weight:800;
}

.location-contact a:hover{
    color:var(--orangeDark);
}


/* Map */

.location-map{
    width:100%;
    height:270px;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:#eef3f8;
}

.location-map iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.location-map-link{
    display:block;
    padding:15px 26px 17px;
    color:var(--orangeDark);
    font-size:.82rem;
    font-weight:850;
}

.location-map-link:hover{
    color:var(--blue700);
}


/* Tablet/mobile */

@media(max-width:850px){

    .location-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:560px){

    .location-map{
        height:230px;
    }

    .location-card-header,
    .location-address,
    .location-contact{
        padding-left:20px;
        padding-right:20px;
    }

    .location-map-link{
        padding-left:20px;
        padding-right:20px;
    }

}

/* =========================================================
   CONTACT FORM MESSAGES
   ========================================================= */

.contact-alert{
    margin-bottom:24px;
    padding:18px 20px;
    border-radius:12px;
    font-size:.9rem;
    line-height:1.6;
}

.contact-alert strong{
    display:block;
    margin-bottom:4px;
}

.contact-alert p{
    margin:0;
}

.contact-alert-success{
    background:#edf9f1;
    border:1px solid #b9e5c7;
    color:#176b35;
}

.contact-alert-error{
    background:#fff2f2;
    border:1px solid #f0c4c4;
    color:#a12b2b;
}

.chat-button{
    position:fixed;
    right:28px;
    bottom:calc(var(--footer-height) + 18px);

    z-index:9999;

    width:58px;
    height:58px;

    display:grid;
    place-items:center;

    border:0;
    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--orangeDark)
        );

    color:#fff;

    box-shadow:
        0 10px 28px rgba(232,121,0,.34);

    cursor:pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.chat-button svg{
    width:27px;
    height:27px;

    fill:currentColor;
}


.chat-button:hover{
    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 14px 34px rgba(232,121,0,.42);
}


.chat-button:active{
    transform:scale(.97);
}


/* subtle attention pulse */

.chat-button::after{
    content:"";

    position:absolute;

    inset:-5px;

    border-radius:50%;

    border:2px solid rgba(247,148,29,.28);

    animation:
        chatPulse 2.4s infinite;
}


@keyframes chatPulse{

    0%{
        transform:scale(.88);
        opacity:.8;
    }

    70%{
        transform:scale(1.22);
        opacity:0;
    }

    100%{
        transform:scale(1.22);
        opacity:0;
    }

}


@media(max-width:560px){

    .chat-button{
        right:18px;

        width:54px;
        height:54px;
    }

}


/* =========================================================
   SMART CHAT - SMALL WHATSAPP LINK FIX
   ========================================================= */

.smart-whatsapp {
    margin: 10px 14px 14px 14px;
    padding-top: 10px;
    border-top: 1px solid #e5edf6;
}

.smart-whatsapp-label {
    display: block;
    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.smart-whatsapp-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px;

    width: auto !important;
    height: auto !important;

    padding: 8px 12px;

    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;

    color: #166534;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    transition: all 0.2s ease;
}

.smart-whatsapp-button:hover {
    background: #dcfce7;
    border-color: #86efac;
    color: #14532d;
}


/* IMPORTANT - prevents giant WhatsApp icon */

.smart-whatsapp-button svg {
    display: block !important;

    width: 17px !important;
    height: 17px !important;

    min-width: 17px !important;
    max-width: 17px !important;

    min-height: 17px !important;
    max-height: 17px !important;

    flex: 0 0 17px !important;

    fill: #25D366 !important;
}


/* Prevent any global SVG rule affecting WhatsApp */

.smart-chat .smart-whatsapp-button svg {
    width: 17px !important;
    height: 17px !important;
}

/* =========================================================
   SVG BUSINESS - ORANGE ACCENT POLISH
   ========================================================= */


/* ---------------------------------------------------------
   SECTION KICKERS
   --------------------------------------------------------- */

.section-kicker,
.eyebrow,
.service-category,
.solution-number,
.service-number{
    color:var(--orange) !important;
}


/* ---------------------------------------------------------
   SMALL ORANGE LINE UNDER SECTION TITLES
   --------------------------------------------------------- */

.section-heading h2{
    position:relative;
    padding-bottom:16px;
}

.section-heading h2::after{
    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    width:48px;
    height:3px;

    transform:translateX(-50%);

    background:var(--orange);

    border-radius:10px;
}


/* Left aligned headings */

.section-heading:not(.centered) h2::after{
    left:0;
    transform:none;
}


/* ---------------------------------------------------------
   TRUST STRIP ICONS
   --------------------------------------------------------- */

.trust-icon{
    color:var(--orange) !important;
}


/* ---------------------------------------------------------
   SERVICE CARDS
   --------------------------------------------------------- */

.service-card{
    position:relative;
    overflow:hidden;

    border-top:3px solid var(--orange) !important;
}


/* Orange service icons */

.service-icon{
    background:#fff3e4 !important;
    color:var(--orangeDark) !important;
}


/* ---------------------------------------------------------
   SOLUTION CARDS
   --------------------------------------------------------- */

.solution-card{
    position:relative;
    overflow:hidden;
}

.solution-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:var(--orange);
}

.solution-icon{
    background:#fff3e4 !important;
    color:var(--orangeDark) !important;
}


/* ---------------------------------------------------------
   SERVICE DETAIL VISUALS
   --------------------------------------------------------- */

.service-visual-circle{
    border:2px solid rgba(247,148,29,.35) !important;
}

.service-visual-circle svg{
    color:var(--blue700);
}

.service-visual-label{
    background:var(--orange) !important;
}


/* ---------------------------------------------------------
   HOW WE WORK
   --------------------------------------------------------- */

.step-card{
    position:relative;
    overflow:hidden;
}

.step-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:var(--orange);
}

.step-card > span{
    background:#fff2e3 !important;
    color:var(--orangeDark) !important;
}


/* ---------------------------------------------------------
   STAT CARDS
   --------------------------------------------------------- */

.stat-card{
    border-top:3px solid var(--orange) !important;
}

.stat-card strong{
    color:var(--orange) !important;
}


/* ---------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------- */

.contact-card{
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:var(--orange);
}


.contact-card-icon,
.location-icon{
    background:#fff3e4 !important;
    color:var(--orangeDark) !important;
}


/* ---------------------------------------------------------
   LOCATION CARDS
   --------------------------------------------------------- */

.location-card{
    border-top:3px solid var(--orange) !important;
}


/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

.service-card a,
.service-link,
.service-cta-link,
.location-map-link,
.smart-answer-link{
    color:var(--orangeDark) !important;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.main-nav > a:not(.nav-cta)::after{
    background:var(--orange) !important;
}


/* ---------------------------------------------------------
   CHAT
   --------------------------------------------------------- */

.smart-chat-input button,
.smart-enquiry-submit{
    background:var(--orange) !important;
}

.smart-chat-input button:hover,
.smart-enquiry-submit:hover{
    background:var(--orangeDark) !important;
}


/* ---------------------------------------------------------
   OPTIONAL ORANGE TEXT
   --------------------------------------------------------- */

.orange-accent{
    color:var(--orange) !important;
}

/* =========================================================
   SMART FAQ MANAGEMENT
   ========================================================= */

.faq-admin-table td:first-child{
    min-width:260px;
}

.faq-admin-table td:nth-child(2){
    min-width:230px;
    max-width:330px;
}

.faq-answer-preview{
    max-width:420px;

    line-height:1.5;
}

.faq-keyword-preview{
    color:#667085;

    font-size:10px;

    line-height:1.5;
}

/* =========================================================
   INSIGHTS - ICON SIZE FIX
   ========================================================= */

.insight-card-visual {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        140deg,
        var(--blue950),
        var(--blue700)
    );
}

.insight-card-visual svg {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    display: block;
    fill: #fff;
    flex: 0 0 52px;
}


/* Featured insight icon */

.featured-insight-icon {
    width: 115px;
    height: 115px;
    flex: 0 0 115px;
    display: grid;
    place-items: center;
}

.featured-insight-icon svg {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    display: block;
    fill: #fff;
}

/* =========================================================
   INSIGHTS - HEADER / SPACING FIX
   ========================================================= */

.insights-page-hero {
    padding-top: 80px;
}

.insights-page-hero-inner {
    min-height: 300px;
}


/* Latest insights section spacing */

.insights-grid {
    gap: 24px;
}


/* Keep cards tidy */

.insight-card {
    overflow: hidden;
    border-radius: 18px;
}

.insight-card-visual {
    height: 160px;
}


/* Tablet / mobile */

@media (max-width: 900px) {

    .insights-page-hero {
        padding-top: 60px;
    }

    .insight-card-visual {
        height: 140px;
    }
}