@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');


/* =========================================================================
   TOKENS
   ========================================================================= */

:root{
    /* Core palette */
    --ink:var(--h-bg-elevated);
    --ink-soft:#131F1B;
    --evergreen:#1C3D34;
    --evergreen-light:#2C5449;
    --brass:#B08D57;
    --brass-light:#CBA875;
    --ivory:#F7F5F0;
    --ivory-deep:#EFEBE2;
    --white:#FFFFFF;
    --slate:#4B5148;
    --slate-light:#7A8078;
    --hairline:rgba(11,18,16,.12);
    --hairline-light:rgba(255,255,255,.16);

    /* Type */
    --font-display:'Fraunces', serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'IBM Plex Mono', monospace;

    /* Signature clip */
    --clip-sm:polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
    --clip-md:polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
    --clip-lg:polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
}

/* =========================================================================
   GLOBAL
   ========================================================================= */

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

body{
    font-family:var(--font-body);
    color:var(--slate);
    background:var(--ivory);
    margin:0;
    -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
    font-family:var(--font-display);
    color:var(--ink);
    font-weight:600;
    letter-spacing:-.01em;
}

a{ color:inherit; }

.container{
    width:100%;
    max-width:1680px;
    margin:auto;
    padding:0 80px;
}

.main, body, main{
    background:var(--ivory);
}

/* Utility: eyebrow label (mono, tracked out — used as a quiet structural device) */
.eyebrow{
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--brass);
}

/* ===========================
   HEADER
=========================== */

.site-header{
    background:var(--ink);
    position:sticky;
    top:0;
    z-index:9999;
    border-bottom:1px solid var(--hairline-light);
}

.navbar{
    max-width:1600px;
    margin:auto;
    height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 80px;
}

.logo{ flex-shrink:0; }

.logo img{
    height:62px;
    width:auto;
    display:block;
    filter:brightness(-10) invert(1);
}

/* Menu Area */

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:48px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu > li{
    position:relative;
    white-space:nowrap;
}

.nav-menu > li > a{
    color:var(--ivory);
    text-decoration:none;
    font-family:var(--font-body);
    font-size:14px;
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
    line-height:84px;
    display:block;
    position:relative;
    transition:.25s;
}

.nav-menu > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:28px;
    width:0%;
    height:1px;
    background:var(--brass);
    transition:.3s;
}

.nav-menu > li > a:hover{
    color:var(--brass-light);
}

.nav-menu > li > a:hover::after{
    width:100%;
}

/* Dropdown */

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    background:var(--ink-soft);
    border:1px solid var(--hairline-light);
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.25s;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.nav-menu li:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;
    padding:14px 22px;
    color:var(--ivory);
    text-decoration:none;
    font-size:13px;
    letter-spacing:.03em;
    border-bottom:1px solid var(--hairline-light);
    line-height:normal;
    transition:.2s;
}

.dropdown-menu li a:hover{
    background:rgba(176,141,87,.12);
    color:var(--brass-light);
    padding-left:28px;
}

/* Mobile Toggle */
.mobile-toggle{
    display:none;
    width:44px;
    height:44px;
    border:1px solid rgba(176,141,87,.5);
    border-radius:0;
    clip-path:var(--clip-sm);
    color:var(--ivory);
    font-size:24px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
}

.mobile-toggle:hover{
    background:rgba(176,141,87,.15);
    border-color:var(--brass);
}

.submenu-toggle{
    display:none;
    border:none;
    background:transparent;
    color:var(--ivory);
    font-size:18px;
    cursor:pointer;
    padding:0;
    margin-left:12px;
    transition:.2s ease;
}

.submenu-toggle:hover{ color:var(--brass); }

/* ===================================
   FOOTER
=================================== */

.site-footer{
    background:var(--ink);
    color:var(--ivory);
    padding:6px 0 0;
    border-top:1px solid var(--hairline-light);
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo img{
    width:300px;
    margin-bottom:0px;
}

.footer-grid h3{
    font-family:var(--font-mono);
    font-size:13px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:20px;
    color:var(--brass-light);
}

.footer-grid p{
    margin-bottom:10px;
    line-height:1.7;
    color:rgba(247,245,240,.75);
    font-size:14px;
}

.footer-grid a{
    color:rgba(247,245,240,.75);
    text-decoration:none;
    transition:.25s;
    font-size:14px;
}

.footer-grid a:hover{
    color:var(--brass-light);
    padding-left:2px;
}

.footer-bottom{
    border-top:1px solid var(--hairline-light);
    margin-top:30px;
    padding:22px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.footer-bottom p{
    margin:0;
    font-size:12px;
    letter-spacing:.03em;
    color:rgba(247,245,240,.55);
    font-family:var(--font-mono);
}

.footer-bottom a{
    color:rgba(247,245,240,.75);
    text-decoration:none;
    font-size:12px;
}

.footer-bottom a:hover{ color:var(--brass-light); }

/* ===================================
   TABLET
=================================== */

@media(max-width:1200px){
    .container{ padding:0 40px; }
    .nav-menu{ gap:32px; }
    .navbar{ padding:0 40px; }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

.container{ padding:0 20px; }

.navbar{
    height:68px;
    position:relative;
    padding:0 20px;
}

.logo img{
    width:250px;
    margin-bottom:0px;
}

.mobile-toggle{
    display:flex;
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    z-index:1001;
}

.nav-menu{
    display:flex;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    background:var(--ink);
    padding:8px 0 8px 20px;
    gap:0;
    border-top:1px solid var(--hairline-light);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
    z-index:999;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .35s ease, opacity .35s ease;
}

.nav-menu.show{
    max-height:1200px;
    opacity:1;
}

.nav-menu > li{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    position:relative;
    border-bottom:1px solid var(--hairline-light);
    padding:0;
}

.nav-menu > li > a{
    color:var(--ivory);
    line-height:1.4;
    padding:14px 16px;
    display:block;
    width:calc(100% - 54px);
    font-size:13px;
}

.nav-menu > li > a::after{ display:none; }

.nav-menu .submenu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    position:absolute;
    right:16px;
    top:12px;
    background:rgba(176,141,87,.14);
    border:1px solid rgba(176,141,87,.3);
    border-radius:0;
}

.nav-menu .dropdown-menu{
    position:static;
    width:100%;
    max-height:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:max-height .35s ease, opacity .35s ease, padding .35s ease;
    margin:0;
    padding:0;
    background:var(--h-bg-elevated);
    border:none;
    box-shadow:none;
}

.nav-menu li.expanded > .dropdown-menu{
    max-height:500px;
    opacity:1;
    visibility:visible;
    padding:0 0 10px 0;
}

.dropdown-menu li a{
    display:block;
    padding:10px 16px 10px 34px;
    color:var(--ivory);
    border:none;
    background:transparent;
}

.dropdown-menu li a:hover{
    background:rgba(176,141,87,.1);
    padding-left:34px;
}

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

}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr 1fr;
    gap:28px;
    margin:0 auto;
}

.footer-grid > div:first-child{
    grid-column:1 / -1;
}

.footer-bottom{
    flex-direction:column;
    gap:12px;
    text-align:center;
}

}

@media(max-width:768px){
.footer-logo img{
    width:auto;
    height:50px;
}
}

/* ===================================
   FOLDABLE / ULTRA-NARROW DEVICES
   (Z Fold cover screen, Flip cover, etc.)
=================================== */

@media(max-width:344px){

.container{ padding:0 14px; }
.navbar{ padding:0 14px; height:60px; }
.logo img{ height:32px; }
.nav-menu > li > a{ font-size:12px; padding:12px; }
.footer-grid{ grid-template-columns:1fr; gap:24px; }
.mobile-toggle{ width:38px; height:38px; font-size:20px; }

}

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

.contact-page{ background:var(--ivory); padding:50px 20px; font-family:var(--font-body); }

.contact-hero{ text-align:center; margin-bottom:50px; }

.contact-hero h1{ font-size:36px; color:var(--ink); }

.contact-hero p{ color:var(--slate); }

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    max-width:1100px;
    margin:auto;
    width:100%;
}

.contact-form,
.contact-info{
    width:100%;
    min-width:0;
    box-sizing:border-box;
}

.contact-info{
    background:#FFF;
    color:var(--ink);
    padding:34px;
    border-radius:0;
}

