/* =====================================
HOME HERO
===================================== */

.hero-home{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    padding:180px 0 90px;
    overflow:hidden;
    transition:background-image .4s ease-in-out;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(3,12,28,.82) 0%,
            rgba(3,12,28,.65) 35%,
            rgba(3,12,28,.35) 60%,
            rgba(3,12,28,.10) 100%
        );
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content-left{
    max-width:680px;
    margin-left:0px;
}

.hero-eyebrow{
    display:inline-block;
    margin-bottom:20px;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#9fd2ff;
}

.hero-content h1{
    margin:0;
    font-size:clamp(56px,7vw,56px);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-1.4px;
    color:#ffffff;
    text-shadow:
        0 4px 20px rgba(0,0,0,.35),
        0 1px 0 rgba(0,0,0,.25);
}

.hero-content p{
    max-width:620px;
    margin:26px 0 36px;
    font-size:20px;
    line-height:1.7;
    color:#e8eef6;
}

.hero-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:12px 22px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:10px;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:all .2s ease;
}

.hero-link:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

.hero-link-primary{
    background:var(--color-primary);
    border-color:var(--color-primary);
}

.hero-link-primary:hover{
    background:var(--color-primary-dark);
    border-color:var(--color-primary-dark);
}

/* HERO ARROWS */

.hero-arrows{
    position:absolute;
    left:26px;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hero-arrow{
    width:54px;
    height:54px;
    padding:0;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.94);
    color:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 22px rgba(0,0,0,.18);
    cursor:pointer;
    transition:transform .2s ease, background .2s ease;
}

.hero-arrow:hover{
    transform:scale(1.06);
    background:#fff;
}

.hero-arrow svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

/* =====================================
SEZIONI GENERICHE
===================================== */

.section-heading{
    margin-bottom:50px;
    text-align:center;
}

.section-heading h2{
    color:#fff;
    font-size:clamp(28px,4vw,40px);
    margin-bottom:12px;
}

.section-intro{
    color:#d1d5db;
    margin:0;
    font-size:17px;
    line-height:1.7;
}

