:root{
    --blue:#0072bc;
    --blue-dark:#00539b;
    --blue-deep:#002a52;
    --blue-night:#061827;
    --blue-light:#20a6f3;

    --yellow:#ffcc00;
    --yellow-light:#ffe36a;

    --white:#ffffff;
    --bg-soft:#f4f8fc;

    --text:#0b1a2b;
    --muted:#5f6f82;
    --line:rgba(0,114,188,.16);

    --shadow:0 18px 50px rgba(0,43,87,.12);
    --shadow-strong:0 30px 80px rgba(0,43,87,.2);

    --radius:22px;
}

/* RESET */

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:var(--text);
    line-height:1.65;
    overflow-x:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(100% - 28px,1180px);
    margin-inline:auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#ffffff;
}

.topbar{
    background:linear-gradient(90deg,var(--blue-night),var(--blue-deep),var(--blue));
    color:white;
    font-size:.72rem;
}

.topbar-inner{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
}

.topbar-inner span,
.topbar-inner a{
    color:white;
    white-space:nowrap;
}

.topbar-cta{
    height:34px;
    display:flex;
    align-items:center;
    padding:0 18px;
    background:linear-gradient(135deg,var(--yellow),var(--yellow-light));
    color:var(--blue-deep)!important;
    font-weight:900;
    text-transform:uppercase;
}

.main-header{
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,114,188,.14);
    box-shadow:0 8px 28px rgba(0,43,87,.08);
}

.header-inner{
    height:78px;
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
}

.logo{
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.logo img{
    width:230px;
    max-height:54px;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:24px;
}

.main-nav a{
    position:relative;
    display:flex;
    align-items:center;
    height:78px;
    color:var(--blue-deep);
    font-weight:900;
    text-transform:uppercase;
    font-size:.82rem;
    line-height:1;
    white-space:nowrap;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    height:3px;
    background:linear-gradient(90deg,var(--yellow),var(--blue-light));
    transform:scaleX(0);
    transform-origin:center;
    transition:.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active{
    color:var(--blue);
}

.main-nav a:hover::after,
.main-nav a.is-active::after{
    transform:scaleX(1);
}

.burger{
    display:none;
    width:42px;
    height:42px;
    border:0;
    border-radius:10px;
    background:var(--blue);
    padding:9px;
    cursor:pointer;
}

.burger span{
    display:block;
    height:3px;
    background:white;
    margin:6px 0;
    border-radius:10px;
}

/* HERO */

.hero,
.page-hero{
    position:relative;
    color:white;
    background:
        radial-gradient(circle at 15% 20%,rgba(255,204,0,.22),transparent 32%),
        linear-gradient(135deg,var(--blue-night),var(--blue-deep),var(--blue));
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        90deg,
        rgba(6,24,39,.78),
        rgba(0,43,87,.48),
        rgba(0,114,188,.20)
    );
}

.hero-large{
    min-height:620px;
    display:flex;
    align-items:center;
}

.page-hero{
    min-height:430px;
    display:flex;
    align-items:center;
}

.hero-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.35fr .65fr;
    gap:48px;
    align-items:center;
    padding:88px 0;
}

.hero-content,
.page-hero-content{
    position:relative;
    z-index:2;
    max-width:820px;
}

.page-hero-content{
    padding:88px 0;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--yellow);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:.78rem;
    margin-bottom:16px;
}

.eyebrow::before{
    content:"";
    width:34px;
    height:3px;
    background:var(--yellow);
    border-radius:999px;
}

.eyebrow.dark{
    color:var(--blue);
}

h1,
h2,
h3{
    font-weight:900;
    line-height:1.08;
}

h1{
    font-size:clamp(2.35rem,5.2vw,5.1rem);
    text-transform:uppercase;
    letter-spacing:-.045em;
    text-shadow:0 18px 45px rgba(0,0,0,.32);
}

h2{
    font-size:clamp(1.95rem,4vw,3.35rem);
    color:var(--blue-deep);
    text-transform:uppercase;
    letter-spacing:-.035em;
    margin-bottom:22px;
}

h2::after{
    content:"";
    display:block;
    width:84px;
    height:5px;
    margin:18px auto 0;
    border-radius:999px;
    background:linear-gradient(90deg,var(--yellow),var(--yellow-light));
}

h3{
    color:var(--blue-deep);
    font-size:1.32rem;
    margin-bottom:12px;
}

.hero p,
.page-hero p{
    max-width:720px;
    color:rgba(255,255,255,.92);
    font-size:1.08rem;
    margin-top:22px;
}

.hero-bullets{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.hero-bullets span{
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.18);
    color:white;
    padding:10px 14px;
    border-radius:999px;
    font-weight:800;
    backdrop-filter:blur(10px);
}

.hero-actions,
.premium-cta-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
}

/* HERO CARD FIX */