.contact-info h2{ margin-bottom:20px; color:#000; }

.info-box{ display:flex; gap:15px; margin-bottom:20px; }

.info-box i{ font-size:17px; color:var(--brass-light); }

.contact-form{
    background:var(--white);
    padding:34px;
    border-radius:0;
    box-shadow:none;
}

.contact-form h2{ margin-bottom:20px; color:var(--ink); }

.contact-form input, .contact-form textarea{
    width:100%;
    padding:13px;
    margin-bottom:15px;
    border:1px solid var(--hairline);
    border-radius:0;
    font-family:var(--font-body);
    background:var(--ivory);
}

.contact-form input:focus, .contact-form textarea:focus{
    outline:none;
    border-color:var(--brass);
}

.contact-form button{
    background:var(--ink);
    color:var(--white);
    padding:13px;
    width:100%;
    border:none;
    border-radius:0;
    clip-path:var(--clip-sm);
    font-family:var(--font-mono);
    letter-spacing:.04em;
    text-transform:uppercase;
    font-size:13px;
    transition:.3s;
}

.contact-form button:hover{ background:var(--brass); color:var(--ink); }

@media (max-width:768px){

    .contact-page{
        padding:40px 15px;
    }

    .contact-container{
        display:grid;
        grid-template-columns:1fr;
        gap:20px;
    }

    .contact-form,
    .contact-info{
        width:100%;
        padding:24px;
    }

}

@media(max-width:768px){
    .contact-container{ grid-template-columns:1fr; }
}

/* Button loader */
button{ position:relative; overflow:hidden; }

.loader{
    width:18px;
    height:18px;
    border:2px solid var(--white);
    border-top:2px solid transparent;
    border-radius:50%;
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    display:none;
    animation:spin 1s linear infinite;
}

@keyframes spin{ 100%{ transform:rotate(360deg); } }

button.loading .loader{ display:block; }
button.loading .btn-text{ visibility:hidden; }

.error{ color:#9C3B33; font-size:12px; display:none; font-family:var(--font-mono); }

.popup{
    position:fixed;
    inset:0;
    background:rgba(11,18,16,.55);
    display:none;
    justify-content:center;
    align-items:center;
}

.popup-box{
    background:var(--white);
    padding:32px;
    border-radius:0;
    border-top:3px solid var(--brass);
    animation:pop .4s ease;
}

@keyframes pop{
    from{ transform:scale(.6); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}

.contact-float{
    position:fixed;
    top:50%;
    right:0;
    transform:translateY(-50%);
    background:var(--ink);
    color:var(--ivory);
    padding:16px 12px;
    border-radius:0;
    text-decoration:none;
    font-weight:600;
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:.05em;
    writing-mode:vertical-rl;
    text-orientation:mixed;
    box-shadow:0 10px 24px rgba(0,0,0,.25);
    border-left:2px solid var(--brass);
    z-index:999;
    transition:.3s;
    right:-6px;
}

.contact-float:hover{
    background:var(--brass);
    color:var(--ink);
    transform:translateY(-50%) scale(1.03);
    right:0;
}

.custom-lang{
    position:fixed;
    top:80%;
    right:0;
    transform:translateY(-50%);
    background:#5067AC;
    padding:10px;
    border-radius:0;
    border-left:2px solid var(--brass);
    z-index:999;
}

.custom-lang select{
    background:var(--white);
    padding:6px;
    border-radius:0;
    border:1px solid var(--hairline);
    font-size:12px;
    font-family:var(--font-mono);
    cursor:pointer;
}

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

.about-page{
    background:var(--ivory);
}

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

.about-hero{
    background:var(--ink);
    padding:20px 0;
    position:relative;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    top:-220px;
    right:-220px;
    border:1px solid rgba(176,141,87,.12);
    border-radius:50%;
}

.about-hero h1{
    color:var(--ivory);
    font-size:clamp(54px,6vw,84px);
    line-height:1.05;
    max-width:950px;
    margin:18px 0 28px;
}

.about-hero p{
    max-width:820px;
    font-size:20px;
    line-height:1.8;
    color:rgba(247,245,240,.72);
}

/* ===================================================
COMMON
=================================================== */

.about-section,
.about-industries,
.about-dark{
    padding:20px 0;
}

.about-dark{
    background:var(--ink);
}

.section-heading{
    margin-bottom:60px;
}

.section-heading h2{
    font-size:54px;
    line-height:1.15;
    max-width:850px;
    margin-top:12px;
}

.section-heading.light h2{
    color:var(--ivory);
}

/* ===================================================
WHO WE ARE
=================================================== */

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

.about-card{
    background:var(--white);
    padding:42px;
    border:1px solid var(--hairline);
    clip-path:var(--clip-md);
}

.about-card h3{
    margin-bottom:18px;
    font-size:28px;
}

.about-card p{
    line-height:1.8;
}

/* ===================================================
LEADERSHIP
=================================================== */

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

.leader-card{
    background:var(--ink-soft);
    border:1px solid var(--hairline-light);
    padding:40px;
    clip-path:var(--clip-md);
}

.leader-card h3{
    color:var(--ivory);
    margin-bottom:15px;
}

.leader-card p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
}

/* ===================================================
EXPERTISE
=================================================== */

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

.expertise-column{
    background:var(--white);
    padding:40px;
    border:1px solid var(--hairline);
}

.expertise-column h3{
    margin-bottom:22px;
}

.expertise-column ul{
    list-style:none;
}

.expertise-column li{
    padding:12px 0;
    border-bottom:1px solid var(--hairline);
}

.expertise-column li:last-child{
    border-bottom:none;
}

/* ===================================================
INDUSTRIES
=================================================== */

.about-industries{
    background:var(--ivory-deep);
}

.industry-tags{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.industry-tags span{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:14px 20px;
    font-size:14px;
    font-weight:600;
}

.global-box{
    margin-top:50px;
    background:var(--white);
    padding:45px;
    border-left:4px solid var(--brass);
}

.global-box h3{
    margin-bottom:15px;
}

/* ===================================================
VALUES
=================================================== */

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

.value-card{
    background:var(--ink-soft);
    border:1px solid var(--hairline-light);
    color:var(--ivory);
    text-align:center;
    padding:35px;
    font-weight:600;
}

/* ===================================================
WHY CHOOSE US
=================================================== */

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:60px;
}

.choose-grid div{
    background:var(--white);
    padding:28px;
    border:1px solid var(--hairline);
    font-weight:600;
}

.about-cta{
    background:var(--ink);
    padding:70px;
    text-align:center;
    clip-path:var(--clip-lg);
}

.about-cta h3{
    color:var(--ivory);
    margin-bottom:20px;
    font-size:38px;
}

.btn-primary{
    display:inline-block;
    padding:15px 34px;
    background:var(--brass);
    color:var(--ink);
    text-decoration:none;
    font-weight:600;
    clip-path:var(--clip-sm);
    transition:.3s;
}

.btn-primary:hover{
    background:var(--brass-light);
}

/* ===================================================
LARGE LAPTOP
=================================================== */

@media(max-width:1400px){

.section-heading h2{
    font-size:46px;
}

.about-hero h1{
    font-size:68px;
}

}

/* ===================================================
TABLET
=================================================== */

@media(max-width:1200px){

.about-grid,
.leadership-grid,
.expertise-grid,
.values-grid,
.choose-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
    font-size:42px;
}

.about-hero{
    padding:10px 0;
}

.about-hero h1{
    font-size:58px;
}

.about-hero p{
    font-size:18px;
}

}

/* ===================================================
MOBILE
=================================================== */

@media(max-width:768px){

.about-section,
.about-dark,
.about-industries{
    padding:10px 0;
}

.about-hero{
    padding:10px 0;
}

.about-hero h1{
    font-size:40px;
    line-height:1.1;
}

.about-hero p{
    font-size:16px;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h2{
    font-size:34px;
}

.about-grid,
.leadership-grid,
.expertise-grid,
.values-grid,
.choose-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.about-card,
.leader-card,
.expertise-column{
    padding:28px;
}

.global-box{
    padding:28px;
}

.industry-tags{
    gap:10px;
}

.industry-tags span{
    width:100%;
    text-align:center;
}

.about-cta{
    padding:40px 25px;
}

.about-cta h3{
    font-size:28px;
}

.btn-primary{
    width:100%;
    text-align:center;
}

}

/* ===================================================
SMALL MOBILE
=================================================== */

@media(max-width:480px){

.about-hero h1{
    font-size:34px;
}

.section-heading h2{
    font-size:30px;
}

.about-card h3,
.leader-card h3,
.expertise-column h3{
    font-size:22px;
}

}

/* ===================================================
FOLDABLE DEVICES
Z Fold Cover Display
Galaxy Flip Cover
=================================================== */

@media(max-width:344px){

.about-section,
.about-dark,
.about-industries{
    padding:10px 0;
}

.about-hero{
    padding:10px 0;
}

.about-hero h1{
    font-size:28px;
    line-height:1.15;
}

.about-hero p{
    font-size:14px;
    line-height:1.7;
}

.section-heading h2{
    font-size:24px;
}

.about-card,
.leader-card,
.expertise-column{
    padding:20px;
}

.industry-tags span{
    font-size:12px;
    padding:10px;
}

.global-box{
    padding:20px;
}

.about-cta{
    padding:24px 18px;
}

.about-cta h3{
    font-size:22px;
}

.btn-primary{
    font-size:13px;
    padding:12px 16px;
}

}

/* ==================================================
OUR APPROACH PAGE
================================================== */

.approach-hero{
    background:var(--ink);
    padding:140px 0;
}

.approach-hero h1{
    color:var(--ivory);
    font-size:clamp(48px,6vw,82px);
    line-height:1.05;
    max-width:950px;
    margin:18px 0 28px;
}

.approach-hero p{
    max-width:760px;
    color:rgba(255,255,255,.75);
    font-size:20px;
    line-height:1.8;
}

.approach-intro,
.timeline-section,
.deliverables-section{
    padding:120px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.intro-grid p{
    font-size:18px;
    line-height:1.9;
}

.center{
    text-align:center;
}

.timeline{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(9,1fr);
    gap:20px;
}

.timeline-item{
    background:white;
    padding:30px 20px;
    border:1px solid var(--hairline);
    text-align:center;
    clip-path:var(--clip-md);
    position:relative;
}

.timeline-item span{
    display:block;
    color:var(--brass);
    font-size:12px;
    margin-bottom:15px;
    font-family:var(--font-mono);
    letter-spacing:.15em;
}

.timeline-item h3{
    font-size:18px;
    line-height:1.4;
}

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

.deliverable-card{
    background:white;
    padding:40px;
    border:1px solid var(--hairline);
}

.deliverable-card h3{
    margin-bottom:15px;
}

.deliverable-card p{
    line-height:1.8;
}

.approach-cta{
    padding:120px 0;
    background:var(--ink);
    text-align:center;
}

.approach-cta h2{
    color:var(--ivory);
    max-width:800px;
    margin:0 auto 20px;
}

.approach-cta p{
    color:rgba(255,255,255,.75);
    max-width:650px;
    margin:0 auto 30px;
}

.btn-primary{
    display:inline-block;
    padding:15px 32px;
    background:var(--brass);
    color:var(--ink);
    text-decoration:none;
    font-weight:600;
}

/* =====================================================
OUR APPROACH PAGE
===================================================== */

.approach-page{
    background:var(--ivory);
}

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

.approach-hero{
    background:var(--ink);
    padding:40px 0;
}

.approach-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.approach-hero p{
    max-width:700px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

/* =====================================================
SECTIONS
===================================================== */

.approach-intro,
.process-timeline,
.approach-deliverables,
.why-process{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading.center{
    text-align:center;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
    margin-top:8px;
}

.approach-intro-text{
    line-height:1.8;
}

/* =====================================================
TIMELINE
===================================================== */

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

.timeline-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
    transition:.3s;
}

.timeline-card:hover{
    border-color:var(--brass);
    transform:translateY(-3px);
}

.timeline-card span{
    display:block;
    margin-bottom:10px;
    color:var(--brass);
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:.12em;
}

.timeline-card h3{
    font-size:18px;
    line-height:1.4;
}

/* =====================================================
DELIVERABLES
===================================================== */

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

.deliverable-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
}

.deliverable-card h3{
    font-size:18px;
}

/* =====================================================
WHY OUR APPROACH WORKS
===================================================== */

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

.why-grid div{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
    font-weight:600;
}

/* =====================================================
LAPTOP
===================================================== */

@media(max-width:1200px){

    .section-heading h2{
        font-size:32px;
    }

    .approach-hero h1{
        font-size:52px;
    }

}

/* =====================================================
TABLET
===================================================== */

@media(max-width:991px){

    .approach-hero,
    .approach-intro,
    .process-timeline,
    .approach-deliverables,
    .why-process{
        padding:30px 0;
    }

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

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

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

    .approach-hero h1{
        font-size:44px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* =====================================================
MOBILE
===================================================== */

@media(max-width:768px){

    .approach-hero,
    .approach-intro,
    .process-timeline,
    .approach-deliverables,
    .why-process{
        padding:20px 0;
    }

    .approach-hero h1{
        font-size:32px;
    }

    .approach-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .timeline-grid,
    .deliverables-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .timeline-card,
    .deliverable-card,
    .why-grid div{
        padding:15px;
    }

    .timeline-card h3{
        font-size:17px;
    }

}

/* =====================================================
SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .approach-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* =====================================================
FOLDABLE
===================================================== */

@media(max-width:344px){

    .approach-hero h1{
        font-size:24px;
    }

    .approach-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .timeline-card,
    .deliverable-card,
    .why-grid div{
        padding:12px;
    }

    .timeline-card h3{
        font-size:15px;
    }

}

/* =====================================================
REPORTS & DELIVERABLES PAGE
===================================================== */

.reports-page{
    background:var(--ivory);
}

/* HERO */

.reports-hero{
    background:var(--ink);
    padding:40px 0;
}

.reports-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.reports-hero p{
    max-width:720px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

/* SECTION SPACING */

.reports-overview,
.report-library,
.deliverable-standards{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
    margin-top:8px;
}

.reports-intro{
    max-width:900px;
    line-height:1.8;
}

/* REPORT GRID */

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

.report-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    min-height:100px;
    display:flex;
    align-items:center;
    font-weight:600;
    line-height:1.5;
    clip-path:var(--clip-md);
    transition:.3s ease;
}

.report-card:hover{
    border-color:var(--brass);
    transform:translateY(-3px);
}

/* STANDARDS */

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

.standards-grid div{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    font-weight:600;
    clip-path:var(--clip-md);
}

/* LAPTOP */

@media(max-width:1200px){

    .reports-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .reports-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .reports-hero,
    .reports-overview,
    .report-library,
    .deliverable-standards{
        padding:30px 0;
    }

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

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

    .reports-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .reports-hero,
    .reports-overview,
    .report-library,
    .deliverable-standards{
        padding:20px 0;
    }

    .reports-grid,
    .standards-grid{
        grid-template-columns:1fr;
    }

    .reports-hero h1{
        font-size:32px;
    }

    .reports-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .report-card,
    .standards-grid div{
        padding:15px;
        min-height:auto;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .reports-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE */

@media(max-width:344px){

    .reports-hero h1{
        font-size:24px;
    }

    .reports-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .report-card,
    .standards-grid div{
        padding:12px;
        font-size:14px;
    }

}

/* =====================================================
INDUSTRIES PAGE
===================================================== */

.industries-page{
    background:var(--ivory);
}

/* HERO */

.industries-hero{
    background:var(--ink);
    padding:40px 0;
}

.industries-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.industries-hero p{
    max-width:720px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

/* SECTIONS */

.industries-overview,
.industries-list,
.industry-expertise{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
    margin-top:8px;
}

.industries-intro{
    max-width:900px;
    line-height:1.8;
}

/* INDUSTRY GRID */

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

.industry-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-weight:600;
    clip-path:var(--clip-md);
    cursor:pointer;
    transition:all .3s ease;
}

.industry-card:hover{
    background:var(--ink);
    color:var(--ivory);
    border-color:var(--brass);
    transform:translateY(-3px);
}

/* CROSS INDUSTRY EXPERTISE */

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

.expertise-grid div{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    text-align:center;
    font-weight:600;
    clip-path:var(--clip-md);
    transition:all .3s ease;
}

.expertise-grid div:hover{
    border-color:var(--brass);
}

/* DESKTOP LARGE */

@media(max-width:1200px){

    .industry-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .industries-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .industries-hero,
    .industries-overview,
    .industries-list,
    .industry-expertise{
        padding:30px 0;
    }

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

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

    .industries-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .industries-hero,
    .industries-overview,
    .industries-list,
    .industry-expertise{
        padding:20px 0;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

    .expertise-grid{
        grid-template-columns:1fr;
    }

    .industries-hero h1{
        font-size:32px;
    }

    .industries-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .industry-card,
    .expertise-grid div{
        padding:15px;
        min-height:70px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .industries-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE DEVICES */

@media(max-width:344px){

    .industries-hero h1{
        font-size:24px;
    }

    .industries-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .industry-card,
    .expertise-grid div{
        padding:12px;
        font-size:14px;
    }

}

/* =====================================================
PROFESSIONAL NETWORK PAGE
===================================================== */

.network-page{
    background:var(--ivory);
}

.network-hero{
    background:var(--ink);
    padding:40px 0;
}

.network-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.network-hero p{
    max-width:720px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

.network-overview,
.network-stats,
.inhouse-team,
.associated-team,
.collaboration-model{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
    margin-top:8px;
}

.network-intro{
    max-width:900px;
    line-height:1.8;
}

/* STATS */

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

.stat-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    text-align:center;
    clip-path:var(--clip-md);
}

.stat-card h3{
    font-size:42px;
    color:var(--brass);
    margin-bottom:10px;
}

.stat-card p{
    font-weight:600;
}

/* TEAM */

.team-grid,
.associate-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.team-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    text-align:center;
    font-weight:600;
    clip-path:var(--clip-md);
    transition:.3s ease;
}

.team-card:hover{
    border-color:var(--brass);
    transform:translateY(-3px);
}

/* MODEL */

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

.model-grid div{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    text-align:center;
    font-weight:600;
    clip-path:var(--clip-md);
}

/* LAPTOP */

@media(max-width:1200px){

    .team-grid,
    .associate-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .network-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .network-hero,
    .network-overview,
    .network-stats,
    .inhouse-team,
    .associated-team,
    .collaboration-model{
        padding:30px 0;
    }

    .stats-grid,
    .team-grid,
    .associate-grid,
    .model-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .network-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .network-hero,
    .network-overview,
    .network-stats,
    .inhouse-team,
    .associated-team,
    .collaboration-model{
        padding:20px 0;
    }

    .stats-grid,
    .team-grid,
    .associate-grid,
    .model-grid{
        grid-template-columns:1fr;
    }

    .network-hero h1{
        font-size:32px;
    }

    .network-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .stat-card,
    .team-card,
    .model-grid div{
        padding:15px;
    }

    .stat-card h3{
        font-size:32px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .network-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE */

@media(max-width:344px){

    .network-hero h1{
        font-size:24px;
    }

    .network-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .stat-card,
    .team-card,
    .model-grid div{
        padding:12px;
        font-size:14px;
    }

    .stat-card h3{
        font-size:26px;
    }

}

/* =====================================================
WHY CHOOSE US PAGE
===================================================== */

.why-page{
    background:var(--ivory);
}

/* HERO */

.why-hero{
    background:var(--ink);
    padding:40px 0;
}

.why-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.why-hero p{
    max-width:700px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

/* SECTIONS */

.why-intro,
.why-grid-section,
.advisory-strengths,
.service-coverage{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
    margin-top:8px;
}

.why-intro-text{
    max-width:900px;
    line-height:1.8;
}

/* DIFFERENTIATORS */

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

.why-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
    transition:.3s;
}

.why-card:hover{
    border-color:var(--brass);
    transform:translateY(-3px);
}

.why-card span{
    display:block;
    color:var(--brass);
    font-size:24px;
    margin-bottom:10px;
}

.why-card h3{
    font-size:18px;
    line-height:1.4;
}

/* STRENGTHS */

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

.strength-grid div{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    text-align:center;
    font-weight:600;
    clip-path:var(--clip-md);
}

/* COVERAGE */

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

.coverage-grid div{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    text-align:center;
    font-weight:600;
    clip-path:var(--clip-md);
}

/* LAPTOP */

@media(max-width:1200px){

    .why-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .why-hero,
    .why-intro,
    .why-grid-section,
    .advisory-strengths,
    .service-coverage{
        padding:30px 0;
    }

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

    .why-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .why-hero,
    .why-intro,
    .why-grid-section,
    .advisory-strengths,
    .service-coverage{
        padding:20px 0;
    }

    .why-grid,
    .strength-grid,
    .coverage-grid{
        grid-template-columns:1fr;
    }

    .why-hero h1{
        font-size:32px;
    }

    .why-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .why-card,
    .strength-grid div,
    .coverage-grid div{
        padding:15px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .why-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE DEVICES */

@media(max-width:344px){

    .why-hero h1{
        font-size:24px;
    }

    .why-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .why-card,
    .strength-grid div,
    .coverage-grid div{
        padding:12px;
    }

    .why-card h3{
        font-size:16px;
    }

}

/* =====================================================
CASE STUDIES PAGE
===================================================== */

.case-studies-page{
    background:var(--ivory);
}

.case-hero{
    background:var(--ink);
    padding:40px 0;
}

.case-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.case-hero p{
    color:rgba(247,245,240,.75);
    max-width:720px;
    line-height:1.7;
}

.case-studies-section{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    margin-top:8px;
}

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

.case-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
    transition:all .3s ease;
}

.case-card:hover{
    border-color:var(--brass);
    transform:translateY(-3px);
}

.case-card h3{
    margin-bottom:15px;
    font-size:20px;
}

.case-card ul{
    list-style:none;
}

.case-card li{
    margin-bottom:10px;
    line-height:1.6;
    font-size:14px;
}

.case-card strong{
    color:var(--ink);
}

/* LAPTOP */

@media(max-width:1200px){

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

    .case-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .case-hero,
    .case-studies-section{
        padding:30px 0;
    }

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

    .case-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .case-hero,
    .case-studies-section{
        padding:20px 0;
    }

    .case-grid{
        grid-template-columns:1fr;
    }

    .case-hero h1{
        font-size:32px;
    }

    .case-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .case-card{
        padding:15px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .case-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE */

@media(max-width:344px){

    .case-hero h1{
        font-size:24px;
    }

    .case-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .case-card{
        padding:12px;
    }

    .case-card h3{
        font-size:16px;
    }

    .case-card li{
        font-size:13px;
    }

}

/* =====================================================
INSIGHTS & KNOWLEDGE CENTRE
===================================================== */

.insights-page{
    background:var(--ivory);
}

.insights-hero{
    background:var(--ink);
    padding:40px 0;
}

.insights-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.insights-hero p{
    max-width:700px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

.knowledge-centre{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    margin-top:8px;
    line-height:1.15;
}

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

.knowledge-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
    transition:.3s ease;
}

.knowledge-card:hover{
    border-color:var(--brass);
    transform:translateY(-3px);
}

.article-category{
    display:inline-block;
    margin-bottom:10px;
    color:var(--brass);
    font-family:var(--font-mono);
    font-size:12px;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.knowledge-card h3{
    font-size:22px;
    margin-bottom:12px;
    line-height:1.3;
}

.knowledge-card p{
    margin-bottom:10px;
    line-height:1.8;
    color:var(--slate);
    font-size:15px;
}

/* LAPTOP */

@media(max-width:1200px){

    .insights-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .insights-hero,
    .knowledge-centre{
        padding:30px 0;
    }

    .knowledge-grid{
        grid-template-columns:1fr;
    }

    .insights-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .insights-hero,
    .knowledge-centre{
        padding:20px 0;
    }

    .insights-hero h1{
        font-size:32px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .knowledge-card{
        padding:15px;
    }

    .knowledge-card h3{
        font-size:18px;
    }

    .knowledge-card p{
        font-size:14px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .insights-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE */

@media(max-width:344px){

    .insights-hero h1{
        font-size:24px;
    }

    .insights-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .knowledge-card{
        padding:12px;
    }

    .knowledge-card h3{
        font-size:16px;
    }

}

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

.careers-page{
    background:var(--ivory);
}

.careers-hero{
    background:var(--ink);
    padding:40px 0;
}

.careers-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.careers-hero p{
    max-width:720px;
    line-height:1.7;
    color:rgba(247,245,240,.75);
}

.careers-section{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
}

.career-grid,
.opportunity-grid,
.partner-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.career-card,
.partner-card,
.career-info-card{
    background:var(--white);
    border:1px solid var(--hairline);
    padding:20px;
    clip-path:var(--clip-md);
}

.career-card h3{
    margin-bottom:10px;
    font-size:18px;
}

.career-card p,
.career-info-card p{
    line-height:1.7;
}

.partner-card{
    text-align:center;
    font-weight:600;
}

/* LAPTOP */

@media(max-width:1200px){

    .careers-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .careers-hero,
    .careers-section{
        padding:30px 0;
    }

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

    .careers-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .careers-hero,
    .careers-section{
        padding:20px 0;
    }

    .career-grid,
    .opportunity-grid,
    .partner-grid{
        grid-template-columns:1fr;
    }

    .careers-hero h1{
        font-size:32px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .career-card,
    .partner-card,
    .career-info-card{
        padding:15px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .careers-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE */

@media(max-width:344px){

    .careers-hero h1{
        font-size:24px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .career-card,
    .partner-card,
    .career-info-card{
        padding:12px;
    }

}

/* =====================================================
FAQ PAGE
===================================================== */

.faq-page{
    background:var(--ivory);
}

.faq-hero{
    background:var(--ink);
    padding:40px 0;
}

.faq-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,62px);
    line-height:1.1;
    max-width:900px;
    margin:10px 0;
}

.faq-hero p{
    max-width:720px;
    color:rgba(247,245,240,.75);
    line-height:1.7;
}

.faq-section{
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    line-height:1.15;
}

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.faq-item{
    background:var(--white);
    border:1px solid var(--hairline);
    clip-path:var(--clip-md);
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:20px;
    text-align:left;
    cursor:pointer;
    font-family:var(--font-body);
    font-size:16px;
    font-weight:600;
    color:var(--ink);
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:20px;
    color:var(--brass);
}

.faq-item.active .faq-question::after{
    content:"−";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
}

.faq-answer p{
    padding:0 20px 20px;
    line-height:1.8;
}

/* LAPTOP */

@media(max-width:1200px){

    .faq-hero h1{
        font-size:52px;
    }

    .section-heading h2{
        font-size:32px;
    }

}

/* TABLET */

@media(max-width:991px){

    .faq-hero,
    .faq-section{
        padding:30px 0;
    }

    .faq-hero h1{
        font-size:42px;
    }

    .section-heading h2{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .faq-hero,
    .faq-section{
        padding:20px 0;
    }

    .faq-hero h1{
        font-size:32px;
    }

    .faq-hero p{
        font-size:15px;
    }

    .section-heading{
        margin-bottom:15px;
    }

    .section-heading h2{
        font-size:24px;
    }

    .faq-question{
        padding:15px;
        font-size:15px;
    }

    .faq-question::after{
        right:15px;
    }

    .faq-answer p{
        padding:0 15px 15px;
    }

}

/* SMALL MOBILE */

@media(max-width:480px){

    .faq-hero h1{
        font-size:28px;
    }

    .section-heading h2{
        font-size:22px;
    }

}

/* FOLDABLE DEVICES */

@media(max-width:344px){

    .faq-hero h1{
        font-size:24px;
    }

    .faq-hero p{
        font-size:14px;
    }

    .section-heading h2{
        font-size:20px;
    }

    .faq-question{
        padding:12px;
        font-size:14px;
    }

    .faq-answer p{
        padding:0 12px 12px;
        font-size:14px;
    }

}

/* =====================================================
AMKA SERVICES MASTER CSS
USE FOR ALL SERVICE PAGES
===================================================== */

.service-page{
    background:var(--ivory);
}

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

.service-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #0b1210 0%,
        #17211d 100%
    );
    padding:50px 0;
}

.service-hero::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(193,154,107,.08);
}

.service-hero::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(193,154,107,.05);
}

.service-hero .container{
    position:relative;
    z-index:2;
}

.service-hero h1{
    color:var(--ivory);
    font-size:clamp(38px,5vw,68px);
    line-height:1.08;
    max-width:950px;
    margin:10px 0;
}

.service-hero p{
    max-width:750px;
    color:rgba(247,245,240,.78);
    line-height:1.8;
}

/* =====================================================
INTRO
===================================================== */

.service-intro{
    padding:30px 0;
}

.service-intro-content{
    max-width:1000px;
    background:#fff;
    border:1px solid var(--hairline);
    border-radius:18px;
    padding:20px;
    position:relative;
}

.service-intro-content::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:120px;
    height:3px;
    background:var(--brass);
}

.service-intro-content p{
    margin-bottom:12px;
    line-height:1.8;
}

.service-intro-content p:last-child{
    margin-bottom:0;
}

/* =====================================================
HEADINGS
===================================================== */

.services-heading{
    margin-bottom:20px;
}

.services-heading h2{
    font-size:36px;
    line-height:1.15;
}

/* =====================================================
SERVICE CARDS
===================================================== */

.service-cards{
    padding:30px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.service-detail-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--hairline);
    border-radius:18px;
    padding:20px;
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.service-detail-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(193,154,107,.08),
        transparent 45%
    );
    opacity:0;
    transition:.4s ease;
}

.service-detail-card::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:var(--brass);
    transform:scaleY(0);
    transform-origin:top;
    transition:.4s ease;
}

.service-detail-card:hover{
    transform:translateY(-8px);
    border-color:rgba(193,154,107,.35);
    box-shadow:
        0 20px 40px rgba(0,0,0,.08),
        0 10px 20px rgba(0,0,0,.05);
}

.service-detail-card:hover::before{
    opacity:1;
}

.service-detail-card:hover::after{
    transform:scaleY(1);
}

.service-detail-card h3{
    position:relative;
    color:var(--ink);
    font-size:24px;
    line-height:1.3;
    margin-bottom:15px;
    padding-bottom:12px;
}

.service-detail-card h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:2px;
    background:var(--brass);
    transition:.4s ease;
}

.service-detail-card:hover h3::after{
    width:110px;
}

.service-detail-card p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:12px;
    color:var(--slate);
    position:relative;
    z-index:2;
}

.service-detail-card p:last-child{
    margin-bottom:0;
}

/* =====================================================
SCROLL REVEAL
===================================================== */

.service-detail-card{
    opacity:0;
    transform:translateY(30px);
}

.service-detail-card.show{
    opacity:1;
    transform:translateY(0);
    transition:
        opacity .6s ease,
        transform .6s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

/* =====================================================
TABLET
===================================================== */

@media(max-width:991px){

    .service-hero{
        padding:35px 0;
    }

    .service-intro,
    .service-cards{
        padding:25px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .service-hero h1{
        font-size:48px;
    }

    .services-heading h2{
        font-size:30px;
    }

}

/* =====================================================
MOBILE
===================================================== */

@media(max-width:768px){

    .service-hero{
        padding:20px 0;
    }

    .service-intro,
    .service-cards{
        padding:20px 0;
    }

    .service-hero h1{
        font-size:34px;
    }

    .service-hero p{
        font-size:15px;
    }

    .services-heading{
        margin-bottom:15px;
    }

    .services-heading h2{
        font-size:24px;
    }

    .service-intro-content{
        padding:15px;
        border-radius:14px;
    }

    .service-detail-card{
        padding:15px;
        border-radius:14px;
    }

    .service-detail-card h3{
        font-size:20px;
    }

    .service-detail-card p{
        font-size:14px;
    }

}

/* =====================================================
SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .service-hero h1{
        font-size:28px;
    }

    .services-heading h2{
        font-size:22px;
    }

}

/* =====================================================
FOLDABLE DEVICES
===================================================== */

@media(max-width:344px){

    .service-hero h1{
        font-size:24px;
    }

    .service-hero p{
        font-size:14px;
    }

    .services-heading h2{
        font-size:20px;
    }

    .service-intro-content,
    .service-detail-card{
        padding:12px;
    }

    .service-detail-card h3{
        font-size:18px;
    }

    .service-detail-card p{
        font-size:13px;
    }

}


/* =====================================================================
   AMKA CAPITAL SERVICES — HOMEPAGE ONLY STYLESHEET
   A fully independent design system from assets/style.css.
   New fonts, new colour system, new component language (dark,
   glassmorphic, rounded, glow-accented). All classes prefixed "h-"
   so nothing here collides with the rest of the site.

   Link this in <head>, AFTER the existing stylesheet:
     <link rel="stylesheet" href="/assets/home.css">
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
    /* ---- surfaces ---- */
    --h-void:#06070A;
    --h-bg:#0A0C10;
    --h-bg-elevated:#0F1218;
    --h-panel:rgba(255,255,255,.045);
    --h-panel-solid:#12151C;
    --h-border:rgba(255,255,255,.10);
    --h-border-soft:rgba(255,255,255,.06);

    /* ---- text ---- */
    --h-text:#F3F5F8;
    --h-text-dim:#9AA2B1;
    --h-text-faint:#5C6472;

    /* ---- accents ---- */
    --h-mint:#33E8B0;
    --h-violet:#8C6BFF;
    --h-amber:#FFB463;
    --h-grad:linear-gradient(120deg,#33E8B0 0%,#5FB8FF 55%,#8C6BFF 100%);

    /* ---- type ---- */
    --h-font-display:'Space Grotesk',sans-serif;
    --h-font-body:'Plus Jakarta Sans',sans-serif;
    --h-font-mono:'JetBrains Mono',monospace;

    /* ---- shape ---- */
    --h-radius-lg:28px;
    --h-radius-md:20px;
    --h-radius-sm:14px;
    --h-radius-pill:100px;

    --h-shadow:0 30px 60px -25px rgba(0,0,0,.6);
    --h-shadow-glow:0 0 0 1px rgba(51,232,176,.15), 0 20px 50px -20px rgba(51,232,176,.25);
}

.h-main{
    background:var(--h-bg);
    color:var(--h-text);
    font-family:var(--h-font-body);
    overflow-x:clip;
    margin-bottom: -120px;
}

.h-main *{ box-sizing:border-box; }

.h-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 32px;
}

.h-main h1,.h-main h2,.h-main h3{
    font-family:var(--h-font-display);
    color:var(--h-text);
    font-weight:600;
    letter-spacing:-.01em;
    line-height:1.15;
}

.h-main p{ color:var(--h-text-dim); line-height:1.8; }

.h-main a{ color:inherit; }

.h-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:var(--h-font-mono);
    font-size:12.5px;
    font-weight:500;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--h-mint);
    margin-bottom:20px;
}
.h-eyebrow::before{
    content:"";
    width:18px;
    height:1px;
    background:var(--h-mint);
}

.h-grad-text{
    background:var(--h-grad);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    display:inline-block;
}

/* ---------- Reveal animation ---------- */
.h-reveal{
    opacity:0;
    filter:blur(6px);
    transform:translateY(28px);
    transition:opacity .9s cubic-bezier(.16,.8,.28,1), transform .9s cubic-bezier(.16,.8,.28,1), filter .9s cubic-bezier(.16,.8,.28,1);
    transition-delay:calc(var(--d,0) * .08s);
}
.h-reveal.in{ opacity:1; filter:blur(0); transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
    .h-reveal{ opacity:1; filter:none; transform:none; transition:none; }
}

/* ---------- Buttons ---------- */
.h-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 30px;
    border-radius:var(--h-radius-pill);
    font-family:var(--h-font-body);
    font-size:14.5px;
    font-weight:700;
    text-decoration:none;
    transition:.35s cubic-bezier(.16,.8,.28,1);
    white-space:nowrap;
}
.h-btn i{ font-size:12px; transition:.3s; }
.h-btn:hover i{ transform:translateX(4px); }

.h-btn-primary{
    background:var(--h-grad);
    color:#06070A;
    box-shadow:0 14px 40px -12px rgba(51,232,176,.45);
}
.h-btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 50px -14px rgba(51,232,176,.6); }

.h-btn-ghost{
    background:rgba(255,255,255,.04);
    border:1px solid var(--h-border);
    color:var(--h-text);
    backdrop-filter:blur(6px);
}
.h-btn-ghost:hover{ border-color:var(--h-mint); background:rgba(51,232,176,.08); transform:translateY(-3px); }

/* ---------- Links ---------- */
.h-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:var(--h-font-mono);
    font-size:13px;
    font-weight:500;
    letter-spacing:.04em;
    text-decoration:none;
    color:var(--h-text);
    padding-bottom:6px;
    border-bottom:1px solid var(--h-border);
    transition:.3s;
}
.h-link i{ font-size:11px; transition:.3s; }
.h-link:hover{ color:var(--h-mint); border-color:var(--h-mint); }
.h-link:hover i{ transform:translateX(5px); }
.h-link.light{ color:var(--h-text); }

.h-center{ text-align:center; margin-top:56px; }

/* ---------- Section heading ---------- */
.h-heading{
    max-width:640px;
    margin:0 auto 70px;
    text-align:center;
}
.h-heading h2{ font-size:clamp(28px,3.4vw,42px); margin-bottom:16px; }
.h-heading p{ font-size:17px; }
.h-heading.light h2{ color:#fff; }
.h-heading.light p{ color:rgba(255,255,255,.65); }

/* ---------------------------------------------------------------------
   HERO
--------------------------------------------------------------------- */
.h-hero{
    position:relative;
    min-height:96vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:160px 0 120px;
}

.h-hero-media{ position:absolute; inset:0; z-index:0; }
.h-hero-video{
    width:100%; height:100%;
    object-fit:cover;
    position:absolute; inset:0;
}
.h-hero-overlay{
    position:absolute; inset:0;
    background:
      radial-gradient(60% 60% at 50% 30%, rgba(10,12,16,.35), rgba(6,7,10,.88) 75%),
      linear-gradient(180deg, rgba(6,7,10,.55) 0%, rgba(6,7,10,.75) 55%, var(--h-bg) 100%);
}
.h-hero-glow{
    position:absolute;
    width:520px; height:520px;
    left:0; top:0;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(51,232,176,.16) 0%, rgba(140,107,255,.10) 45%, transparent 72%);
    pointer-events:none;
    transition:left .12s linear, top .12s linear;
    z-index:1;
}

.h-hero-inner{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:880px;
}

.h-hero-title{
    display:flex;
    flex-direction:column;
    gap:6px;
    font-size:clamp(38px,6vw,72px);
    margin-bottom:26px;
}

.h-hero-sub{
    max-width:680px;
    margin:0 auto 40px;
    font-size:18.5px;
    color:rgba(243,245,248,.72);
}

.h-hero-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:56px;
}

.h-hero-chips{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}
.h-chip{
    display:flex;
    align-items:baseline;
    gap:8px;
    padding:12px 22px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-pill);
    backdrop-filter:blur(10px);
}
.h-chip strong{
    font-family:var(--h-font-display);
    font-size:22px;
    color:var(--h-mint);
}
.h-chip strong::after{ content:"+"; }
.h-chip span{
    font-family:var(--h-font-mono);
    font-size:11px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--h-text-dim);
}

.h-scroll-cue{
    position:absolute;
    left:50%; bottom:36px;
    transform:translateX(-50%);
    z-index:2;
    width:26px; height:42px;
    border:1px solid var(--h-border);
    border-radius:20px;
}
.h-scroll-cue span{
    position:absolute;
    top:8px; left:50%;
    width:4px; height:8px;
    margin-left:-2px;
    border-radius:2px;
    background:var(--h-mint);
    animation:h-scroll 1.8s ease-in-out infinite;
}
@keyframes h-scroll{
    0%{ opacity:1; top:8px; }
    70%{ opacity:0; top:22px; }
    100%{ opacity:0; top:8px; }
}

/* ---------------------------------------------------------------------
   MARQUEE (shared: capability strip + industries pills)
--------------------------------------------------------------------- */
.h-marquee-strip{
    background:var(--h-bg-elevated);
    border-top:1px solid var(--h-border-soft);
    border-bottom:1px solid var(--h-border-soft);
    padding:26px 0;
    overflow:hidden;
}

.h-marquee{ overflow:hidden; }
.h-marquee.reverse .h-marquee-track{ animation-direction:reverse; }

.h-marquee-track{
    display:flex;
    align-items:center;
    gap:40px;
    width:max-content;
    animation:h-marquee 34s linear infinite;
}
.h-marquee-track span{
    font-family:var(--h-font-mono);
    font-size:14px;
    letter-spacing:.03em;
    color:var(--h-text-dim);
    white-space:nowrap;
    position:relative;
    padding-right:40px;
}
.h-marquee-track span::after{
    content:"◆";
    position:absolute;
    right:0;
    color:var(--h-mint);
    font-size:8px;
    top:50%;
    transform:translateY(-50%);
}

.h-marquee-track.pill{
    gap:14px;
    animation-duration:50s;
    padding:6px 0;
}
.h-marquee-track.pill span{
    font-family:var(--h-font-body);
    font-weight:600;
    font-size:14.5px;
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(8px);
    padding:14px 26px;
    border-radius:var(--h-radius-pill);
}
.h-marquee-track.pill span::after{ content:none; }

@keyframes h-marquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/* ---------------------------------------------------------------------
   ABOUT
--------------------------------------------------------------------- */
.h-about{ padding:20px 0; }

.h-about-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:90px;
    align-items:center;
}

.h-about-media{
    position:relative;
    border-radius:var(--h-radius-lg);
    overflow:hidden;
    aspect-ratio:4/5;
    transition:transform .1s ease-out;
}
.h-about-media img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
}
.h-about-media-frame{
    position:absolute; inset:14px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:calc(var(--h-radius-lg) - 14px);
    pointer-events:none;
}
.h-about-float-card{
    position:absolute;
    left:24px; bottom:24px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 20px;
    background:rgba(10,12,16,.65);
    border:1px solid rgba(255,255,255,.14);
    border-radius:var(--h-radius-md);
    backdrop-filter:blur(14px);
    max-width:82%;
}
.h-about-float-card i{
    width:38px; height:38px;
    display:flex; align-items:center; justify-content:center;
    background:var(--h-grad);
    color:#06070A;
    border-radius:50%;
    font-size:15px;
    flex-shrink:0;
}
.h-about-float-card strong{ display:block; font-size:14px; color:#fff; }
.h-about-float-card span{ font-size:12px; color:var(--h-text-dim); }

.h-about-content h2{ font-size:clamp(28px,3.2vw,38px); margin-bottom:22px; }
.h-about-content > p{ font-size:17px; margin-bottom:34px; }

.h-pillars{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:36px;
}
.h-pillar{
    padding:26px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-md);
}
.h-pillar i{ color:var(--h-mint); font-size:18px; margin-bottom:14px; display:block; }
.h-pillar h3{ font-size:16px; margin-bottom:8px; }
.h-pillar p{ font-size:13.5px; }

/* ---------------------------------------------------------------------
   SERVICES
--------------------------------------------------------------------- */
.h-services{ padding:20px 0; background:var(--h-bg-elevated); }

.h-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.h-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:34px 28px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-md);
    text-decoration:none;
    transition:border-color .4s, box-shadow .4s, background .4s;
    transform-style:preserve-3d;
}
.h-card-icon{
    width:52px; height:52px;
    display:flex; align-items:center; justify-content:center;
    border-radius:16px;
    background:linear-gradient(135deg, rgba(51,232,176,.16), rgba(140,107,255,.16));
    color:var(--h-mint);
    font-size:20px;
    margin-bottom:22px;
}
.h-card h3{ font-size:18px; margin-bottom:10px; }
.h-card p{ font-size:14px; margin-bottom:22px; flex-grow:1; }
.h-card-go{
    font-family:var(--h-font-mono);
    font-size:11.5px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--h-mint);
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.h-card-go i{ font-size:10px; transition:.3s; }

