/* ================= GLOBAL FONT & SCROLL LOCK ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* { box-sizing: border-box; }

html, body { 
    margin: 0; padding: 0; scroll-behavior: smooth; background: #000; color: #e5e5e5; 
    font-family: "Poppins", sans-serif !important; 
    overflow-x: hidden !important;   /* ✅ FIX */
    width: 100% !important;
}

/* BRUTE FORCE PUSH-DOWN FOR COMPANY PAGE & SUBPAGES */
h1 {
    font-size: 52px;
    font-weight: 600;
    margin: 0;
    padding-top: 0 !important;   /* 🔥 FIX */
}

h2, .section h2 { font-size: 36px; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.2px; color: #f2f2f2; width: 100%; display: block; }
h3 { font-size: 20px; font-weight: 500; color: #dddddd; margin-bottom: 10px; }

p { font-size: 15px; color: #888888; line-height: 1.65; max-width: 100%; word-wrap: break-word; }

img { max-width: 100%; height: auto; }

/* ================= UTILITY CLASSES ================= */
.text-orange, .dealos-orange { color: #ff6b00 !important; background: none !important; -webkit-text-fill-color: #ff6b00 !important; }
.btn-orange { background: #ff6b00 !important; color: #ffffff !important; border: 1px solid #ff6b00 !important; -webkit-text-fill-color: #ffffff !important; }

.btn, .button, button, .action-wrap { 
    display: flex !important; justify-content: center !important; align-items: center !important; 
    margin-left: auto !important; margin-right: auto !important; text-align: center !important; width: max-content; 
}

.center { display: flex; flex-direction: column; align-items: center; text-align: center !important; margin: 0 auto; }
.center h1, .center h2 { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }

.cta, .cta.center {
    display: flex !important; flex-direction: row !important; justify-content: center !important; 
    align-items: center !important; gap: 20px !important; width: 100% !important; margin-top: 40px !important;
}
.cta .btn { margin: 0 !important; }

.explore-link {
    background: linear-gradient(90deg, #10b981 0%, #ffffff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-weight: 600; text-decoration: none; display: inline-block;
    margin-top: 15px; text-transform: none !important; 
}

/* ================= HEADER & MENU FIXES ================= */
.navbar { 
    display: flex; justify-content: space-between; align-items: center; padding: 0 24px; position: fixed; 
    top: 0; left: 0; width: 100%; background: #000; z-index: 9999; height: 80px; box-sizing: border-box; 
}

#header {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar::after { 
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; 
    background: linear-gradient(90deg, rgba(255,255,255,0.2), #10b981, rgba(255,255,255,0.2)); 
    box-shadow: 0 0 15px 2px rgba(16, 185, 129, 0.4); z-index: 10000; 
}

.navbar .logo { display: flex; align-items: center; width: max-content; z-index: 10001; }
.logo img { height: 42px; display: block; }

.mobile-toggle { display: none !important; }

.menu { display: flex; gap: 34px; margin-left: auto; transition: 0.3s ease; align-items: center; }

/* GLOBALLY LOCKS HEADER FONT SIZE AND WEIGHT TO PREVENT 'BLOAT' */
.menu a, .menu a:link, .menu a:visited { 
    color: #cfcfcf !important; 
    text-decoration: none !important; 
    font-size: 12px !important;  
    font-weight: 400 !important; 
    font-family: "Poppins", sans-serif !important; 
    transition: color 0.3s; 
}

.nav-item > a, .dropdown a, .menu > a { position: relative; display: inline-block; padding: 10px 0; }
.nav-item > a:hover, .dropdown a:hover, .menu > a:hover, .menu > a:active { color: #ffffff !important; }

.nav-item > a::after, .dropdown a::after, .menu > a::after {
    content: ''; position: absolute; bottom: 2px; left: 0; width: 0; height: 0.5px; 
    background-color: rgba(16, 185, 129, 0.9); transition: width 0.3s ease; box-shadow: 0 0 4px rgba(16, 185, 129, 0.5);
}
.nav-item > a:hover::after, .dropdown a:hover::after, .menu > a:hover::after { width: 100%; }

.nav-item { position: relative; display: flex; align-items: center; height: 80px; }

.dropdown { 
    position: absolute; top: 100%; left: 0; margin-top: 15px; 
    background: rgba(11, 15, 20, 0.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(31, 38, 48, 0.6); border-radius: 8px; 
    padding: 10px 0; min-width: 180px; opacity: 0; visibility: hidden; transform: translateY(10px); 
    transition: 0.3s ease; z-index: 50; 
}
.dropdown::before { content: ""; position: absolute; top: -30px; left: 0; width: 100%; height: 30px; background: transparent; }
.dropdown a { display: block; padding: 10px 16px; font-size: 11px !important; color: #cfcfcf; line-height: 1.2; margin: 0; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* ================= MARQUEE ANIMATION ================= */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.home-clients h2 {
    color: #111;
}

.clients-marquee-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.clients-marquee {
    display: flex;
    width: max-content;
    min-width: 200%;
    animation: marquee 40s linear infinite;
    gap: 60px;
    align-items: center;
}

.clients-marquee img {
    height: 42px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.partners-heading {
    margin-top: 60px;   /* 🔥 increase spacing */
}

/* CENTER HEADINGS + SEPARATOR */
.home-clients h2 {
    text-align: center !important;
    width: 100%;
    display: block;
    position: relative;
}

/* GREEN WHITE GRADIENT LINE */
.home-clients h2::after {
    content: "";
    display: block;
    width: 160px;
    height: 2px;
    margin: 12px auto 30px auto;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), #10b981, rgba(255,255,255,0.2));
    box-shadow: 0 0 10px rgba(16,185,129,0.5);
}

.architecture-section h2 {
    text-align: center !important;
    width: 100%;
}

/* ================= HERO, PADDING & AI SHIMMER ================= */
#hero, .company-hero { 
    position: relative;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0 !important;
}

@media (max-width: 768px) {
    #hero {
        padding-top: 60px !important;
    }
}

#labCanvas { position: absolute; inset: 0; width: 100%; height: 100%; left: 0; z-index: 0; filter: brightness(1.2) contrast(1.1); display: block; }
.hero-overlay { 
    position: absolute; inset: 0; z-index: 1; pointer-events: none; 
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 80%, transparent 100%); 
}

.hero-content, .hero-inner, .company-hero-inner, .page-header { 
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;

    padding: 40px 40px 0 40px !important;  /* 🔥 FIX: push content below sticky bar */

    box-sizing: border-box !important;
    text-align: center;
}

.hero-main { display: block; font-size: 58px; font-weight: 700; color: #ffffff; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; text-align: center; }

/* LATERAL SWAY */
.hero-stack span { 
    display: block; font-size: 64px; font-weight: 600; line-height: 1.05; opacity: 0; 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% auto;
}

.hero-l1 { background-image: linear-gradient(90deg, #666666 0%, #999999 50%, #666666 100%); animation: swayLeft 0.8s forwards, shimmerSway 3s infinite 2.5s; animation-delay: 0.2s; } 
.hero-l2 { background-image: linear-gradient(90deg, #aaaaaa 0%, #d4d4d4 50%, #aaaaaa 100%); animation: swayRight 0.8s forwards, shimmerSway 3s infinite 2.5s; animation-delay: 0.6s; } 
.hero-l3 { background-image: linear-gradient(90deg, #dddddd 0%, #ffffff 50%, #dddddd 100%); animation: swayLeft 0.8s forwards, shimmerSway 3s infinite 2.5s; animation-delay: 1.0s; }

@keyframes swayLeft { 0% { opacity: 0; transform: translateX(-60px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes swayRight { 0% { opacity: 0; transform: translateX(60px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes shimmerSway { 0% { background-position: -200% center; } 50% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* HOMEPAGE & PRODUCT HERO TEXT: Strictly Center Aligned on Desktop */
.hero-content p, .page-header p, .hero-inner p, #hero p, .hero-stack ~ p { 
    font-size: 15px; color: #888888; margin-top: 24px; max-width: 800px; 
    text-align: center !important; margin-left: auto !important; margin-right: auto !important;
}

/* COMPANY HERO TEXT: Strictly Left Aligned on Desktop */
.company-hero p { 
    font-size: 20px; color: #888888; margin-top: 24px; max-width: 800px; 
    text-align: left !important; margin-left: 0 !important;
}

.hero-trust { color: #555555; font-size: 14px; margin-top: 40px; letter-spacing: 0.5px; text-align: center; } 

/* ================= CARDS & STEEL SWIPE ================= */
.home-main { max-width: 100vw; overflow-x: hidden; padding-bottom: 60px; }
.home-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 80px auto; max-width: 1280px; padding: 0 24px; box-sizing: border-box; }

.card { 
    background: linear-gradient(90deg, #050505, #1a1a1a); padding: 28px; border: 1px solid #2a2a2a; 
    border-radius: 12px; min-height: 220px; position: relative; overflow: hidden; display: block; 
    text-decoration: none; color: inherit; cursor: pointer; transition: transform 0.2s; text-align: left; 
}
.card:hover { transform: translateY(-3px); border-color: #444; }
.card::before { 
    content: ""; position: absolute; top: 0; left: -150%; width: 100%; height: 100%; transform: skewX(-25deg); 
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent); z-index: 2; pointer-events: none; transition: 0s; 
}

.card:hover::before { animation: globalSwipe 0.8s ease forwards; }
@media (hover: none) { .card::before { animation: swipeTouch 4s infinite ease-in-out; } }
@keyframes globalSwipe { 0% { left: -150%; } 100% { left: 150%; } }
@keyframes swipeTouch { 0%, 80% { left: -150%; } 100% { left: 150%; } }

/* ================= DYNAMIC STICKY PRODUCT BAR ================= */
.product-sticky-bar { 
    position: fixed;
    top: 80px !important;
    z-index: 9998;

    width: 100%;
    margin: 0 !important;      /* 🔥 kills gap */
    padding: 12px 24px;        /* tighter */

    background: #000000;

    border-bottom: 1px solid #1f2630;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);

    transition: all 0.3s ease;
}

.product-hero {
    padding-top: 260px !important;
    padding-bottom: 60px;
    min-height: auto;
}

.product-sticky-bar.is-stuck { padding: 15px 24px; border-bottom: 1px solid #1f2630; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }

/* DESKTOP: LEFT ALIGNED */
.product-sticky-bar .container { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: flex-start; width: 100%; }
.product-tag { display: flex !important; align-items: center !important; justify-content: flex-start !important; gap: 16px !important; margin: 0 !important; }

.product-tag img { width: 56px !important; height: 56px !important; object-fit: contain !important; border-radius: 8px !important; transition: all 0.3s ease !important; display: block !important; }
.product-tag span { font-size: 36px !important; font-weight: 600 !important; color: #fff !important; letter-spacing: 0.5px !important; transition: all 0.3s ease !important; line-height: 1 !important; display: block !important; }

.product-sticky-bar.is-stuck .product-tag img { width: 32px !important; height: 32px !important; }
.product-sticky-bar.is-stuck .product-tag span { font-size: 24px !important; }

.product-hero .hero-content {
    margin-top: 0 !important;
    transform: none !important;
}

/* ================= SECTIONS & GRIDS ================= */
.section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; box-sizing: border-box; width: 100%; overflow: hidden; }
.section.alt { background: #050505; border-top: 1px solid #111; border-bottom: 1px solid #111; }
.section-intro { font-size: 18px; color: #aaa; margin-bottom: 40px; max-width: 800px; box-sizing: border-box; display: block; }
.strip { background: #111; padding: 20px 24px; text-align: center; font-size: 14px; color: #888; border-top: 1px solid #222; border-bottom: 1px solid #222; }

img[src*="WianArch"] { max-width: 800px !important; max-height: 50vh !important; width: 100% !important; object-fit: contain !important; margin: 120px auto 40px auto !important; display: block !important; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }

/* ================= FOOTER ================= */
/* 🔥 CLEAN GLOBAL FOOTER — SINGLE SOURCE OF TRUTH */

.footer {
    background: #111111;                 /* 🔥 FIX: visible vs page */
    border-top: 1px solid #222222;       /* 🔥 separation line */

    padding: 50px 24px 24px;             /* 🔥 more breathing space */
    margin-top: 80px;                    /* 🔥 pushes away from content */

    width: 100%;
    box-sizing: border-box;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;

    max-width: 1280px;
    margin: 0 auto 40px;
}

/* HEADINGS */
.footer h3 {
    color: #ffffff !important;
    margin-bottom: 18px;
    font-size: 15px;                     /* 🔥 slightly tighter */
    letter-spacing: 0.5px;
}

/* TEXT + LINKS */
.footer a,
.footer p,
.footer-bottom div {
    color: #999999 !important;           /* 🔥 improved contrast */
    font-size: 13px;                     /* 🔥 reduced noise */
    text-decoration: none;
    transition: 0.2s ease;
}

.footer a:hover {
    color: #10b981 !important;
}

/* BOTTOM STRIP */
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;

    max-width: 1280px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 6px;                            /* 🔥 cleaner spacing */
}

/* COPYRIGHT */
.footer-copy {
    color: #aaaaaa;
    font-size: 11px !important;
    margin-bottom: 4px;
    letter-spacing: 0.4px;
}

/* LEGAL LINKS */
.footer-legal {
    display: flex;
    flex-wrap: nowrap;                   /* 🔥 prevent wrapping */
    justify-content: center;
    align-items: center;
    gap: 10px;                           /* 🔥 spacing instead of margin */
}

.footer-legal a {
    font-size: 11px !important;
    white-space: nowrap !important;
    margin: 0 !important;                /* 🔥 remove old margin system */
}

/* ================= NUCLEAR MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .navbar { justify-content: center; }
    .navbar .logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
    
    .mobile-toggle { 
        display: flex !important; position: absolute !important; right: 24px !important; 
        top: 50%; transform: translateY(-50%); 
        background: transparent !important; border: none !important; color: #fff !important; 
        font-size: 32px !important; cursor: pointer !important; z-index: 999999 !important; 
        padding: 0; margin: 0; line-height: 1;
    }
    
    .menu { display: none; }
    
    .menu.active {
        display: flex !important; flex-direction: column; position: absolute;
        top: 80px; left: 0; width: 100%; height: calc(100vh - 80px); 
        background: #0b0f14; padding: 0 0 20px 0; border-top: 1px solid #1f2630; overflow-y: auto;
        align-items: center !important; justify-content: flex-start !important; padding-top: 20px;
    }
    
    .nav-item { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; height: auto; }
    
    .menu.active > a, .menu.active .nav-item > a { 
        position: relative; padding: 15px 0 !important; width: 100%; text-align: center !important; font-size: 16px; display: block; border-bottom: 1px solid #1a1a1a; margin: 0 auto !important;
    }
    
    .menu.active > a::after, .menu.active .nav-item > a::after, .menu.active .dropdown a::after { 
        content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 0%; height: 2px; 
        background-color: #10b981; transition: width 0.3s ease; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); display: block !important;
    }
    
    .menu.active > a:hover::after, .menu.active .nav-item > a:hover::after, .menu.active .dropdown a:hover::after,
    .menu.active > a:active::after, .menu.active .nav-item > a:active::after, .menu.active .dropdown a:active::after,
    .menu.active > a:focus::after, .menu.active .nav-item > a:focus::after, .menu.active .dropdown a:focus::after { width: 80px !important; }
    
    .menu.active .nav-item .dropdown {
        position: relative !important; top: 0 !important; left: 0 !important; 
        opacity: 1 !important; visibility: visible !important; transform: none !important; pointer-events: none !important;
        background: transparent !important; border: none !important; border-radius: 0 !important; min-width: 100% !important; padding: 0 !important; 
        display: flex !important; flex-direction: column !important; margin-top: 0 !important; align-items: center !important; box-shadow: none !important; backdrop-filter: none !important;
    }
    .menu.active .nav-item .dropdown a { 
    position: relative; 
    font-size: 14px; 
    padding: 12px 0 !important; 
    color: #888 !important; 
    border-bottom: 1px solid #111; 
    text-align: center !important; 
    margin: 0 auto !important; 
    width: 100% !important; 
    pointer-events: auto !important;   /* ✅ FIX */
}
    
    [class*="grid"], .home-cards, .grid-3, .card-grid { grid-template-columns: 1fr !important; display: grid !important; gap: 16px !important; padding: 0 20px !important; }

    .product-sticky-bar .container { justify-content: center !important; }
    .product-tag { justify-content: center !important; margin: 0 auto !important; }

    h1, h2, h3, p, .section h2, .section-intro, .section p, .home-main p, .company-hero p, .card h3, .card p { 
        text-align: center !important; padding-left: 20px !important; padding-right: 20px !important; 
        margin-left: auto !important; margin-right: auto !important; width: 100% !important; display: block !important; 
        box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: normal; !important; hyphens: none !important;;
    }

    .cta, .cta.center { flex-direction: column !important; gap: 15px !important; margin-top: 30px !important; }
    .cta .btn { width: 100% !important; max-width: 280px !important; margin: 0 auto !important; }

    .btn, .button, button, a.button { margin-left: auto !important; margin-right: auto !important; display: flex !important; justify-content: center !important; }

    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px; text-align: left !important; padding: 0 20px !important; }
    .footer-grid h3, .footer-grid a, .footer-grid p { text-align: left !important; padding: 0 !important; }
    
    .hero-main { font-size: 46px !important; }
    .hero-stack span { font-size: 36px !important; }
}


<style>

/* =========================================================
   GLOBAL HYPHENATION FIX — FINAL OVERRIDE (DO NOT REMOVE)
   Ensures NO "-" hyphen breaks across ANY page
   ========================================================= */

html, body, p, h1, h2, h3, h4, h5, h6, span, div {
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;

    word-break: normal !important;
    overflow-wrap: break-word !important;
}


    /* =========================
       2. FIX TEXT DRIFT (VERY IMPORTANT)
       ========================= */

    /* =========================
       3. FIX CARDS ALIGNMENT
       ========================= */

    .card, .node, .sub-node, .step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;

        margin-left: auto !important;
        margin-right: auto !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    /* =========================
       4. FIX GRID SPACING (COMMON DRIFT CAUSE)
       ========================= */

    .home-cards, .grid-3, .card-grid {
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* =========================
       5. HERO TEXT SIZE — MATCH HOMEPAGE
       ========================= */

    .hero-main {
        font-size: 48px !important;   /* same as homepage */
        line-height: 1.1 !important;
        text-align: center !important;
    }

    /* =========================
       6. FIX PRODUCT HERO (STRATA / DEALOS / PACTUM)
       ========================= */

    .product-hero h1,
    .page-header h1 {
        font-size: 48px !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    .product-hero p,
    .page-header p {
        text-align: center !important;
        max-width: 90% !important;
    }

    /* =========================
       7. CTA BUTTON CENTER FIX
       ========================= */

    .cta, .cta.center {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .btn, button, .button {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* =========================================================
   MOBILE HERO ALIGNMENT (ALL PAGES MATCH HOMEPAGE)
   + HAMBURGER MENU FONT IMPROVEMENT
   ========================================================= */

@media (max-width: 768px) {

    /* =========================
       1. HERO TEXT CONSISTENCY (ALL PAGES)
       ========================= */

    /* Covers: Homepage, Solutions, EPC, Education, Company */
    .hero-main,
    .hero h1,
    .company-hero h1,
    .product-hero h1,
    .page-header h1 {

        font-size: 46px !important;
        line-height: 1.1 !important;
        text-align: center !important;
        letter-spacing: -0.02em !important;
    }

    /* Subtext under hero */
    .hero p,
    .company-hero p,
    .product-hero p,
    .page-header p {

        font-size: 18px !important;
        text-align: center !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* =========================
       2. HAMBURGER MENU FONT SIZE FIX
       ========================= */

    .menu.active > a,
    .menu.active .nav-item > a {

        font-size: 18px !important;   /* increased from 16px */
        font-weight: 500 !important;
        letter-spacing: 0.3px;
    }

    /* Dropdown items inside mobile menu */
    .menu.active .nav-item .dropdown a {

        font-size: 16px !important;   /* slightly bigger */
        color: #aaaaaa !important;
    }

}

/* =========================================================
   RESPONSIVE TEXT FIX — PREVENT BROKEN WORDS (PIXEL ISSUE)
   ========================================================= */

html, body, p, h1, h2, h3, h4, h5, h6, span {
    word-break: normal !important;
    overflow-wrap: normal !important;   /* ✅ FIX */
}


/* ============================================ BINOO ========================================================= */

/* =========================================================
   🔥 FINAL MOBILE FIX — HERO CENTER + FULL WIDTH CLIENTS
   (DROP THIS AT VERY END — AFTER BINOO)
   ========================================================= */

@media (max-width: 768px) {

    /* ========================================
       1. HERO — FORCE CENTER ALIGN (ALL TEXT)
       ======================================== */

    #hero {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-content {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .hero-title,
    .hero-main,
    .hero-stack,
    .hero-stack span,
    #hero p,
    .hero-trust {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-stack {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }


    /* ========================================
       2. CLIENTS + PARTNERS — FULL WIDTH STRIP
       ======================================== */


    /* ENSURE LOGOS USE FULL WIDTH */
    .clients-marquee-wrap {
        width: 100% !important;
    }

    .clients-marquee {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }


    /* ========================================
       3. CLIENTS ↔ PARTNERS SPACING
       ======================================== */

    .home-clients h2 {
        margin-bottom: 20px !important;
    }

    .partners-heading {
        margin-top: 40px !important;
    }

}


@media (max-width: 768px) {

    .section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

}

    .home-main {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 6px;
    }

    .footer-copy {
        display: block !important;
        font-size: 12px !important;
        color: #ccc !important;
    }

    .footer-legal {
    display: flex;
    flex-wrap: nowrap;   /* 🔥 KEY FIX */
    justify-content: center;
    align-items: center;
    gap: 6px;
}

    .footer-legal a {
    margin: 0 6px !important;
    display: inline-block;
    font-size: 9px !important;
    white-space: nowrap !important;   /* 🔥 THIS FIXES IT */
}

}

/* =========================================
   FIX HERO TEXT BREAKING
========================================= */

.hero-main,
.hero-stack span {
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}

.hero-content {
    max-width: 90% !important;
    margin: 0 auto !important;
}

.hero-content {
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

@media (max-width: 768px) {

    .hero-main {
        font-size: clamp(42px, 8vw, 56px) !important;
        line-height: 1.1 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .hero-stack span {
        font-size: clamp(30px, 5.5vw, 42px) !important;
    }

}

@media (max-width: 768px) {

    .hero-stack {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-main {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-stack span {
        display: inline-block !important;
        text-align: center !important;
        width: auto !important;
    }

}

/* =========================================================
   CLIENT / PARTNER — LIGHT FULL-WIDTH STRIP (FINAL)
   ========================================================= */

/* ================= CONTENT ALIGNMENT ================= */

/* keep inner content nicely centered */
.home-clients .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 20px;
}

/* ================= HEADERS ================= */

.home-clients h2 {
    font-size: 20px !important;
    font-weight: 600;
    text-align: center !important;
    margin-bottom: 12px;
    color: #111 !important;
}

/* center underline */
.home-clients h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ================= LOGOS ================= */

.home-clients img {
    opacity: 1 !important;
    filter: none !important;
    height: 28px;
}

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

@media (max-width: 768px) {


    .home-clients h2 {
        font-size: 16px !important;
    }

    .home-clients img {
        height: 22px;
    }

}

/* =========================================================
   FINAL FIX — CLIENT / PARTNER SECTION (DO NOT TOUCH ABOVE)
   ========================================================= */

/* 🔥 FULL WIDTH WHITE STRIP */
.home-clients {
    background: #f5f5f7 !important;

    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding: 30px 0 !important;
}

/* 🔥 REMOVE INNER BOXING COMPLETELY */
.home-clients .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 20px !important;
}

/* 🔥 FORCE TRUE CENTER ALIGNMENT */
.home-clients h2 {
    width: 100% !important;
    text-align: center !important;

    font-size: 18px !important;
    font-weight: 600;

    margin: 10px 0 !important;
    color: #111 !important;
}

/* center the green underline properly */
.home-clients h2::after {
    display: block;
    margin: 6px auto 0 auto !important;
}

/* 🔥 LOGOS CLEAN VISIBILITY */
.home-clients img {
    display: inline-block;
    opacity: 1 !important;
    filter: none !important;
}

/* 🔥 MAKE ROWS CENTERED (IMPORTANT) */
.clients-marquee,
.marquee-track {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
}

/* =========================================
   FINAL CLEAN CLIENT / PARTNER FIX
========================================= */

.home-clients {
    background: #f5f5f7;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 30px 0;
}

.home-clients .container {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}

.home-clients h2 {
    text-align: center;
    width: 100%;
    font-size: 18px;
    margin: 10px 0;
    color: #111;
}

.home-clients h2::after {
    margin: 6px auto 0 auto;
}

.clients-marquee {
    display: flex;
    align-items: center;
    gap: 50px;
}

.home-clients img {
    opacity: 1;
    filter: none;
    height: 28px;
}

.clients-marquee img,
.partners-marquee img {
    margin: 0 30px;
}

.partners-heading {
    margin-top: 80px;  /* was 60 */
}

.home-clients {
    padding: 60px 20px !important;
}

.home-clients img {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.home-clients img:hover {
    opacity: 1;
}

/* =========================================
   FOOTER FINAL FIX — DESKTOP (CLEAN)
========================================= */

/* FORCE LEFT ALIGN ONLY INSIDE FOOTER */
.footer-grid,
.footer-column,
.footer-column h4,
.footer-column p,
.footer-column a {
    text-align: left !important;
}

/* REDUCE FOOTER FONT SIZE */
.footer-column a,
.footer-column p {
    font-size: 11px !important;   /* reduced by ~3px */
}

/* HEADINGS SLIGHTLY SMALLER */
.footer-column h4 {
    font-size: 13px !important;
}

/* FIX LEGAL ROW (NO STACKING) */
.footer-legal {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    font-size: 10px !important;
    white-space: nowrap !important;
}

/* KEEP PIPE INLINE */
.footer-legal span {
    display: inline-block;
    margin: 0 4px;
}

.lab-trigger {
    display: block;
    text-align: center;
    font-size: 12px;
    margin: 60px auto 30px auto;   /* 🔥 reduced bottom gap */
    padding: 0 24px;
    line-height: 1.6;
    max-width: 85%;
}

.lab-trigger.active-glow {
    color: #10b981 !important;
    text-shadow:
        0 0 8px rgba(16,185,129,0.9),
        0 0 18px rgba(16,185,129,0.8),
        0 0 30px rgba(16,185,129,0.6);
}

.footer {
    margin-top: 0 !important;
}

/* ===== LAB TEXT CONTROL ===== */

/* hide mobile by default */
.lab-mobile {
    display: none;
}

/* desktop style */
.lab-desktop {
    font-family: monospace;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lab-desktop:hover {
    color: #39ff14;
    text-shadow: 0 0 8px #39ff14;
}

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

    .lab-desktop {
        display: none !important;
    }

    .lab-mobile {
        display: block;
        text-align: center;
        font-family: monospace;
        font-size: 11px;
        color: #777;
        padding: 0 20px;

        animation: labGlowPulse 2.5s ease-in-out infinite;
    }

    @keyframes labGlowPulse {
        0%, 100% {
            color: #777;
            text-shadow: none;
        }
        50% {
            color: #39ff14;
            text-shadow:
                0 0 8px #39ff14,
                0 0 18px #39ff14,
                0 0 30px #39ff14;
        }
    }
}


.hero-overlay {
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.75) 40%,
            rgba(0,0,0,0.6) 70%,
            rgba(0,0,0,0.4) 100%
        ),
        linear-gradient(90deg,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.75) 30%,
            rgba(0,0,0,0.45) 55%,
            rgba(0,0,0,0.15) 80%,
            transparent 100%
        );
}

#hero {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {

    .footer {
        padding: 10px 12px !important;
    }

    .footer-bottom {
        padding-top: 6px !important;
        margin-top: 6px !important;
        border-top: 1px solid #1a1a1a;
    }

    .footer-copy {
        font-size: 11px !important;
        margin-bottom: 4px;
    }

    .footer-legal a {
        font-size: 9px !important;
    }

    .product-sticky-bar {
    top: 80px !important;
    padding: 10px 16px !important;
    margin-top: 0 !important;
}

}

/* ================= ACTIVE NAV STATE ================= */

.menu a.active::after,
.nav-item > a.active::after {
    width: 100% !important;
}

.menu a.active,
.nav-item > a.active {
    color: #ffffff !important;
}