.hero-expertise-card{
    justify-self:end;
    align-self:center;
    width:100%;
    max-width:360px;
    padding:26px 28px;
    border-radius:22px;
    background:linear-gradient(135deg,rgba(0,114,188,.92),rgba(0,42,82,.88));
    border:1px solid rgba(255,255,255,.22);
    border-left:7px solid var(--yellow);
    box-shadow:0 30px 80px rgba(0,0,0,.32);
}

.hero-expertise-card strong{
    display:block;
    max-width:260px;
    color:var(--yellow);
    font-size:1.35rem;
    line-height:1.1;
    text-transform:uppercase;
}

.hero-expertise-card p{
    max-width:260px;
    color:white;
    margin-top:10px;
    font-size:.95rem;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 24px;
    border-radius:8px;
    font-weight:900;
    text-transform:uppercase;
    border:2px solid transparent;
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-yellow{
    background:linear-gradient(135deg,var(--yellow),var(--yellow-light));
    color:var(--blue-deep);
    box-shadow:0 16px 44px rgba(255,204,0,.34);
}

.btn-outline-light{
    color:white;
    border-color:var(--yellow);
    background:rgba(255,255,255,.08);
}

.btn-outline-light:hover{
    background:var(--yellow);
    color:var(--blue-deep);
}

.btn-white{
    background:white;
    color:var(--blue-deep);
}

/* SECTIONS */

.section{
    padding:96px 0;
}

.intro-section,
.why-section,
.light-section{
    background:linear-gradient(180deg,#ffffff,#f7fbff);
}

.section-title{
    max-width:920px;
    text-align:center;
    margin:0 auto 56px;
}

.section-title p{
    color:var(--muted);
    font-size:1.05rem;
}

.section-title.light h2,
.section-title.light p{
    color:white;
}

/* GRIDS */

.cards-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.brand-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1.1fr;
    gap:24px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:38px;
    align-items:start;
}

.premium-cta-inner{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:40px;
    align-items:center;
}

.job-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

/* CARDS */

.feature-card,
.service-block,
.info-card,
.contact-info,
.contact-form,
.why-item,
.brand-card{
    background:white;
    border-radius:var(--radius);
    padding:32px;
    border:1px solid var(--line);
    border-top:6px solid var(--yellow);
    box-shadow:var(--shadow);
}

.feature-card{
    text-align:center;
    transition:.25s ease;
}

.feature-card:hover,
.service-block:hover,
.why-item:hover,
.brand-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-strong);
}

.icon-circle{
    width:76px;
    height:76px;
    margin:0 auto 22px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at 30% 20%,rgba(255,204,0,.65),transparent 34%),
        linear-gradient(135deg,var(--blue),var(--blue-deep));
    color:white;
    font-size:1.8rem;
    border:5px solid white;
    box-shadow:0 16px 36px rgba(0,114,188,.25);
}

.feature-card p,
.why-item p,
.text-content p,
.brand-card p,
.service-block p,
.contact-info p,
.info-card p{
    color:var(--muted);
}

.feature-card a,
.brand-card a{
    display:inline-block;
    margin-top:18px;
    color:var(--blue);
    font-weight:900;
}

.service-block span,
.why-item span{
    color:var(--yellow);
    font-weight:900;
    font-size:1.35rem;
}

/* BLUE / BRANDS */

.blue-section,
.brands-section,
.premium-cta{
    background:
        radial-gradient(circle at 15% 20%,rgba(255,204,0,.22),transparent 30%),
        linear-gradient(135deg,var(--blue-night),var(--blue-deep),var(--blue));
    color:white;
}

.blue-section h2,
.blue-section p,
.premium-cta h2,
.premium-cta p{
    color:white;
}

.blue-section h2::after,
.premium-cta h2::after{
    margin-left:0;
}

.brands-section{
    position:relative;
    overflow:hidden;
}

.brands-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:repeating-linear-gradient(
        110deg,
        rgba(255,255,255,.055) 0,
        rgba(255,255,255,.055) 1px,
        transparent 1px,
        transparent 38px
    );
    pointer-events:none;
}

.brands-section .container{
    position:relative;
    z-index:2;
}

.brand-card{
    color:var(--text);
}

.brand-card img{
    height:58px;
    width:auto;
    margin-bottom:20px;
}

.brand-photo{
    border-radius:var(--radius);
    overflow:hidden;
    min-height:260px;
    box-shadow:var(--shadow);
}

.brand-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.job-list div{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    color:white;
    padding:16px;
    border-radius:14px;
    font-weight:900;
}

/* TEXT */

.text-content{
    max-width:980px;
}

.text-content p{
    font-size:1.05rem;
    margin-bottom:16px;
}

/* CONTACT */

.contact-card{
    padding:18px 0;
    border-bottom:1px solid var(--line);
}

.contact-card strong{
    display:block;
    color:var(--blue);
}

.contact-card a{
    color:var(--blue);
    font-weight:900;
}