.h-card:hover{
    border-color:rgba(51,232,176,.45);
    background:rgba(255,255,255,.06);
    box-shadow:var(--h-shadow-glow);
}
.h-card:hover .h-card-go i{ transform:translateX(5px); }

/* ---------------------------------------------------------------------
   STATS / NETWORK
--------------------------------------------------------------------- */
.h-stats{ padding:20px 0; position:relative; }

.h-stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.h-stats-content h2{ font-size:clamp(26px,3vw,36px); margin:0 0 20px; }
.h-stats-content > p{ font-size:16.5px; margin-bottom:32px; }

.h-stats-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.h-stat-card{
    padding:30px 26px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-md);
    text-align:left;
    transition:.35s;
}
.h-stat-card:hover{ border-color:rgba(140,107,255,.4); transform:translateY(-4px); }
.h-stat-card strong{
    display:block;
    font-family:var(--h-font-display);
    font-size:44px;
    background:var(--h-grad);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:10px;
}
.h-stat-card strong::after{ content:"+"; -webkit-text-fill-color:var(--h-violet); }
.h-stat-card span{
    font-family:var(--h-font-mono);
    font-size:11.5px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--h-text-dim);
}

/* ---------------------------------------------------------------------
   APPROACH — vertical timeline
--------------------------------------------------------------------- */
.h-approach{ padding:20px 0; background:var(--h-bg-elevated); }

