/* ============================================================
   QJ Consulting — Landing page enhancements
   Layered ON TOP of style.css. Keeps theme colors / images.
   ============================================================ */

:root{
    --sec-pad-y: 64px;      /* uniform vertical rhythm (desktop) */
    --gap-lg: 32px;
    --gap-md: 20px;
    --gap-sm: 12px;
    --ease: cubic-bezier(.22,.61,.36,1);
    --shadow-soft: 0 10px 30px -12px rgba(20,33,59,.18);
    --shadow-lift: 0 22px 48px -18px rgba(20,33,59,.28);
}
html, body{ background: #ffffff; }

/* ---------- 1. UNIFORM SECTION RHYTHM ---------------------- */
/* Every section gets the SAME vertical padding so the page
   reads as one consistent, minimal grid. */
section.section{
    padding-top: var(--sec-pad-y);
    /* padding-bottom: var(--sec-pad-y); */
}
.hero-section{ padding-top: 0; }            /* hero hugs the nav */
/* section.section.py-32{                       
    padding-top: var(--sec-pad-y);
    padding-bottom: var(--sec-pad-y);
} */
/* collapse doubled padding where two cream sections meet */
section.section + section.section{ margin-top: 0; }

/* Tighten the oversized 64px gaps to a single calm scale */
.about-section-container.gap-32,
.contact-container.gap-32{ gap: var(--gap-lg); }

/* ---------- 2. SCROLL REVEAL ------------------------------- */
[data-reveal]{
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].is-in{
    opacity: 1;
    transform: none;
}
/* safety: forces visibility in offscreen/throttled contexts where the
   transition clock is frozen (preview iframes). No-op in real browsers. */
[data-reveal].reveal-snap{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
[data-reveal-delay="1"]{ transition-delay:.08s; }
[data-reveal-delay="2"]{ transition-delay:.16s; }
[data-reveal-delay="3"]{ transition-delay:.24s; }
[data-reveal-delay="4"]{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){
    [data-reveal]{ opacity:1 !important; transform:none !important; }
}

/* soft pop on the tag-arrow eyebrow */
.flex.align-center.gap-8 > img[alt="Tag Icon"]{
    transition: transform .4s var(--ease);
}
section:hover .flex.align-center.gap-8 > img[alt="Tag Icon"]{
    transform: translateX(3px);
}

/* ---------- 3. ENTERPRISE SOLUTION CARDS ------------------- */
/* distinct icon tiles + smoother hover */
.card-2{
    transition: flex .35s var(--ease), background-color .35s var(--ease),
                box-shadow .35s var(--ease), transform .35s var(--ease);
}
.card-2:hover{ box-shadow: var(--shadow-soft); }
.solution-icon{
    width: 72px; height: 72px;
    display:flex; align-items:center; justify-content:center;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(253,141,0,.25);
    box-shadow: 0 8px 20px -10px rgba(253,141,0,.5);
    transition: transform .4s var(--ease), background .35s var(--ease);
}
.card-2 .solution-icon svg,
.service-card-side .solution-icon svg{ width: 38px; height: 38px; display:block; }
.card-2 .solution-icon svg *,
.service-card-side .solution-icon svg *{ stroke: var(--theme-color-2); }
.card-2.card-2-active .solution-icon{
    background: var(--theme-color-2);
    transform: translateY(-2px);
}
.card-2.card-2-active .solution-icon svg *{ stroke:#fff; }
.card-2:hover .solution-icon,
.service-card-side:hover .solution-icon{ transform: translateY(-4px) rotate(-3deg); }

/* arrow button micro-interaction */
.arrow-001{ transition: background .25s var(--ease), transform .25s var(--ease); }
.card-2:hover .arrow-001{ transform: translateX(4px); }

/* ---------- 4. STAT / ANALYTICS BAR ------------------------ */
.stats-bar{
    gap: var(--gap-md) !important;
    padding: 40px 48px !important;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.stat-item{
    flex: 1 1 200px;
    min-width: 0;
    transition: transform .35s var(--ease);
}
.stat-item:hover{ transform: translateY(-4px); }
.stat-num{
    font-variant-numeric: tabular-nums;
    letter-spacing: -.5px;
}
.stat-item img{ flex: 0 0 auto; }
@media (max-width: 1100px){
    .stat-item{ flex: 1 1 42%; }
}
@media (max-width: 768px){
    .stats-bar{ padding: 28px 20px !important; }
    .stat-item{ flex: 1 1 42%; }
}
@media (max-width: 480px){
    .stat-item{ flex: 1 1 100%; max-width: 280px; }
}

/* ---------- 5. CLIENTS MARQUEE ----------------------------- */
.clients-section{ padding-top: var(--sec-pad-y); /* padding-bottom: var(--sec-pad-y); */ }
.clients-head{ gap: 8px; }
.marquee{
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 8px 10px;
    animation: marquee-rtl 40s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee-rtl{
    from{ transform: translateX(0); }
    to  { transform: translateX(-50%); }   /* track is duplicated x2 */
}
.client-card{
    flex: 0 0 auto;
    width: 160px; height: 104px;
    display: flex; align-items: center; justify-content: center;
    gap: 20px;
    padding: 0 10px;
    /* background: #fff; */
    /* border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 6px 18px -12px rgba(20,33,59,.25); */
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
                border-color .3s var(--ease);
    cursor: pointer;
    text-decoration: none;
    filter: grayscale(100%);
}
.client-card:hover{
    filter: grayscale(0%);
    transform: translateY(-6px);
    border-radius: 14px;
    box-shadow: 0 6px 18px -12px rgba(20,33,59,.25);
}
.client-logo-img{
    max-width: 140px; max-height: 80px;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.65;
    transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.client-card:hover .client-logo-img{
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 768px){
    .clients-head{
        flex-direction: column;
        align-items: flex-start;
    }
    .clients-head .marquee{
        width: 100vw;
        margin-left: -16px;
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
                mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    }
    .client-card{ width: 168px; height: 92px; padding: 0 16px; }
    .marquee-track{ gap: 14px; animation-duration: 26s; }
}

/* ---------- 6. CORE DOMAIN CARDS + SCROLL-DRIVEN CAROUSEL -- */
.card-3{ box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card-3 > img{ transition: transform .5s var(--ease); }
.card-3:hover > img{ transform: scale(1.03); }

/* scroll driver gives the sticky section its scroll runway (4 × 100vh ÷ 3 cards ≈ 1 screen per card) */
.card-3-scroll-driver{ height: 400vh; }

/* section pins below the nav while user scrolls through the driver */
.card-3-sticky{
    position: sticky;
    top: 72px;          /* height of the sticky nav */
}

/* carousel viewport clips the off-screen cards */
.card-3-carousel{
    overflow: hidden;
    position: relative;
    transition: height 0.75s cubic-bezier(0.22,0.61,0.36,1);
}
.card-3-carousel.no-transition{ transition: none !important; }

.card-3-track{ will-change: transform; }

/* progress dots */
.card-3-progress-dots{ margin-top: 24px; }
.cd-dot{
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    transition: width 0.4s cubic-bezier(0.22,0.61,0.36,1),
                background 0.4s cubic-bezier(0.22,0.61,0.36,1),
                border-radius 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
.cd-dot.cd-dot-active{
    background: #fd8d00;
    width: 28px;
    border-radius: 4px;
}

/* small, consistent gap between a heading and the paragraph that follows it */
h2 + p, h3 + p{ margin-top: 6px; }

/* soften the harsh pure-black table shadow from the base stylesheet */
.comparison-table-wrapper{
    box-shadow: 0 18px 44px -20px rgba(20,33,59,.35) !important;
    animation: none !important;   /* drop the distracting glow loop */
}

/* ---------- 7. IMAGE FALLBACK PLACEHOLDER ------------------ */
/* When a real ./res/ asset is missing (preview only), JS adds
   .img-fallback — themed striped placeholder w/ a label. */
.img-fallback{
    background-color: #14213b;
    background-image:
        repeating-linear-gradient(45deg,
            rgba(255,255,255,.04) 0 12px,
            rgba(255,255,255,0) 12px 24px),
        linear-gradient(135deg, #1b2c4d, #14213b);
    color: #ffd9b0;
    display: flex; align-items: center; justify-content: center;
    font-family: "Lexend", ui-monospace, monospace;
    font-size: 12px; letter-spacing: .5px; text-align: center;
    padding: 8px; line-height: 1.4;
    border-radius: inherit;
}
/* .products-showcase-container{ */
    /* fallback gradient sits behind the real bg image */
    /* background-color: #14213b;
    background-image:
        linear-gradient(135deg, rgba(20,33,59,.78), rgba(20,33,59,.55)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 14px, rgba(255,255,255,0) 14px 28px); */
/* } */
/* product logo tiles get a readable backdrop on the dark hero */
.product-logo-item{ backdrop-filter: blur(6px); }

/* ---------- 8. BUTTON / LINK POLISH ------------------------ */
.button-2 svg{ transition: transform .25s var(--ease); }
.button-2:hover svg{ transform: translateX(4px); }
.button-3{ transition: all .2s var(--ease); }

/* ---------- 9. MOCK NAV + FOOTER (preview only) ------------ */
.mock-nav{
    position: sticky; top: 0; z-index: 20;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; padding: 0 max(16px, calc((100vw - 1440px)/2 + 16px));
    background: #fff;
    box-shadow: 0 1px 0 rgba(20,33,59,.08), 0 6px 18px -14px rgba(20,33,59,.3);
}
.mock-nav .brand{ display:flex; align-items:center; gap:10px; font-family:"Lexend",sans-serif; }
.mock-nav .brand .logo{
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--theme-color-2); color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:18px;
}
.mock-nav .brand b{ font-size: 20px; color: var(--theme-color-3); font-weight: 700; }
.mock-nav .brand span{ color: var(--theme-color-2); }
.mock-nav nav{ display:flex; gap: 28px; }
.mock-nav nav a{ font-family:"Lexend",sans-serif; font-size:15px; color:var(--theme-color-3); font-weight:500; position:relative; }
.mock-nav nav a::after{ content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px; background:var(--theme-color-2); transition:right .25s var(--ease); }
.mock-nav nav a:hover::after{ right:0; }
.mock-nav .cta{ background:var(--theme-color-2); color:#fff; padding:10px 20px; border-radius:8px; font-family:"Lexend",sans-serif; font-weight:500; font-size:15px; transition:all .2s var(--ease); }
.mock-nav .cta:hover{ background:var(--theme-color-3); }
@media (max-width: 1024px){ .mock-nav nav{ display:none; } }

.mock-footer{
    background: var(--theme-color-3);
    padding: 48px max(16px, calc((100vw - 1440px)/2 + 16px));
    margin-top: 0;
    display:flex; flex-wrap:wrap; gap:32px; justify-content:space-between; align-items:center;
}
.mock-footer *{ color:#dfe4ee; }
.mock-footer .brand{ display:flex; align-items:center; gap:10px; }
.mock-footer .brand .logo{ width:34px; height:34px; border-radius:8px; background:var(--theme-color-2); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-family:"Lexend",sans-serif; }
.mock-footer .brand b{ color:#fff; font-size:18px; font-family:"Lexend",sans-serif; }
.mock-footer small{ color:#9aa6bd; font-size:13px; }

/* ---------- 10. MOBILE RHYTHM ------------------------------ */
@media (max-width: 768px){
    :root{ --sec-pad-y: 40px; --gap-lg: 24px; }
    /* section.section, section.section.py-32{
        padding-top: var(--sec-pad-y);
        padding-bottom: var(--sec-pad-y);
    } */
    .font-48{ font-size: 30px; }
    .font-36{ font-size: 26px; }
}
@media (max-width: 480px){
    :root{ --sec-pad-y: 32px; }
}

/* ========== 11. WHEN QJ — HUB ORBIT ========== */

.wqj-tagline {
    font-size: 17px;
    color: #666;
    line-height: 1.65;
    max-width: 640px;
    margin-top: 4px;
}

/* ---- Orbit container (desktop: 800×700, hub at 400,350) ---- */
.wqj-orbit {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 700px;
    margin: 0 auto;
}

/* ---- SVG spokes ---- */
.wqj-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wqj-spoke {
    stroke: rgba(253,141,0,0.22);
    stroke-width: 1.5;
    stroke-dasharray: 5 5;
    transition: stroke 0.35s var(--ease),
                stroke-width 0.35s var(--ease),
                stroke-dasharray 0.35s var(--ease);
}

.wqj-spoke.wqj-spoke-active {
    stroke: #fd8d00;
    stroke-width: 2.5;
    stroke-dasharray: none;
}

/* ---- QJ Hub (logo on white circle) ---- */
.wqj-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wqj-hub-pulse {
    position: absolute;
    width: 166px;
    height: 166px;
    border-radius: 50%;
    border: 2px solid rgba(253,141,0,0.38);
    animation: wqjHubPulse 3.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wqjHubPulse {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.18); opacity: 0;   }
}

/* White hub with orange border so the logo renders cleanly */
.wqj-hub-outer {
    width: 142px;
    height: 142px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #fd8d00;
    box-shadow:
        0 0 0 8px rgba(253,141,0,0.1),
        0 20px 52px -16px rgba(253,141,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.4s var(--ease);
}

.wqj-orbit:hover .wqj-hub-outer {
    box-shadow:
        0 0 0 16px rgba(253,141,0,0.12),
        0 26px 60px -16px rgba(253,141,0,0.55);
}

.wqj-hub-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

/* ---- Float animation ---- */
@keyframes wqjFloat {
    0%, 100% { transform: translateY(0px);   }
    50%       { transform: translateY(-11px); }
}

/* ---- Orbit cards ---- */
.wqj-card {
    position: absolute;
    width: 185px;
    background: #ffffff;
    border: 1.5px solid rgba(20,33,59,0.1);
    border-radius: 14px;
    padding: 14px 16px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* Multi-layer shadow for depth */
    box-shadow:
        0 2px 8px -4px rgba(20,33,59,0.1),
        0 8px 24px -10px rgba(20,33,59,0.16);
    /* Float is on transform; hover changes border+shadow only — no conflict */
    animation: wqjFloat 5s ease-in-out infinite;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    will-change: transform;
    cursor: default;
}

/* Hover: pause the float and highlight — no transform override needed */
.wqj-card:hover {
    animation-play-state: paused;
    border-color: #fd8d00;
    box-shadow:
        0 0 0 4px rgba(253,141,0,0.1),
        0 16px 44px -10px rgba(253,141,0,0.32);
}

/* Staggered float delays — each card out of phase with neighbours */
.wqj-c1 { left: 307px; top:  30px; animation-delay: 0s;     }
.wqj-c2 { left: 527px; top: 155px; animation-delay: 0.85s;  }
.wqj-c3 { left: 527px; top: 405px; animation-delay: 1.7s;   }
.wqj-c4 { left: 307px; top: 530px; animation-delay: 2.55s;  }
.wqj-c5 { left:  88px; top: 405px; animation-delay: 3.4s;   }
.wqj-c6 { left:  88px; top: 155px; animation-delay: 4.25s;  }

.wqj-card-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(253,141,0,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s var(--ease);
}

.wqj-card:hover .wqj-card-icon { background: rgba(253,141,0,0.18); }

.wqj-card-icon svg { width: 18px; height: 18px; display: block; }
.wqj-card-icon svg * { stroke: #fd8d00; }

.wqj-card-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.wqj-card-when {
    font-family: "Lexend", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #999;
    line-height: 1.4;
}

.wqj-card-solution {
    font-family: "Lexend", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #14213b;
    line-height: 1.35;
}

/* ---- S.T.O.P note ---- */
.wqj-stop-note { max-width: 800px; margin: -8px auto 0; }

.wqj-stop-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fdf2e4;
    border-left: 4px solid #fd8d00;
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
}

.wqj-stop-pill {
    flex: 0 0 auto;
    font-family: "Lexend", sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #fd8d00;
    background: rgba(253,141,0,0.1);
    border: 1.5px solid rgba(253,141,0,0.28);
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
}

.wqj-stop-text {
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   MOBILE — below 860px
   Redesigned: vertical "When → Solution" strips.
   Hub hidden (redundant — section header already has QJ branding).
   Each strip clearly communicates: problem → QJ answer.
   ============================================================ */
@media (max-width: 860px) {

    /* Orbit: vertical stacked list */
    .wqj-orbit {
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    /* Hide SVG spokes and the orbit hub circle */
    .wqj-svg { display: none; }
    .wqj-hub  { display: none; }

    /* Cards: full-width horizontal strips, icon left / meta right */
    .wqj-card {
        position: static;
        width: 100%;
        animation: none;
        transform: none;
        border-radius: 12px;
        padding: 14px 16px;
        gap: 14px;
        align-items: center;
    }

    /* Reset all absolute positions */
    .wqj-c1, .wqj-c2, .wqj-c3,
    .wqj-c4, .wqj-c5, .wqj-c6 {
        left: auto;
        top: auto;
        animation-delay: 0s;
    }

    /* Meta: vertical column — problem on top, solution below */
    .wqj-card-meta {
        flex: 1;
        flex-direction: column;
        gap: 4px;
    }

    /* Problem row: small, muted, prefixed with "WHEN" label */
    .wqj-card-when {
        font-size: 11.5px;
        color: #888;
        line-height: 1.4;
    }

    .wqj-card-when::before {
        content: "WHEN\00a0\00a0";
        color: #ccc;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }

    /* Solution row: larger, navy, orange "→" prefix makes the QJ answer obvious */
    .wqj-card-solution {
        font-size: 14px;
        font-weight: 700;
        color: #14213b;
        line-height: 1.35;
    }

    .wqj-card-solution::before {
        content: "→\00a0";
        color: #fd8d00;
        font-weight: 900;
    }

    /* Touch hover */
    .wqj-card:hover {
        animation-play-state: running;
        border-color: #fd8d00;
    }
}

/* Very small screens: stack S.T.O.P inner content */
@media (max-width: 460px) {
    .wqj-stop-inner { flex-direction: column; gap: 10px; }
}

/* ========== 12. GLASSMORPHISM FOOTER ========== */
.footer-glass-section{
    padding-top: 0 !important;
    margin-top: 0;
}

.footer-glass-wrap{
    position: relative;
    background:
        linear-gradient(135deg, #080f1e 0%, #0d1729 30%, #14213b 60%, #0c1525 100%);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

/* ambient orange glow orbs */
.footer-glass-wrap::before{
    content: '';
    position: absolute;
    top: -80px; right: 12%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(253,141,0,.13) 0%, transparent 68%);
    pointer-events: none;
}
.footer-glass-wrap::after{
    content: '';
    position: absolute;
    bottom: -60px; left: 8%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(253,141,0,.08) 0%, transparent 68%);
    pointer-events: none;
}

/* orange accent bar at the very top */
.footer-glass-topbar{
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(253,141,0,.3) 15%,
        #fd8d00 40%,
        #fd8d00 60%,
        rgba(253,141,0,.3) 85%,
        transparent 100%);
}

/* grid layout */
.footer-glass-inner{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 52px;
    padding-bottom: 52px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* glass card base */
.footer-glass-card{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 24px;
    transition: background .3s ease, border-top-color .3s ease, transform .3s ease,
                box-shadow .3s ease;
}
.footer-glass-card:hover{
    background: rgba(255,255,255,.07);
    border-top-color: rgba(253,141,0,.55);
    /* transform: translateY(-4px); */
    box-shadow: 0 16px 40px -16px rgba(253,141,0,.18);
}

/* brand card is wider */
.footer-glass-brand{
    flex: 1 1 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* link columns share remaining space */
.footer-glass-col{
    flex: 1 1 140px;
}

.footer-glass-tagline{
    color: #8fa3c0;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.footer-glass-heading{
    color: #fd8d00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-glass-links{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-glass-links a{
    color: #b0bfcf;
    font-size: 14px;
    line-height: 1.5;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
    word-break: break-word;
}
.footer-glass-links a:hover{
    color: #fd8d00;
    transform: translateX(5px);
}

/* social icons */
.footer-glass-socials{
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.social-icon-glass{
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
   /*  background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12); */
    border-radius: 50%;
    /* color: #ffffff; */
    transition: background .25s ease, border-color .25s ease,
                color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.social-icon-glass svg{
    color: white;
    width: 40px; height: 40px;
    display: block;
}
.social-icon-glass:hover{
    background: rgba(253,141,0,.18);
    border-color: rgba(253,141,0,.5);
    color: #fd8d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(253,141,0,.35);
}

/* bottom strip */
.footer-glass-bottom{
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
    text-align: center;
}
.footer-glass-bottom p{
    color: #4e5d70;
    font-size: 12px;
    letter-spacing: .4px;
}

/* responsive */
@media (max-width: 900px){
    .footer-glass-brand{ max-width: 100%; flex: 1 1 100%; }
    .footer-glass-col{ flex: 1 1 140px; }
    .footer-glass-inner{ gap: 16px; }
}
@media (max-width: 560px){
    .footer-glass-inner{ padding-top: 36px; padding-bottom: 36px; }
    .footer-glass-card{ padding: 22px 18px; }
    .footer-glass-col{ flex: 1 1 calc(50% - 8px); }
}