.section-kicker{
    display:inline-block;
    margin-bottom:16px;
    color:var(--color-primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

/* =====================================
SERVIZI
===================================== */

.services-section{
    padding:90px 0;
}

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

.service-card{
    display:flex;
    flex-direction:column;
    min-height:100%;
    background:#111827;
    border:1px solid rgba(255,255,255,.06);
    border-radius:16px;
    overflow:hidden;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 32px rgba(0,0,0,.35);
    border-color:rgba(45,156,255,.24);
}

.service-card-image img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card-body{
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}

.service-card-body h3{
    margin:0;
    font-size:22px;
    color:#fff;
}

.service-card-body p{
    margin:0;
    color:#cbd5e1;
    line-height:1.7;
}

.service-card-footer{
    padding:0 24px 24px;
}

.service-card-footer a{
    display:inline-flex;
    align-items:center;
    color:var(--color-primary);
    font-weight:600;
    font-size:14px;
    text-decoration:none;
}

.service-card-footer a:hover{
    color:#78bbff;
}

/* =====================================
ABOUT
===================================== */

.about-section{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:48px;
    align-items:center;
}

.about-media img{
    width:100%;
    border-radius:20px;
    box-shadow:0 18px 36px rgba(0,0,0,.24);
}

.about-content h2{
    margin-bottom:18px;
    font-size:clamp(30px,4vw,44px);
}

.about-text{
    color:#d1d5db;
    line-height:1.8;
    margin-bottom:28px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.about-feature{
    padding:18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:rgba(255,255,255,.03);
    color:#dbe4f0;
    line-height:1.7;
}

.about-actions{
    margin-top:28px;
}

/* =====================================
NUMERI / STATS
===================================== */

.stats-section{
    position:relative;
    padding:100px 0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.stats-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.76);
}

.stats-section .site-shell{
    position:relative;
    z-index:2;
}

.stats-heading h2{
    color:#0f172a;
    margin-bottom:0;
}

.stats-map-wrap{
    position:relative;
    min-height:360px;
    margin-top:26px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.stats-map-bg{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:min(100%, 760px);
    opacity:.22;
    pointer-events:none;
    user-select:none;
}

.stats-line{
    position:absolute;
    top:47%;
    left:50%;
    transform:translateX(-50%);
    width:min(100%, 1310px);
    border-top:3px dotted rgba(15,23,42,.14);
    z-index:1;
}

.stats-grid-visual{
    position:relative;
    z-index:2;
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    align-items:start;
}

.stat-item{
    text-align:center;
    color:#0f172a;
}

.stat-marker{
    width:70px;
    margin:0 auto 22px;
    color:#3b82f6;
}

.stat-marker svg{
    width:70px;
    height:70px;
    display:block;
}

.stat-number{
    font-size:42px;
    font-weight:800;
    line-height:1;
    color:#60a5fa;
    margin-bottom:10px;
}

.stat-item p{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#0f172a;
}

.stats-cta{
    margin-top:26px;
    text-align:center;
    color:#0f172a;
    font-size:16px;
}

.stats-cta a{
    color:#0ea5e9;
    font-weight:700;
}

.stats-cta a:hover{
    color:#0284c7;
}

/* =====================================
CTA FINALE
===================================== */

.cta-home{
    padding:90px 0;
    background:#0b1220;
    border-top:1px solid rgba(255,255,255,.05);
}

.cta-home-box{
    max-width:900px;
    margin:0 auto;
    padding:42px 32px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.cta-home-box h2{
    color:#fff;
    font-size:clamp(28px,4vw,42px);
    margin-bottom:18px;
}

.cta-home-box p{
    max-width:760px;
    margin:0 auto 30px;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

/* =====================================
HERO PAGINE INTERNE
===================================== */

.contact-page-hero,
.consulting-page-hero,
.privacy-page-hero,
.login-page-hero,
.error-page-hero,
.careers-page-hero,
.certifications-page-hero,
.ethics-page-hero{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:flex-end;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:190px 0 80px;
    overflow:hidden;
}

.contact-page-hero-overlay,
.consulting-page-hero-overlay,
.privacy-page-hero-overlay,
.login-page-hero-overlay,
.error-page-hero-overlay,
.careers-page-hero-overlay,
.certifications-page-hero-overlay,
.ethics-page-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(4,10,24,.74) 0%,
        rgba(4,10,24,.58) 45%,
        rgba(4,10,24,.84) 100%
    );
}

.contact-page-hero-content,
.consulting-page-hero-content,
.privacy-page-hero-content,
.login-page-hero-content,
.error-page-hero-content,
.careers-page-hero-content,
.certifications-page-hero-content,
.ethics-page-hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#fff;
}

.contact-page-kicker,
.consulting-page-kicker,
.privacy-page-kicker,
.login-page-kicker,
.error-page-kicker,
.careers-page-kicker,
.certifications-page-kicker,
.ethics-page-kicker{
    display:inline-block;
    margin-bottom:16px;
    color:#8ec5ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.contact-page-hero-content h1,
.consulting-page-hero-content h1,
.privacy-page-hero-content h1,
.login-page-hero-content h1,
.careers-page-hero-content h1,
.certifications-page-hero-content h1,
.ethics-page-hero-content h1{
    margin:0 0 18px;
    font-size:clamp(42px, 6vw, 72px);
    line-height:1.04;
    color:#fff;
}

.error-page-hero-content h1{
    margin:0 0 16px;
    font-size:clamp(64px,10vw,120px);
    line-height:1;
    color:#fff;
}

.contact-page-hero-content p,
.consulting-page-hero-content p,
.privacy-page-hero-content p,
.login-page-hero-content p,
.error-page-hero-content p,
.careers-page-hero-content p,
.certifications-page-hero-content p,
.ethics-page-hero-content p{
    margin:0;
    max-width:720px;
    color:#d9e5f4;
    font-size:18px;
    line-height:1.8;
}

.contact-page-section,
.consulting-page-section,
.privacy-page-section,
.login-page-section,
.error-page-section,
.careers-page-section,
.certifications-page-section,
.ethics-page-section{
    background:linear-gradient(180deg, #0b1322 0%, #0a1220 100%);
}

/* =====================================
CONTACT PAGE
===================================== */

.contact-page-heading h2{
    color:#fff;
}

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

.contact-card{
    padding:30px 24px;
    text-align:center;
    border-radius:18px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
    transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    border-color:rgba(45,156,255,.28);
    box-shadow:0 20px 45px rgba(0,0,0,.24);
}

.contact-card-icon{
    width:58px;
    height:58px;
    margin:0 auto 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
}

.contact-card-icon svg{
    width:28px;
    height:28px;
    fill:currentColor;
}

.contact-card h3{
    margin:0 0 10px;
    font-size:24px;
    color:#fff;
}

.contact-card p{
    margin:0 0 18px;
    color:#d3deec;
    line-height:1.8;
}

.contact-card a{
    color:#7cc0ff;
    font-weight:700;
}

.contact-card a:hover{
    color:#a9d8ff;
}

.contact-map-section{
    background:#081120;
    padding-top:0;
}

.contact-map-box{
    display:grid;
    grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
    gap:28px;
    padding:34px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.02) 100%);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 45px rgba(0,0,0,.24);
}

.contact-map-content h2{
    margin-bottom:16px;
    font-size:clamp(30px, 4vw, 42px);
    color:#fff;
}

.contact-map-content p{
    color:#d1dbe8;
    line-height:1.85;
    margin-bottom:24px;
}

.contact-map-details{
    display:grid;
    gap:16px;
    margin-bottom:24px;
}

.contact-map-detail{
    padding:16px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
}

.contact-map-detail strong{
    display:block;
    margin-bottom:4px;
    color:#fff;
    font-size:15px;
}

.contact-map-detail span{
    color:#d4deeb;
}

.contact-map-frame{
    min-height:420px;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}

.contact-map-frame iframe{
    display:block;
    width:100%;
    height:100%;
}

/* =====================================
CONSULTING PAGE
===================================== */

.consulting-page-heading h2{
    color:#fff;
}

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

.consulting-card{
    padding:28px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
    transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.consulting-card:hover{
    transform:translateY(-6px);
    border-color:rgba(45,156,255,.28);
    box-shadow:0 20px 45px rgba(0,0,0,.24);
}

.consulting-card-icon{
    width:58px;
    height:58px;
    margin-bottom:20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
}

.consulting-card-icon svg{
    width:28px;
    height:28px;
    fill:currentColor;
}

.consulting-card h3{
    margin:0 0 16px;
    font-size:24px;
    color:#fff;
}

.consulting-card ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:12px;
}

.consulting-card li{
    position:relative;
    padding-left:18px;
    color:#d3deec;
    line-height:1.75;
}

.consulting-card li::before{
    content:"";
    position:absolute;
    top:11px;
    left:0;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--color-primary);
}

.consulting-cta-section{
    background:#081120;
    padding-top:0;
}

.consulting-cta-box{
    max-width:920px;
    margin:0 auto;
    padding:42px 32px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.consulting-cta-box h2{
    color:#fff;
    font-size:clamp(28px,4vw,42px);
    margin-bottom:18px;
}

.consulting-cta-box p{
    max-width:760px;
    margin:0 auto 30px;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

/* =====================================
CAREERS PAGE
===================================== */

.careers-layout{
    display:grid;
    grid-template-columns:minmax(320px, .88fr) minmax(0, 1.12fr);
    gap:30px;
    align-items:start;
}

.careers-intro-box,
.careers-form-box{
    position:relative;
    padding:30px 26px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.careers-intro-box h2{
    margin-bottom:16px;
    font-size:clamp(30px, 4vw, 42px);
    color:#fff;
}

.careers-intro-box p{
    color:#d4deeb;
    line-height:1.85;
}

.careers-benefits{
    display:grid;
    gap:16px;
    margin-top:26px;
}

.careers-benefit{
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
}

.careers-benefit strong{
    display:block;
    margin-bottom:6px;
    color:#fff;
    font-size:17px;
}

.careers-benefit span{
    color:#d4deeb;
    line-height:1.7;
}

.careers-form{
    display:grid;
    gap:18px;
}

.careers-form-row{
    display:grid;
    gap:18px;
}

.careers-form-row-2{
    grid-template-columns:repeat(2, 1fr);
}

.careers-field{
    display:grid;
    gap:8px;
}

.careers-field label{
    font-size:15px;
    font-weight:700;
    color:#fff;
}

.careers-field label span{
    color:#94a3b8;
    font-weight:500;
}

.careers-field input,
.careers-field select,
.careers-field textarea{
    width:100%;
    min-height:52px;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    background:rgba(0,0,0,.18);
    color:#fff;
    outline:none;
    transition:border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.careers-field textarea{
    min-height:150px;
    resize:vertical;
}

.careers-field input:focus,
.careers-field select:focus,
.careers-field textarea:focus{
    border-color:rgba(45,156,255,.55);
    background:rgba(0,0,0,.24);
    box-shadow:0 0 0 4px rgba(45,156,255,.10);
}

.careers-field input::placeholder,
.careers-field textarea::placeholder{
    color:#8ea0b8;
}

.careers-checkbox{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#d4deeb;
    line-height:1.7;
    cursor:pointer;
}

.careers-checkbox input[type="checkbox"]{
    width:18px;
    height:18px;
    margin-top:4px;
    accent-color:var(--color-primary);
    flex:0 0 auto;
}

.careers-checkbox a{
    color:#7cc0ff;
    font-weight:700;
}

.careers-checkbox a:hover{
    color:#a9d8ff;
}

.careers-submit-btn{
    width:100%;
    min-height:54px;
    border:0;
    border-radius:12px;
    background:var(--color-primary);
    color:#fff;
    font-size:17px;
    font-weight:700;
    transition:background-color .2s ease, transform .2s ease;
}

.careers-submit-btn:hover{
    background:var(--color-primary-dark);
}

.careers-loading-spinner{
    position:absolute;
    inset:0;
    z-index:5;
    background:rgba(8,17,32,.74);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.careers-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(0,0,0,.72);
}

.careers-modal-content{
    position:fixed;
    top:50%;
    left:50%;
    width:min(92vw, 440px);
    transform:translate(-50%, -50%);
    background:#ffffff;
    color:#111827;
    border-radius:16px;
    padding:26px 22px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.24);
}

.careers-modal-content .close{
    position:absolute;
    top:10px;
    right:14px;
    font-size:28px;
    line-height:1;
    cursor:pointer;
    color:#111827;
}

.careers-modal-content p{
    margin:0;
    line-height:1.7;
    color:#334155;
}

/* =====================================
CERTIFICATIONS PAGE
===================================== */

.certifications-layout{
    display:grid;
    grid-template-columns:minmax(0, 1.2fr) minmax(300px, .75fr);
    gap:28px;
    align-items:start;
}

.certifications-content-box,
.certifications-documents-box{
    padding:30px 26px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.certifications-content-box h2{
    margin-bottom:18px;
    font-size:clamp(30px, 4vw, 42px);
    color:#fff;
}

.certifications-content-box h3{
    margin:30px 0 18px;
    font-size:24px;
    color:#fff;
}

.certifications-content-box p{
    color:#d4deeb;
    line-height:1.85;
}

.certifications-features{
    display:grid;
    gap:18px;
}

.cert-feature{
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
}

.cert-feature h4{
    margin:0 0 10px;
    font-size:20px;
    color:#fff;
}

.cert-feature p{
    margin:0;
}

.certifications-esg-box{
    margin-top:34px;
    padding:26px 24px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.16);
}

.certifications-esg-kicker{
    display:inline-block;
    margin-bottom:12px;
    color:#8ec5ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.certifications-esg-box h3{
    margin:0 0 18px;
    font-size:clamp(28px, 4vw, 38px);
    color:#fff;
}

.certifications-esg-box p{
    margin:0 0 18px;
    color:#d4deeb;
    line-height:1.9;
}

.certifications-esg-box p:last-of-type{
    margin-bottom:0;
}

.certifications-quote{
    margin:26px 0 0;
    padding:20px 22px;
    border-left:4px solid var(--color-primary);
    border-radius:14px;
    background:rgba(45,156,255,.08);
    color:#eaf3ff;
    font-size:17px;
    line-height:1.8;
    font-weight:600;
}

.certifications-documents-box h3{
    margin-bottom:18px;
    font-size:24px;
    color:#fff;
}

.certifications-documents-list{
    list-style:none;
    display:grid;
    gap:12px;
}

.certifications-documents-list li a,
.certifications-documents-list li.is-pending{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:16px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    color:#dbe4f0;
}

.certifications-documents-list li a:hover{
    border-color:rgba(45,156,255,.28);
    color:#fff;
}

.certifications-documents-list strong{
    color:#7cc0ff;
    font-size:13px;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.certifications-documents-list li.is-pending strong{
    color:#fbbf24;
}

/* =====================================
ETHICS PAGE
===================================== */

.ethics-layout{
    display:grid;
    grid-template-columns:minmax(0, 1.2fr) minmax(300px, .75fr);
    gap:28px;
    align-items:start;
}

.ethics-content-box,
.ethics-documents-box{
    padding:30px 26px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.ethics-content-box h2{
    margin-bottom:18px;
    font-size:clamp(30px, 4vw, 42px);
    color:#fff;
}

.ethics-content-box h3{
    margin:30px 0 18px;
    font-size:24px;
    color:#fff;
}

.ethics-content-box p{
    color:#d4deeb;
    line-height:1.9;
}

.ethics-points{
    display:grid;
    gap:18px;
    margin-top:12px;
}

.ethics-point{
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
}

.ethics-point h4{
    margin:0 0 10px;
    font-size:20px;
    color:#fff;
}

.ethics-point p{
    margin:0;
}

.ethics-note{
    margin-top:26px;
    padding:20px;
    border-radius:16px;
    background:rgba(45,156,255,.08);
    border:1px solid rgba(45,156,255,.18);
}

.ethics-note a{
    color:#7cc0ff;
    font-weight:700;
}

.ethics-note a:hover{
    color:#a9d8ff;
}

.ethics-documents-box h3{
    margin-bottom:18px;
    font-size:24px;
    color:#fff;
}

.ethics-documents-list{
    list-style:none;
    display:grid;
    gap:12px;
}

.ethics-documents-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:16px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    color:#dbe4f0;
}

.ethics-documents-list li a:hover{
    border-color:rgba(45,156,255,.28);
    color:#fff;
}

.ethics-documents-list strong{
    color:#7cc0ff;
    font-size:13px;
    letter-spacing:.4px;
    text-transform:uppercase;
}

/* =====================================
PRIVACY PAGE
===================================== */

.privacy-policy-layout{
    display:grid;
    grid-template-columns:minmax(0, 1.2fr) minmax(300px, .68fr);
    gap:28px;
    align-items:start;
}

.privacy-policy-content-box,
.privacy-policy-download-box{
    padding:30px 26px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.privacy-policy-header{
    margin-bottom:28px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.privacy-policy-header h2{
    margin-bottom:10px;
    font-size:clamp(30px, 4vw, 42px);
    color:#fff;
}

.privacy-policy-header p{
    margin:0;
    color:#9fb0c5;
    font-size:15px;
}

.privacy-policy-block{
    margin-bottom:26px;
}

.privacy-policy-block:last-child{
    margin-bottom:0;
}

.privacy-policy-block h3{
    margin-bottom:14px;
    font-size:24px;
    color:#fff;
}

.privacy-policy-block p{
    color:#d4deeb;
    line-height:1.9;
}

.privacy-policy-block ul{
    list-style:none;
    margin:14px 0 0;
    padding:0;
    display:grid;
    gap:10px;
}

.privacy-policy-block li{
    position:relative;
    padding-left:18px;
    color:#d4deeb;
    line-height:1.8;
}

.privacy-policy-block li::before{
    content:"";
    position:absolute;
    top:11px;
    left:0;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--color-primary);
}

.privacy-policy-block a{
    color:#7cc0ff;
    font-weight:700;
}

.privacy-policy-block a:hover{
    color:#a9d8ff;
}

.privacy-policy-download-box h3{
    margin-bottom:14px;
    font-size:24px;
    color:#fff;
}

.privacy-policy-download-box p{
    margin-bottom:22px;
    color:#d4deeb;
    line-height:1.8;
}

/* =====================================
LOGIN PAGE
===================================== */

.login-layout{
    display:flex;
    justify-content:center;
}

.login-box{
    width:min(100%,480px);
    padding:34px 30px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.login-box-header{
    text-align:center;
    margin-bottom:26px;
}

.login-box-header h2{
    margin-bottom:10px;
    font-size:clamp(28px,4vw,36px);
    color:#fff;
}

.login-box-header p{
    color:#d4deeb;
    line-height:1.7;
}

.login-form{
    display:grid;
    gap:18px;
}

.login-field{
    display:grid;
    gap:8px;
}

.login-field label{
    font-size:15px;
    font-weight:700;
    color:#fff;
}

.login-field input{
    width:100%;
    min-height:52px;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    background:rgba(0,0,0,.18);
    color:#fff;
}

.login-field input::placeholder{
    color:#8ea0b8;
}

.login-submit-btn{
    margin-top:10px;
    width:100%;
    min-height:54px;
    border:0;
    border-radius:12px;
    background:var(--color-primary);
    color:#fff;
    font-size:17px;
    font-weight:700;
    opacity:.55;
}

.login-disabled-note{
    margin-top:20px;
    text-align:center;
    color:#9fb0c5;
    font-size:14px;
}

/* =====================================
ERROR PAGE
===================================== */

.error-box{
    max-width:560px;
    margin:0 auto;
    padding:40px 32px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.error-icon{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:var(--color-primary-soft);
    color:var(--color-primary);
}

.error-icon svg{
    width:30px;
    height:30px;
    fill:currentColor;
}

.error-box h2{
    margin-bottom:14px;
    font-size:28px;
    color:#fff;
}

.error-box p{
    margin-bottom:26px;
    color:#d4deeb;
    line-height:1.8;
}

.error-box .btn-primary{
    min-height:48px;
    padding:12px 22px;
}

/* =====================================
RESPONSIVE
===================================== */

@media (max-width: 992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:36px;
    }

    .about-features{
        grid-template-columns:1fr 1fr;
    }

    .hero-content-left{
        margin-left:24px;
        max-width:620px;
    }

    .hero-home{
        padding-top:170px;
    }

    .stats-grid-visual{
        grid-template-columns:repeat(2,1fr);
        row-gap:38px;
    }

    .stats-line{
        display:none;
    }

    .stats-map-wrap{
        min-height:auto;
    }

    .contact-cards-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .contact-map-box{
        grid-template-columns:1fr;
    }

    .contact-map-frame{
        min-height:360px;
    }

    .consulting-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .careers-layout,
    .certifications-layout,
    .ethics-layout,
    .privacy-policy-layout{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .hero-home{
        min-height:720px;
        padding:150px 0 70px;
    }

    .hero-content-left{
        margin-left:24px;
        margin-right:24px;
        max-width:none;
    }

    .hero-content h1{
        font-size:clamp(40px,11vw,58px);
        line-height:1.06;
    }

    .hero-content p{
        font-size:17px;
        line-height:1.65;
    }

    .hero-eyebrow{
        font-size:14px;
        letter-spacing:1.2px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .contact-page-hero,
    .consulting-page-hero,
    .privacy-page-hero,
    .login-page-hero,
    .error-page-hero,
    .careers-page-hero,
    .certifications-page-hero,
    .ethics-page-hero{
        min-height:460px;
        padding:150px 0 60px;
    }

    .contact-page-hero-content h1,
    .consulting-page-hero-content h1,
    .privacy-page-hero-content h1,
    .login-page-hero-content h1,
    .careers-page-hero-content h1,
    .certifications-page-hero-content h1,
    .ethics-page-hero-content h1{
        font-size:clamp(34px, 10vw, 52px);
    }

    .error-page-hero-content h1{
        font-size:clamp(56px,14vw,90px);
    }

    .contact-page-hero-content p,
    .consulting-page-hero-content p,
    .privacy-page-hero-content p,
    .login-page-hero-content p,
    .error-page-hero-content p,
    .careers-page-hero-content p,
    .certifications-page-hero-content p,
    .ethics-page-hero-content p{
        font-size:17px;
    }

    .contact-map-box,
    .careers-intro-box,
    .careers-form-box,
    .certifications-content-box,
    .certifications-documents-box,
    .ethics-content-box,
    .ethics-documents-box,
    .privacy-policy-content-box,
    .privacy-policy-download-box,
    .login-box,
    .error-box{
        padding:24px 20px;
    }

    .careers-form-row-2{
        grid-template-columns:1fr;
    }

    .cta-home-box,
    .consulting-cta-box{
        padding:34px 22px;
    }
}

@media (max-width: 600px){
    .services-grid,
    .consulting-grid,
    .contact-cards-grid{
        grid-template-columns:1fr;
    }

    .stats-grid-visual{
        grid-template-columns:1fr;
    }

    .hero-actions{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-arrows{
        display:none;
    }

    .stats-map-bg{
        width:92%;
        opacity:.14;
    }

    .stat-number{
        font-size:36px;
    }

    .consulting-card,
    .contact-card{
        padding:24px 20px;
    }

    .contact-map-frame{
        min-height:300px;
    }

    .certifications-esg-box{
        padding:22px 18px;
    }

    .certifications-quote{
        padding:18px 16px;
        font-size:16px;
    }
}