.h-vtimeline{
    position:relative;
    max-width:760px;
    margin:0 auto;
    padding-left:52px;
}
.h-vtimeline-rail{
    position:absolute;
    left:23px; top:6px; bottom:6px;
    width:2px;
    background:var(--h-border);
}
.h-vtimeline-fill{
    display:block;
    width:100%;
    height:0%;
    background:var(--h-grad);
    transition:height .1s linear;
}

.h-vtimeline-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:26px;
    padding:22px 0;
}
.h-vtimeline-dot{
    position:absolute;
    left:-52px;
    width:48px; height:48px;
    display:flex; align-items:center; justify-content:center;
    background:var(--h-panel-solid);
    border:1px solid var(--h-border);
    border-radius:50%;
    font-family:var(--h-font-mono);
    font-size:13px;
    font-weight:500;
    color:var(--h-text-dim);
    flex-shrink:0;
    transition:.35s;
}
.h-vtimeline-item:hover .h-vtimeline-dot{
    border-color:var(--h-mint);
    color:var(--h-mint);
    box-shadow:0 0 0 6px rgba(51,232,176,.1);
}
.h-vtimeline-item h3{
    font-size:19px;
    font-weight:600;
    padding:18px 26px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-md);
    width:100%;
    transition:.35s;
}
.h-vtimeline-item:hover h3{ border-color:rgba(51,232,176,.35); background:rgba(255,255,255,.06); }