.contact-form{
    display:grid;
    gap:16px;
}

.contact-form label{
    display:grid;
    gap:8px;
    font-weight:800;
    color:var(--blue-deep);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:15px;
    border:1px solid var(--line);
    border-radius:12px;
    font:inherit;
}

.contact-form textarea{
    min-height:150px;
    resize:vertical;
}

.checkbox{
    display:flex!important;
    flex-direction:row!important;
    align-items:flex-start;
    gap:12px!important;
    font-weight:400!important;
}

.checkbox input{
    width:auto;
    margin-top:6px;
}

.hidden-field{
    display:none;
}

.form-success{
    background:#e9f9ef;
    color:#166534;
    padding:16px;
    border-radius:12px;
    font-weight:900;
}

.form-errors{
    background:#fff1f2;
    color:#9f1239;
    padding:16px;
    border-radius:12px;
}

/* CTA */

.premium-cta{
    padding:72px 0;
}

.premium-cta-actions{
    justify-content:flex-end;
}

/* FOOTER */

.site-footer{
    background:linear-gradient(180deg,var(--blue-night),#001224);
    color:white;
    padding:60px 0 24px;
    border-top:5px solid var(--yellow);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.45fr 1fr 1fr 1fr;
    gap:42px;
}

.footer-logo{
    width:160px;
    margin-bottom:18px;
}

.footer-grid h3{
    color:white;
    text-transform:uppercase;
    font-size:1rem;
    margin-bottom:12px;
}

.footer-grid p,
.footer-grid a{
    color:rgba(255,255,255,.72);
}

.footer-grid a{
    display:block;
    margin:7px 0;
}

.footer-grid a:hover{
    color:var(--yellow);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:34px;
    padding-top:18px;
    display:flex;
    justify-content:space-between;
    gap:14px;
    color:rgba(255,255,255,.62);
    font-size:.88rem;
}

.footer-bottom div{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* FLOATING */

.floating-call{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:900;
    background:linear-gradient(135deg,var(--yellow),var(--yellow-light));
    color:var(--blue-deep);
    padding:14px 22px;
    border-radius:999px;
    font-weight:900;
    text-align:center;
    box-shadow:0 18px 50px rgba(255,204,0,.42);
}

/* ANIMATION SAFE */

.reveal{
    opacity:1;
    transform:none;
}

/* RESPONSIVE TABLET */

@media(max-width:1050px){
    .topbar-inner{
        min-height:auto;
        padding:8px 0;
        flex-wrap:wrap;
        justify-content:flex-start;
        gap:8px 14px;
        line-height:1.3;
    }

    .topbar-cta{
        height:auto;
        padding:8px 12px;
        border-radius:6px;
    }

    .header-inner{
        height:74px;
        min-height:74px;
    }

    .logo img{
        width:200px;
        max-height:48px;
    }

    .burger{
        display:block;
        flex:0 0 auto;
    }

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        background:white;
        padding:18px 22px;
        box-shadow:0 20px 45px rgba(0,43,87,.14);
        border-top:1px solid rgba(0,114,188,.14);
    }

    .main-nav.open{
        display:flex;
    }

    .main-nav a{
        width:100%;
        height:auto;
        padding:13px 0;
        font-size:.9rem;
    }

    .main-nav a::after{
        display:none;
    }

    .hero-large{
        min-height:auto;
    }

    .hero-inner,
    .brand-grid,
    .why-grid,
    .service-grid,
    .split,
    .contact-grid,
    .premium-cta-inner,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-inner{
        padding:72px 0;
    }

    .hero-expertise-card{
        justify-self:start;
        max-width:100%;
    }

    .cards-3{
        grid-template-columns:1fr;
    }

    .job-list{
        grid-template-columns:1fr;
    }

    .premium-cta-actions{
        justify-content:flex-start;
    }
}

/* RESPONSIVE MOBILE */

@media(max-width:560px){
    .container{
        width:min(100% - 26px,1180px);
    }

    .topbar{
        font-size:.72rem;
    }

    .topbar-inner span{
        display:none;
    }

    .header-inner{
        height:68px;
        min-height:68px;
    }

    .logo img{
        width:170px;
        max-height:42px;
    }

    h1{
        font-size:2.25rem;
    }

    h2{
        font-size:1.9rem;
    }

    .section{
        padding:70px 0;
    }

    .hero-inner,
    .page-hero-content{
        padding:64px 0;
    }

    .hero-bullets{
        flex-direction:column;
    }

    .hero-bullets span{
        width:fit-content;
    }

    .hero-actions,
    .premium-cta-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .feature-card,
    .service-block,
    .info-card,
    .contact-info,
    .contact-form,
    .why-item,
    .brand-card{
        padding:26px;
    }

    .floating-call{
        left:18px;
        right:18px;
        bottom:18px;
    }

    .footer-bottom{
        flex-direction:column;
    }
}