/* ---------------------------------------------------------------------
   WHY CHOOSE US
--------------------------------------------------------------------- */
.h-why{ padding:20px 0; }

.h-why-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px;
    align-items:center;
}

.h-why-content h2{ font-size:clamp(26px,3vw,36px); margin:0 0 20px; }
.h-why-content > p{ font-size:16.5px; margin-bottom:32px; }

.h-why-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.h-why-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-sm);
    font-size:14px;
    font-weight:600;
    color:#fff;
    transition:.3s;
}
.h-why-item i{ color:var(--h-mint); font-size:16px; flex-shrink:0; }
.h-why-item:hover{ border-color:rgba(51,232,176,.4); transform:translateX(4px); }

/* ---------------------------------------------------------------------
   INDUSTRIES
--------------------------------------------------------------------- */
.h-industries{
    position:relative;
    padding:20px 0 120px;
    overflow:hidden;
    background:var(--h-void);
}
.h-industries-bg{
    position:absolute; inset:0;
    background-image:url('/assets/images/home/industries-bg.jpg');
    background-size:cover;
    background-position:center;
    opacity:.22;
}
.h-industries-overlay{
    padding:20px 0; 
    position:absolute; inset:0;
    background:linear-gradient(180deg, var(--h-void) 0%, rgba(6,7,10,.75) 40%, var(--h-void) 100%);
}
.h-industries .h-container{ position:relative; z-index:1; }
.h-industries .h-marquee{ position:relative; z-index:1; margin-bottom:18px; }
.h-industries .h-heading{ margin-bottom:60px; }

/* ---------------------------------------------------------------------
   CASE STUDIES
--------------------------------------------------------------------- */
.h-cases{ padding:20px 0; background:var(--h-bg-elevated); }

.h-cases-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.h-case-card{
    display:block;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-lg);
    overflow:hidden;
    text-decoration:none;
    transition:.4s cubic-bezier(.16,.8,.28,1);
}
.h-case-img{
    aspect-ratio:16/10;
    overflow:hidden;
    background:var(--h-bg-elevated);
}
.h-case-img img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s cubic-bezier(.16,.8,.28,1);
}
.h-case-card:hover .h-case-img img{ transform:scale(1.08); }

.h-case-body{ padding:28px; }
.h-tag{
    display:inline-block;
    font-family:var(--h-font-mono);
    font-size:11px;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--h-amber);
    margin-bottom:14px;
}
.h-case-body h3{ font-size:19px; margin-bottom:12px; }
.h-case-body p{ font-size:13.5px; margin-bottom:20px; }

.h-case-card:hover{ border-color:rgba(255,180,99,.4); transform:translateY(-6px); box-shadow:var(--h-shadow); }
.h-case-card:hover .h-card-go i{ transform:translateX(5px); }

/* ---------------------------------------------------------------------
   INSIGHTS
--------------------------------------------------------------------- */
.h-insights{ padding:20px 0; }

.h-insights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.h-insight-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:32px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-md);
    text-decoration:none;
    transition:.4s cubic-bezier(.16,.8,.28,1);
}
.h-insight-icon{
    width:48px; height:48px;
    display:flex; align-items:center; justify-content:center;
    border-radius:14px;
    background:linear-gradient(135deg, rgba(140,107,255,.18), rgba(51,232,176,.14));
    color:var(--h-violet);
    font-size:18px;
    margin-bottom:20px;
}
.h-insight-card h3{ font-size:18px; margin-bottom:10px; }
.h-insight-card p{ font-size:13.5px; margin-bottom:20px; flex-grow:1; }

.h-insight-card:hover{ border-color:rgba(140,107,255,.4); transform:translateY(-6px); box-shadow:var(--h-shadow); }
.h-insight-card:hover .h-card-go i{ transform:translateX(5px); }

/* ---------------------------------------------------------------------
   CTA
--------------------------------------------------------------------- */
.h-cta{
    position:relative;
    padding:0;
    margin:0 32px 120px;
    border-radius:var(--h-radius-lg);
    overflow:hidden;
    max-width:1280px;
    margin-left:auto;
    margin-right:auto;
}
.h-cta-bg{
    position:absolute; inset:0;
    background-color:var(--h-bg-elevated);
    background-image:
      linear-gradient(160deg, rgba(6,7,10,.88), rgba(6,7,10,.75)),
      url('/assets/images/home/cta-skyline.jpg');
    background-size:cover;
    background-position:center;
}
.h-cta .h-container{ position:relative; padding:25px 32px; }
.h-cta-inner{ max-width:600px; margin:0 auto; text-align:center; }
.h-cta-inner .h-eyebrow{ justify-content:center; }
.h-cta-inner h2{ font-size:clamp(28px,3.6vw,42px); margin-bottom:18px; }
.h-cta-inner p{ font-size:16.5px; margin-bottom:36px; }

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

@media(max-width:1200px){
    .h-services-grid{ grid-template-columns:repeat(2,1fr); }
    .h-about-grid,
    .h-stats-grid,
    .h-why-grid{ grid-template-columns:1fr; gap:56px; }
    .h-about-media{ max-width:440px; margin:0 auto; }
    .h-cases-grid,
    .h-insights-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:768px){
    .h-container{ padding:0 20px; }
    .h-hero{ padding:130px 0 90px; min-height:auto; }
    .h-hero-cta{ flex-direction:column; width:100%; }
    .h-hero-cta .h-btn{ width:100%; justify-content:center; }
    .h-hero-chips{ gap:10px; }
    .h-main{margin-bottom: -90px;}

    .h-about,
    .h-services,
    .h-stats,
    .h-approach,
    .h-why,
    .h-industries,
    .h-cases,
    .h-insights{ padding-top:25px; padding-bottom:25px; }

    .h-services-grid,
    .h-cases-grid,
    .h-insights-grid{ grid-template-columns:1fr; }

    .h-pillars,
    .h-stats-cards,
    .h-why-list{ grid-template-columns:1fr; }

    .h-vtimeline{ padding-left:44px; }
    .h-vtimeline-dot{ left:-44px; width:40px; height:40px; font-size:11px; }
    .h-vtimeline-item h3{ font-size:16px; padding:14px 18px; }

    .h-cta{ margin:0 20px 90px; }
    .h-cta .h-container{ padding:70px 24px; }
}

@media(max-width:480px){
    .h-hero-title{ font-size:clamp(32px,9vw,44px); }
    .h-chip strong{ font-size:18px; }
    .h-case-body,
    .h-insight-card{ padding:22px; }
}

/* =====================================================================
   AMKA CAPITAL SERVICES — SITE-WIDE ANIMATION & MICRO-INTERACTION SYSTEM
   ------------------------------------------------------------------
   Append this to the END of assets/style.css (after everything else).
   Drop-in: targets classes that already exist across your pages, so
   no HTML edits are required anywhere.

   Pairs with assets/site-animations.js — that script adds the class
   "anim-ready" to <body> once it loads. Every hidden/reveal rule below
   is scoped under body.anim-ready, so if the script is ever missing
   or fails on a page, all content simply stays fully visible (safe
   progressive enhancement — nothing can get stuck invisible).
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. SCROLL REVEAL — fade + rise + soft blur-in
--------------------------------------------------------------------- */
body.anim-ready :is(
    .about-card,
    .leader-card,
    .expertise-column,
    .value-card,
    .choose-grid > div,
    .deliverable-card,
    .expertise-grid > div,
    .stat-card,
    .model-grid > div,
    .strength-grid > div,
    .coverage-grid > div,
    .career-card,
    .partner-card,
    .career-info-card,
    .faq-item,
    .global-box,
    .timeline-item,
    .timeline-card,
    .industry-card,
    .case-card,
    .knowledge-card,
    .report-card,
    .why-card,
    .team-card,
    .section-heading
){
    opacity:0;
    transform:translateY(28px);
    filter:blur(4px);
    transition:
        opacity .8s cubic-bezier(.16,.8,.28,1),
        transform .8s cubic-bezier(.16,.8,.28,1),
        filter .8s cubic-bezier(.16,.8,.28,1);
}

body.anim-ready :is(
    .about-card,
    .leader-card,
    .expertise-column,
    .value-card,
    .choose-grid > div,
    .deliverable-card,
    .expertise-grid > div,
    .stat-card,
    .model-grid > div,
    .strength-grid > div,
    .coverage-grid > div,
    .career-card,
    .partner-card,
    .career-info-card,
    .faq-item,
    .global-box,
    .timeline-item,
    .timeline-card,
    .industry-card,
    .case-card,
    .knowledge-card,
    .report-card,
    .why-card,
    .team-card,
    .section-heading
).show{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
}

/* service-detail-card already ships its own opacity/transform + .show
   pair earlier in this file — this just brings it into the same
   easing curve + adds the blur touch, safely overriding by cascade
   order since this block is appended last. */
.service-detail-card{
    filter:blur(4px);
    transition:
        opacity .8s cubic-bezier(.16,.8,.28,1),
        transform .8s cubic-bezier(.16,.8,.28,1),
        filter .8s cubic-bezier(.16,.8,.28,1),
        box-shadow .4s ease,
        border-color .4s ease;
}
.service-detail-card.show{ filter:blur(0); }

@media (prefers-reduced-motion: reduce){
    body.anim-ready :is(
        .about-card,.leader-card,.expertise-column,.value-card,.choose-grid > div,
        .deliverable-card,.expertise-grid > div,.stat-card,.model-grid > div,
        .strength-grid > div,.coverage-grid > div,.career-card,.partner-card,
        .career-info-card,.faq-item,.global-box,.timeline-item,.timeline-card,
        .industry-card,.case-card,.knowledge-card,.report-card,.why-card,
        .team-card,.section-heading,.service-detail-card
    ){
        opacity:1 !important;
        transform:none !important;
        filter:none !important;
        transition:none !important;
    }
}

/* ---------------------------------------------------------------------
   2. STAGGERED DELAY — cascading entrance within each grid
--------------------------------------------------------------------- */
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(1){ transition-delay:.03s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(2){ transition-delay:.09s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(3){ transition-delay:.15s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(4){ transition-delay:.21s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(5){ transition-delay:.27s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(6){ transition-delay:.33s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(7){ transition-delay:.39s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(8){ transition-delay:.45s; }
:is(
    .about-grid,.leadership-grid,.expertise-grid,.values-grid,.choose-grid,
    .timeline,.deliverables-grid,.industry-grid,.team-grid,.associate-grid,
    .model-grid,.why-grid,.strength-grid,.coverage-grid,.case-grid,
    .knowledge-grid,.career-grid,.opportunity-grid,.partner-grid,.stats-grid,
    .services-grid,.reports-grid,.standards-grid,.timeline-grid
) > *:nth-child(9){ transition-delay:.51s; }

/* ---------------------------------------------------------------------
   3. HOVER LIFT — extend the same interaction to cards that don't
      have one yet (kept identical in feel to your existing
      .timeline-card / .industry-card / .case-card hovers)
--------------------------------------------------------------------- */
.about-card,
.leader-card,
.expertise-column,
.value-card,
.choose-grid > div,
.deliverable-card,
.expertise-grid > div,
.stat-card,
.model-grid > div,
.strength-grid > div,
.coverage-grid > div,
.career-card,
.partner-card,
.career-info-card,
.global-box{
    transition:
        transform .35s cubic-bezier(.16,.8,.28,1),
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.about-card:hover,
.leader-card:hover,
.expertise-column:hover,
.value-card:hover,
.choose-grid > div:hover,
.deliverable-card:hover,
.expertise-grid > div:hover,
.stat-card:hover,
.model-grid > div:hover,
.strength-grid > div:hover,
.coverage-grid > div:hover,
.career-card:hover,
.partner-card:hover,
.career-info-card:hover,
.global-box:hover{
    transform:translateY(-6px);
    border-color:var(--brass);
    box-shadow:0 24px 46px -22px rgba(11,18,16,.22);
}

.leader-card:hover{ border-color:var(--brass-light); }

.faq-item{ transition:border-color .3s ease, box-shadow .3s ease; }
.faq-item:hover{ border-color:rgba(176,141,87,.5); }
.faq-item.active{ border-color:var(--brass); box-shadow:0 16px 34px -20px rgba(11,18,16,.25); }

.timeline-item{ transition:transform .3s ease; }
.timeline-item:hover{ transform:translateY(-4px); }
.timeline-item:hover span{ color:var(--evergreen); }

/* Subtle sheen sweep on hover for the card types most likely to be
   scanned in a grid — a soft diagonal light pass, very short so it
   never feels gimmicky */
.about-card,
.leader-card,
.deliverable-card,
.career-card,
.partner-card{
    position:relative;
    overflow:hidden;
}
.about-card::after,
.leader-card::after,
.deliverable-card::after,
.career-card::after,
.partner-card::after{
    content:"";
    position:absolute;
    top:0; left:-60%;
    width:40%; height:100%;
    background:linear-gradient(115deg, transparent, rgba(176,141,87,.12), transparent);
    transform:skewX(-18deg);
    transition:left .7s ease;
    pointer-events:none;
}
.about-card:hover::after,
.leader-card:hover::after,
.deliverable-card:hover::after,
.career-card:hover::after,
.partner-card:hover::after{
    left:120%;
}

/* ---------------------------------------------------------------------
   4. ANIMATED HERO DECORATION — every "-hero" section gets a slow
      rotating orbit ring pair automatically (upgrades the existing
      static circle on .about-hero too, no extra markup)
--------------------------------------------------------------------- */
[class$="-hero"]:not(.service-hero){
    position:relative;
    overflow:hidden;
}
[class$="-hero"]:not(.service-hero)::before{
    content:"";
    position:absolute;
    width:560px;
    height:560px;
    top:-240px;
    right:-200px;
    border:1px solid rgba(176,141,87,.14);
    border-radius:50%;
    animation:amka-orbit-spin 70s linear infinite;
    pointer-events:none;
}
[class$="-hero"]:not(.service-hero)::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    bottom:-160px;
    left:-120px;
    border:1px solid rgba(176,141,87,.08);
    border-radius:50%;
    animation:amka-orbit-spin 90s linear infinite reverse;
    pointer-events:none;
}
@keyframes amka-orbit-spin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

/* Hero heading + intro paragraph: gentle on-load rise, no JS needed */
[class$="-hero"] h1{
    animation:amka-hero-in .9s cubic-bezier(.16,.8,.28,1) both;
}
[class$="-hero"] p{
    animation:amka-hero-in .9s cubic-bezier(.16,.8,.28,1) .12s both;
}
@keyframes amka-hero-in{
    from{ opacity:0; transform:translateY(18px); }
    to{ opacity:1; transform:translateY(0); }
}

@media (prefers-reduced-motion: reduce){
    [class$="-hero"]::before,
    [class$="-hero"]::after{ animation:none; }
    [class$="-hero"] h1,
    [class$="-hero"] p{ animation:none; }
}

/* ---------------------------------------------------------------------
   5. STAT COUNTERS — Professional Network page numbers
      (site-animations.js animates these from 0 automatically —
      no markup change needed, it reads the existing text)
--------------------------------------------------------------------- */
.stat-card h3{
    transition:color .3s ease;
}
.stat-card:hover h3{ color:var(--brass-light); }

/* ---------------------------------------------------------------------
   6. INDUSTRY TAGS — small lift + invert, matching .industry-card
--------------------------------------------------------------------- */
.industry-tags span{
    transition:transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.industry-tags span:hover{
    background:var(--ink);
    color:var(--ivory);
    border-color:var(--brass);
    transform:translateY(-3px);
}

/* =====================================================================
   AMKA CAPITAL SERVICES — SITE-WIDE DARK / GLASSMORPHIC THEME
   ------------------------------------------------------------------
   Re-themes about, services, our-approach, industries, professional-
   network, whyus, case-studies, insights, careers, faq and contact to
   match the new homepage look — new fonts, new dark palette, glass
   cards, rounded corners instead of the diagonal clip-path cut.

   STRATEGY: your site already routes nearly every colour/font/shape
   through CSS custom properties (--ink, --brass, --ivory, --white,
   --font-display, --clip-md, etc.), so most of the re-theme happens
   by redefining those tokens once. The handful of spots that used a
   hardcoded colour, or used one variable for two different jobs (e.g.
   var(--ink) as both "dark background" and "dark text on a light
   background"), are patched explicitly below so nothing goes
   invisible once the backgrounds flip dark.

   LOAD ORDER (all three, in this order, on every page):
     1. assets/style.css
     2. assets/site-animations.css
     3. assets/dark-theme-override.css   <-- this file
     (site-animations.js stays exactly as installed before)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------------------------------------------------------------------
   1. TOKENS — redefine in place so every existing rule re-themes
      automatically without being touched
--------------------------------------------------------------------- */
:root{
    --ink:#06070A;                 /* void — header, footer, hero, cta */
    --ink-soft:#0F1218;             /* elevated dark panel */
    --evergreen:#8C6BFF;            /* secondary accent, now violet */
    --evergreen-light:#A48CFF;
    --brass:#33E8B0;                /* primary accent, now mint */
    --brass-light:#5FEFC0;
    --ivory:#F3F5F8;                /* KEEP LIGHT — used as text colour
                                        on dark sections everywhere
                                        (hero h1s, footer, nav). Page
                                        backgrounds are handled in §2
                                        instead, so this stays readable. */
    --ivory-deep:#0D0F14;           /* alternating dark section bg */
    --white:rgba(255,255,255,.045); /* card surfaces become glass panels */
    --slate:#9AA2B1;                /* body text, now light-on-dark */
    --slate-light:#6B7280;
    --hairline:rgba(255,255,255,.10);
    --hairline-light:rgba(255,255,255,.16);

    --font-display:'Space Grotesk', sans-serif;
    --font-body:'Plus Jakarta Sans', sans-serif;
    --font-mono:'JetBrains Mono', monospace;

    --clip-sm:none;
    --clip-md:none;
    --clip-lg:none;
}

/* ---------------------------------------------------------------------
   2. PAGE BACKGROUNDS — the "-page" wrappers and body used
      var(--ivory) for a light cream background; give them a fresh
      dark value instead of touching --ivory itself (see note above)
--------------------------------------------------------------------- */
body,
.main, main,
.contact-page,.about-page,.approach-page,.reports-page,.industries-page,
.network-page,.why-page,.case-studies-page,.insights-page,.careers-page,
.faq-page,.service-page{
    background:#0A0C10;
}

/* Card corners: rounded instead of diagonal-cut now that --clip-* is none */
.about-card,.leader-card,.expertise-column,.value-card,.timeline-item,
.timeline-card,.deliverable-card,.industry-card,.expertise-grid > div,
.stat-card,.team-card,.model-grid > div,.why-card,.strength-grid > div,
.coverage-grid > div,.case-card,.knowledge-card,.career-card,.partner-card,
.career-info-card,.faq-item,.global-box,.choose-grid > div,.report-card,
.standards-grid > div,.about-cta,.mobile-toggle,.btn-primary,
.contact-form button,.contact-float,.custom-lang,.contact-form input,
.contact-form textarea,.service-intro-content,.service-detail-card{
    border-radius:20px;
}
.mobile-toggle,.btn-primary,.contact-form button{ border-radius:100px; }

/* ---------------------------------------------------------------------
   3. GLASS CARD SURFACE — backdrop blur + refined border on every
      card type that reads var(--white) for its background
--------------------------------------------------------------------- */
.about-card,.expertise-column,.industry-tags span,.global-box,
.choose-grid > div,.timeline-card,.report-card,.standards-grid > div,
.industry-card,.expertise-grid > div,.stat-card,.team-card,
.model-grid > div,.why-card,.strength-grid > div,.coverage-grid > div,
.case-card,.knowledge-card,.career-card,.partner-card,.career-info-card,
.faq-item,.popup-box,.contact-form,.deliverable-card{
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:0 24px 50px -28px rgba(0,0,0,.6);
}

/* Hardcoded backgrounds that var(--white) redefinition can't reach */
.contact-info{ background:rgba(255,255,255,.045); backdrop-filter:blur(16px); }
.timeline-item{ background:rgba(255,255,255,.045); backdrop-filter:blur(16px); }
.deliverable-card{ background:rgba(255,255,255,.045); }
.service-intro-content{ background:rgba(255,255,255,.045); backdrop-filter:blur(16px); }
.service-detail-card{ background:rgba(255,255,255,.045); backdrop-filter:blur(16px); }

/* ---------------------------------------------------------------------
   4. TEXT COLOUR FIXES — anything that read var(--ink) or a
      hardcoded dark colour AS TEXT sitting on what is now a dark
      background. (Text on var(--brass)/mint buttons is left alone —
      dark text still reads fine on a light mint fill.)
--------------------------------------------------------------------- */
h1,h2,h3,h4{ color:var(--ivory); }

.contact-hero h1,
.contact-info,
.contact-info h2,
.contact-form h2,
.case-card strong,
.faq-question,
.service-detail-card h3{
    color:var(--ivory) !important;
}

.faq-question{ background:transparent; }

/* Loading spinner needs a visible ring — var(--white) is now near-
   transparent glass, so give the loader its own solid value */
.loader{
    border-color:rgba(255,255,255,.28);
    border-top-color:transparent;
}

/* Contact form submit button: was white text on ink — keep it, still
   correct (ink stays dark, white text still needed there) — but give
   it the same mint→violet gradient treatment as the primary CTA */
.contact-form button{
    background:linear-gradient(120deg,#33E8B0 0%,#5FB8FF 55%,#8C6BFF 100%);
    color:#06070A;
}
.contact-form button:hover{ background:linear-gradient(120deg,#5FEFC0,#7fc9ff,#a48cff); color:#06070A; }

.btn-primary{
    background:linear-gradient(120deg,#33E8B0 0%,#5FB8FF 55%,#8C6BFF 100%);
    color:#06070A;
    box-shadow:0 14px 40px -14px rgba(51,232,176,.4);
    border:none;
}
.btn-primary:hover{
    background:linear-gradient(120deg,#5FEFC0,#7fc9ff,#a48cff);
    transform:translateY(-3px);
}

/* ---------------------------------------------------------------------
   5. FORM FIELDS — light cream input backgrounds need a dark
      treatment now the form panel itself is glass
--------------------------------------------------------------------- */
.contact-form input,
.contact-form textarea{
    background:rgba(255,255,255,.05);
    border:1px solid var(--hairline);
    color:var(--ivory);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:var(--slate-light);
}
.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--brass);
    box-shadow:0 0 0 3px rgba(51,232,176,.12);
}

/* ---------------------------------------------------------------------
   6. STAT NUMBERS — gradient text, matching the homepage counters
--------------------------------------------------------------------- */
.stat-card h3{
    background:linear-gradient(120deg,#33E8B0 0%,#5FB8FF 55%,#8C6BFF 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ---------------------------------------------------------------------
   7. HARDCODED GOLD ACCENTS — swap to the mint accent so nothing
      still shows the old brand colour after the token remap
--------------------------------------------------------------------- */
.dropdown-menu li a:hover{ background:rgba(51,232,176,.12); }
.mobile-toggle{ border:1px solid rgba(51,232,176,.4); }
.mobile-toggle:hover{ background:rgba(51,232,176,.14); }
.nav-menu .submenu-toggle{
    background:rgba(51,232,176,.12);
    border:1px solid rgba(51,232,176,.28);
}
.nav-menu .dropdown-menu{ background:var(--ink-soft); } /* was mistakenly
    referencing a variable from the homepage stylesheet that doesn't
    exist here — this restores the mobile submenu background */
.nav-menu .dropdown-menu li a:hover{ background:rgba(51,232,176,.1); }

.about-hero::before{ border-color:rgba(51,232,176,.14); }

.service-hero{
    background:linear-gradient(135deg,#06070A 0%,#0F1218 100%);
}
.service-hero::before{ background:rgba(51,232,176,.08); }
.service-hero::after{ background:rgba(140,107,255,.06); }
.service-detail-card::before{
    background:linear-gradient(135deg, rgba(51,232,176,.08), transparent 45%);
}
.service-detail-card:hover{ border-color:rgba(51,232,176,.35); }
.service-detail-card::after{ background:var(--brass); }

/* Generic hero orbit decoration added by site-animations.css also used
   a hardcoded gold rgba — bring it in line with the mint accent */
[class$="-hero"]::before{ border-color:rgba(51,232,176,.16) !important; }
[class$="-hero"]::after{ border-color:rgba(51,232,176,.09) !important; }

/* ---------------------------------------------------------------------
   8. SMALL POLISH
--------------------------------------------------------------------- */
::selection{ background:rgba(51,232,176,.25); color:#fff; }

::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:#06070A; }
::-webkit-scrollbar-thumb{ background:#1B1F27; border-radius:10px; }
::-webkit-scrollbar-thumb:hover{ background:var(--brass); }

.industry-card:hover{ background:rgba(255,255,255,.08); color:var(--ivory); }


/* =====================================================================
   GLOBAL VALUATION EXPERIENCE — homepage section
   Append to the end of assets/home.css. Uses the same tokens as the
   rest of the homepage (--h-mint, --h-panel, --h-border, fonts, etc.)
   ===================================================================== */

.h-value-exp{
    padding:20px 0 20px;
    background:var(--h-bg-elevated);
    overflow:hidden;
}

.h-value-exp .h-heading{ margin-bottom:50px; }

/* ---------- Stat row ---------- */
.h-value-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    max-width:980px;
    margin:0 auto 70px;
}
.h-value-stat{
    text-align:center;
    padding:26px 18px;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-md);
}
.h-value-stat strong{
    display:block;
    font-family:var(--h-font-display);
    font-size:38px;
    background:var(--h-grad);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:8px;
}
.h-value-stat strong::after{ content:"+"; }
.h-value-stat-text strong{ font-size:26px; }
.h-value-stat-text strong::after{ content:""; }
.h-value-stat span{
    font-family:var(--h-font-mono);
    font-size:11px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--h-text-dim);
}

/* ---------- Track / carousel ---------- */
.h-value-track-wrap{
    position:relative;
    max-width:1280px;
    margin:0 auto;
    padding:0 32px;
}

.h-value-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x proximity;
    scroll-behavior:smooth;
    padding:6px 4px 30px;
    -ms-overflow-style:none;
    scrollbar-width:none;
}
.h-value-track::-webkit-scrollbar{ display:none; }

.h-value-card{
    flex:0 0 auto;
    width:320px;
    scroll-snap-align:start;
    display:flex;
    flex-direction:column;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:var(--h-radius-lg);
    overflow:hidden;
    text-decoration:none;
    transition:.4s cubic-bezier(.16,.8,.28,1);
}
.h-value-card:hover{
    border-color:rgba(51,232,176,.4);
    transform:translateY(-6px);
    box-shadow:var(--h-shadow-glow);
}

.h-value-logo{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.03);
    border-bottom:1px solid var(--h-border);
    padding:24px;
}
.h-value-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    filter:grayscale(.15) brightness(1.05);
}

.h-value-body{
    padding:24px 22px 26px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.h-value-country{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-family:var(--h-font-mono);
    font-size:11px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--h-mint);
    margin-bottom:12px;
}
.h-value-country i{ font-size:10px; }

.h-value-body h3{
    font-size:17px;
    line-height:1.35;
    margin-bottom:12px;
}

.h-value-body .h-tag{
    display:inline-block;
    font-size:12.5px;
    color:var(--h-text-dim);
    margin-bottom:16px;
}

.h-value-purpose{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}
.h-value-purpose span{
    font-family:var(--h-font-mono);
    font-size:10.5px;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    padding:6px 10px;
    border-radius:100px;
}

.h-value-body .h-card-go{ margin-top:auto; }

/* ---------- Nav arrows ---------- */
.h-value-nav{
    position:absolute;
    top:50%;
    translate:0 -50%;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--h-panel);
    border:1px solid var(--h-border);
    border-radius:50%;
    color:var(--h-text);
    cursor:pointer;
    z-index:2;
    backdrop-filter:blur(10px);
    transition:.3s;
}
.h-value-nav:hover{
    border-color:var(--h-mint);
    color:var(--h-mint);
    background:rgba(51,232,176,.08);
}
.h-value-nav.prev{ left:-4px; }
.h-value-nav.next{ right:-4px; }

/* ---------------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------------- */
@media(max-width:1200px){
    .h-value-nav{ display:none; }
    .h-value-track-wrap{ padding:0 20px; }
}

@media(max-width:768px){
    .h-value-exp{ padding:10px 0 10px; }
    .h-value-stats{ grid-template-columns:1fr 1fr; }
    .h-value-card{ width:270px; }
    .h-value-logo{ height:120px; }
}

@media(max-width:480px){
    .h-value-stats{ grid-template-columns:1fr 1fr; gap:12px; }
    .h-value-stat{ padding:20px 12px; }
    .h-value-stat strong{ font-size:30px; }
    .h-value-card{ width:250px; }
}

/* =====================================================================
   VALUE EXPERIENCE DETAIL PAGE — /value-experience/
   Append to the end of assets/style.css (after dark-theme-override.css
   content, or anywhere after :root — it reads the same --ink/--brass/
   --ivory tokens as every other page, so it inherits the dark/mint
   theme automatically).
   ===================================================================== */

.value-page,
.services-main-page{ background:#0A0C10; }

/* ---------- Hero ---------- */
.value-hero{
    background:var(--ink);
    padding:10px 0 10px;
}
.value-hero h1{
    color:var(--ivory);
    font-size:clamp(36px,5vw,60px);
    line-height:1.1;
    max-width:820px;
    margin:12px 0 22px;
}
.value-hero p{
    max-width:720px;
    color:rgba(247,245,240,.72);
    line-height:1.8;
    font-size:17px;
}

/* ---------- Stats ---------- */
.value-stats-section{ padding:50px 0; }

.value-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.value-stat{
    text-align:center;
    padding:28px 18px;
    background:var(--white);
    border:1px solid var(--hairline);
    border-radius:20px;
}
.value-stat strong{
    display:block;
    font-family:var(--font-display);
    font-size:40px;
    color:var(--brass);
    margin-bottom:8px;
}
.value-stat strong::after{ content:"+"; }
.value-stat-text strong{ font-size:26px; }
.value-stat-text strong::after{ content:""; }
.value-stat span{
    font-family:var(--font-mono);
    font-size:11.5px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--slate);
}

/* ---------- Listing ---------- */
.value-listing{ padding:60px 0 100px; }

.section-heading.center{ text-align:center; margin-bottom:60px; }
.section-heading.center h2{ margin:10px auto 0; max-width:640px; }

.value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
    margin-bottom:60px;
}

.value-detail-card{
    display:flex;
    flex-direction:column;
    background:var(--white);
    border:1px solid var(--hairline);
    border-radius:22px;
    overflow:hidden;
    transition:transform .35s cubic-bezier(.16,.8,.28,1), border-color .35s, box-shadow .35s;
}
.value-detail-card:hover{
    transform:translateY(-6px);
    border-color:var(--brass);
    box-shadow:0 26px 50px -24px rgba(0,0,0,.5);
}

.value-logo{
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.03);
    border-bottom:1px solid var(--hairline);
    padding:20px;
}
.value-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.value-body{
    padding:24px 24px 28px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.value-meta{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-bottom:14px;
}
.value-location{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-family:var(--font-mono);
    font-size:11px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--brass);
}
.value-location i{ font-size:10px; }
.value-industry-tag{
    font-size:12.5px;
    color:var(--slate);
}

.value-body h3{
    font-size:19px;
    line-height:1.35;
    margin-bottom:12px;
}

.value-overview{
    font-size:14px;
    line-height:1.8;
    color:var(--slate);
    margin-bottom:18px;
}

.value-metric{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:14px 16px;
    background:rgba(51,232,176,.06);
    border:1px solid rgba(51,232,176,.18);
    border-radius:14px;
    margin-bottom:16px;
}
.value-metric-label{
    font-family:var(--font-mono);
    font-size:10.5px;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--brass-light);
}
.value-metric-figure{
    font-size:14px;
    font-weight:700;
    color:var(--ivory);
}

.value-purpose{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:14px;
}
.value-purpose span{
    font-family:var(--font-mono);
    font-size:10.5px;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:var(--ivory);
    background:rgba(255,255,255,.06);
    border:1px solid var(--hairline);
    padding:6px 10px;
    border-radius:100px;
}

.value-purpose-text{
    font-size:13px;
    line-height:1.7;
    color:var(--slate-light);
    margin-top:auto;
}

/* ---------- Pagination ---------- */
.value-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}
.page-arrow,
.page-num{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--white);
    border:1px solid var(--hairline);
    color:var(--ivory);
    font-family:var(--font-mono);
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.page-arrow:hover,
.page-num:hover{
    border-color:var(--brass);
    color:var(--brass-light);
}
.page-num.active{
    background:var(--brass);
    border-color:var(--brass);
    color:var(--ink);
}
.page-arrow:disabled{
    opacity:.35;
    cursor:not-allowed;
}
.page-arrow:disabled:hover{
    border-color:var(--hairline);
    color:var(--ivory);
}

/* ---------- CTA ---------- */
.value-cta-section{ padding:0 0 130px; }

.value-cta{
    background:var(--ink);
    padding:80px 50px;
    text-align:center;
    border-radius:28px;
    position:relative;
    overflow:hidden;
}
.value-cta h2{
    color:var(--ivory);
    font-size:clamp(28px,3.6vw,40px);
    margin:14px 0 16px;
}
.value-cta p{
    max-width:560px;
    margin:0 auto 32px;
    color:rgba(247,245,240,.72);
    font-size:16.5px;
    line-height:1.8;
}

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

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

@media(max-width:768px){
    .value-hero{ padding:10px 0 10px; }
    .value-stats-section{ padding:30px 0; }
    .value-stats-grid{ grid-template-columns:1fr 1fr; gap:12px; }
    .value-stat{ padding:20px 12px; }
    .value-stat strong{ font-size:30px; }

    .value-listing{ padding:40px 0 70px; }
    .value-grid{ grid-template-columns:1fr; gap:20px; margin-bottom:40px; }

    .value-cta{ padding:50px 26px; border-radius:20px; }
}

@media(max-width:480px){
    .value-body{ padding:20px; }
    .page-arrow,.page-num{ width:38px; height:38px; font-size:13px; }
}

.h-card-img {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #0d0f13;
}

.h-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.h-card:hover .h-card-img img {
  transform: scale(1.08);
}

.h-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,12,16,0.85) 100%);
}

.h-card-icon {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #12151b;
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #2dd4bf;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.h-card {
  position: relative;
  padding-top: 24px;
  overflow: visible;
}

.h-card h3 {
  margin-top: 14px;
}

.h-insight-img {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #0d0f13;
}

.h-insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.h-insight-card:hover .h-insight-img img {
  transform: scale(1.08);
}

.h-insight-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,12,16,0.85) 100%);
}

.h-insight-icon {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #12151b;
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #8b5cf6;
  font-size: 18px;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.h-insight-card {
  position: relative;
  padding-top: 24px;
  overflow: visible;
}

.h-insight-card h3 {
  margin-top: 6px;
}

/* Desktop: hide the cloned cards, keep your normal grid */
.h-case-clone {
  display: none;
}

/* ============ MOBILE MARQUEE ============ */
@media (max-width: 768px) {

  .h-cases-viewport {
    overflow: hidden;
    width: 100%;
    /* fade edges so the loop feels seamless, optional */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }

  .h-cases-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: h-cases-scroll 22s linear infinite;
  }

  /* pause on touch/tap so users can read a card */
  .h-cases-viewport:active .h-cases-track {
    animation-play-state: paused;
  }

  .h-case-clone {
    display: flex; /* show the clones only on mobile */
  }

  .h-case-card {
    flex: 0 0 auto;
    width: 78vw;      /* size of each card on mobile */
    margin-right: 16px;
  }

  @keyframes h-cases-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* -50% because content is duplicated 2x */
  }
}

/* =========================================================
   DOCUMENTS PAGE — append this to your theme's stylesheet
   Same HTML/classes as before, re-skinned to the
   Evergreen / Brass / Ivory theme
========================================================= */

.documents-section{
    padding:20px 20px 20px;
    background:var(--ivory);
}

.documents-section .container{
    max-width:1100px;
    margin:0 auto;
    padding:0;
}

.documents-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.documents-section .section-title h2{
    font-family:var(--font-display);
    font-size:38px;
    color:var(--ink);
    letter-spacing:-.01em;
    margin-bottom:14px;
}

.documents-section .section-title p{
    font-family:var(--font-body);
    color:var(--slate-light);
    font-size:16px;
}

.doc-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
}

.doc-card{
    display:flex;
    align-items:center;
    gap:30px;
    background:var(--white);
    border:1px solid var(--hairline);
    padding:32px 40px;
    clip-path:var(--clip-md);
    transition:transform .45s cubic-bezier(.22,1,.36,1),
               box-shadow .45s cubic-bezier(.22,1,.36,1),
               border-color .45s cubic-bezier(.22,1,.36,1);
}

.doc-card:hover{
    transform:translateY(-4px);
    border-color:var(--brass);
    box-shadow:0 18px 40px rgba(11,18,16,.12);
}

.doc-icon{
    flex:0 0 60px;
    width:60px;
    height:60px;
    background:var(--ivory-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    clip-path:var(--clip-sm);
    transition:transform .35s ease, background .35s ease;
}

.doc-card:hover .doc-icon{
    background:var(--brass);
    transform:scale(1.06);
}

.doc-icon i{
    font-size:22px;
    color:var(--evergreen);
    transition:color .35s ease;
}

.doc-card:hover .doc-icon i{
    color:var(--ink);
}

.doc-info{
    flex:1 1 auto;
    min-width:0;
}

.doc-name{
    font-family:var(--font-display);
    font-size:20px;
    font-weight:600;
    color:var(--ink);
    margin-bottom:8px;
}

.doc-desc{
    font-family:var(--font-body);
    font-size:14.5px;
    color:var(--slate);
    line-height:1.65;
    margin-bottom:10px;
}

.doc-meta{
    font-family:var(--font-mono);
    font-size:11.5px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--brass);
}

.doc-actions{
    flex:0 0 auto;
    display:flex;
    flex-direction:column;
    gap:10px;
    min-width:150px;
}

.doc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 22px;
    font-family:var(--font-body);
    font-size:12.5px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    text-decoration:none;
    white-space:nowrap;
    clip-path:var(--clip-sm);
    transition:.3s ease;
}

.doc-btn.view{
    background:transparent;
    color:var(--evergreen);
    border:1px solid var(--evergreen);
}

.doc-btn.view:hover{
    background:var(--evergreen);
    color:var(--ivory);
    transform:translateY(-2px);
}

.doc-btn.download{
    background:var(--brass);
    color:var(--ink);
    border:1px solid var(--brass);
}

.doc-btn.download:hover{
    background:var(--evergreen);
    color:var(--ivory);
    border-color:var(--evergreen);
    transform:translateY(-2px);
}

/* ---------- Responsive ---------- */
@media(max-width:768px){
    .doc-card{
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
        padding:28px 26px;
    }
    .doc-actions{
        flex-direction:row;
        width:100%;
    }
    .doc-btn{
        flex:1 1 auto;
    }
}