:root {
    --lime: #ccff00;
    --dark: #080808;
    --light: #f4f4f4;

    --lime-light: #dcfa65;
    --lime-dark: #516100;
}

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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Lexend', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

::-webkit-scrollbar {
    width: 9px;
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--lime), var(--lime-dark));
    border-radius: 3px;
    /* border: 2px solid #050505; */
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    transition: all 0.3s ease;
    background: linear-gradient(180deg, var(--lime-light), var(--lime))
}

/* --- TACTILE LIQUID NAVIGATION --- */
.engineered-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100000005;
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.engineered-header>* {
    pointer-events: auto;
    /* Re-enable clicks on actual elements */
}

.engineered-header .logo img {
    height: 50px;
}

/* 1. SKEUOMORPHIC GLASS SHELL */
.liquid-capsule {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.4), rgba(10, 10, 10, 0.6));
    backdrop-filter: blur(13px) saturate(120%);
    -webkit-backdrop-filter: blur(13px) saturate(120%);
    border-radius: 50px;
    padding: 0.7rem;

    /* The Skeuomorphic Bevels & Depth */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 1px 2px 4px rgba(255, 255, 255, 0.15),
        /* Top inner highlight */
        inset -1px -2px 4px rgba(0, 0, 0, 0.8),
        /* Bottom inner shadow */
        0 15px 35px rgba(0, 0, 0, 0.4),
        /* Outer drop shadow */
        0 0 0 1px rgba(0, 0, 0, 0.5);
    /* Crisp outer edge */

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Contains the liquid */
}

/* 2. THE LIQUID GOOEY LAYER */
.gooey-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url('#liquid-goo');
    /* Applies the SVG filter */
    pointer-events: none;
    z-index: 1;
}

.liquid-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background: var(--lime);
    border-radius: 50px;
    opacity: 0;
    /* Hidden until hover */
    /* Box shadow helps the gooey filter blend better */
    box-shadow: 0 0 10px var(--lime);
}

/* 3. NAVIGATION TEXT */
.capsule-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    position: relative;
    z-index: 2;
    /* Sits above the liquid */
}

.cap-item {
    display: block;
    padding: 0.6rem 1.5rem;
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: color 0.3s ease;
    mix-blend-mode: exclusion;
    /* Makes text dark when lime liquid is behind it */
}

.cap-item:hover {
    color: var(--dark);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger-btn {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000002;
    pointer-events: auto;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 4. MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    z-index: 100000001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    pointer-events: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-body {
    flex: 1;
    padding: 6rem 1.5rem 2rem;
    /* Added top padding to clear the fixed header */
    overflow-y: auto;
}

.mobile-links {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.mobile-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-link {
    display: block;
    padding: 1.2rem 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mob-link:hover {
    color: var(--lime);
    transform: translateX(10px);
}

.mobile-cta-wrap {
    margin-bottom: 3.5rem;
}

.mobile-cta {
    width: 100%;
    max-width: 240px;
    justify-content: center;
    background: var(--lime);
    color: var(--dark) !important;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

.mobile-contact-section {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lime);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-text {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .liquid-capsule {
        display: none;
    }

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

    .hamburger-btn {
        display: flex;
    }

    .engineered-header {
        padding: 1rem 1.5rem;
        top: 3px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .engineered-header .logo img {
        height: 30px;
    }
}

/* --- HERO SECTION WRAPPER --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 99999;
    /* background: var(--dark); */
    display: flex;
    align-items: center;
}

/* --- TWO-COLUMN HERO GRID --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 6rem 5rem;
    position: relative;
    z-index: 10;
}

/* --- LEFT COLUMN: Conversion Funnel --- */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Tag Pill */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3vh;
    opacity: 0;
    transform: translateY(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(204, 255, 0, 0);
    }
}

h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 5.5vw, 7rem);
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lime);
    opacity: 0;
    letter-spacing: -3px;
    text-align: left;
}

h1 span {
    display: block;
}

.filled-text {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 0;
}

/* Hero Subtext */
.hero-subtext {
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 2.5vh 0;
    line-height: 1.7;
    letter-spacing: 0.3px;
    opacity: 0;
    text-align: left;
}

/* Hero CTA Buttons */
.cta-container-hero {
    margin-top: 2vh;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Bricolage Grotesque', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--lime);
    color: #000;
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.2);
    border: 1px solid var(--lime);
}

.primary-btn .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(204, 255, 0, 0.4);
}

.primary-btn:hover .arrow {
    transform: translateX(5px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* --- RIGHT COLUMN: Trust Engine --- */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    backdrop-filter: blur(7px);
    border-radius: 5px;
}

/* Editorial Stat Blocks */
.hero-stats-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-block {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
}

.stat-big {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    color: var(--lime);
    letter-spacing: -2px;
    line-height: 1;
    display: block;
    margin-bottom: 0.8rem;
}

.stat-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Closing Statement */
.hero-closing {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-closing p {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
}

.hero-closing strong {
    color: var(--lime);
    font-weight: 600;
}

/* Mini Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.trust-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.trust-logos span {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 7rem 1.5rem 3rem;
    }

    .hero-left {
        align-items: flex-start;
    }

    .hero-tag {
        font-size: 0.6rem;
        padding: 6px 14px;
        letter-spacing: 1.5px;
        margin-bottom: 2vh;
    }

    h1 {
        font-size: 12vw;
        letter-spacing: -1px;
    }

    .hero-subtext {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .cta-container-hero {
        gap: 0.8rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .metric-card {
        padding: 1rem 0.5rem;
    }

    .metric-value {
        font-size: 1.3rem;
    }

    .metric-label {
        font-size: 0.5rem;
    }

    .trust-logos {
        gap: 1rem;
    }

    .trust-logos span {
        font-size: 0.65rem;
    }
}

/* --- CANVAS CONTAINER --- */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    outline: none;
    pointer-events: none;
}

/* --- PRELOADER --- */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--lime);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* --- TRUSTED CLIENTS SECTION --- */
.section-clients {
    position: relative;
    z-index: 10;
    padding: 4rem 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.5);
    /* Semi-transparent */
    backdrop-filter: blur(5px);

}

.clients-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    /* 2 Columns: Intro + Vault */
    gap: 4rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* Column 1: Intro */
.clients-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
}

.clients-intro h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.1;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lime);
    animation: pulse 2s infinite;
}

/* Column 2: The Vault (Marquee) */
.logo-vault {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* THE FADED SIDES MAGIC */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-row {
    display: flex;
    width: 100%;
    margin-bottom: 1.5rem;
    /* Gap between rows */
    overflow: hidden;
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    /* Spacing between logos */
    width: max-content;
}

.client-logo {
    height: 35px;
    /* Adjust based on logo files */
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%) brightness(200%);
    /* Premium monotone look */
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
}

/* ANIMATIONS (CSS Only - Performance Friendly) */
.scroll-left .marquee-track {
    animation: scrollL 30s linear infinite;
}

.scroll-right .marquee-track {
    animation: scrollR 30s linear infinite;
}

@keyframes scrollL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes track content is doubled */
}

@keyframes scrollR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-container {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 2rem;
    }

    .clients-intro {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
        padding-right: 0;
        justify-content: center;
    }

    .logo-vault {
        mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    }
}

/* --- TRUSTED CLIENTS SECTION --- */
.trusted-clients {
    position: relative;
    z-index: 10;
    padding: 6vh 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.clients-label {
    font-family: 'Lexend', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2.5rem;
}

/* The Faded Edges Magic */
.marquee-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* This creates the transparent fade on the left and right */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.marquee-track.reverse {
    animation: scroll-right 35s linear infinite;
}

/* Pause animation on hover for a premium interactive feel */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
    /* Must match the gap for a seamless loop */
}

/* Styling for Text Logos (Replace with actual SVGs later) */
.client-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    /* Dimmed look */
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.4s ease;
    cursor: default;
}

/* If you drop images in, ensure they blend well */
.client-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(30%);
    transition: all 0.4s ease;
}

.client-logo:hover,
.client-logo:hover img {
    color: var(--light);
    filter: grayscale(0%) opacity(100%);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Keyframes for seamless looping */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* Translates exactly half the track width (one group) */
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .marquee-group {
        gap: 3rem;
        padding-right: 3rem;
    }

    .client-logo {
        font-size: 1.5rem;
    }
}

/* --- SECTION: IDENTITY (Spotlight) --- */
.section-identity {
    position: relative;
    padding: 20vh 5vw;
    /* background-color: var(--dark); */
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(8, 8, 8, 0.55) 8%,
            rgba(8, 8, 8, 0.58) 50%,
            rgba(8, 8, 8, 0.55) 92%,
            transparent 100%);
    z-index: 10;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.identity-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Top Label */
.identity-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Lexend', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    opacity: 0;
    /* Animated */
}

.line-dash {
    width: 40px;
    height: 1px;
    background: var(--lime);
}

/* Typography */
.identity-headline h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 600;
    /* Lighter weight for modern feel */
    color: #fff;
    margin-bottom: 3rem;
    opacity: 0;
    /* Animated */
    transform: translateY(30px);
}

.highlight {
    color: var(--lime);
    font-weight: 800;
    /* Contrast weight */
    position: relative;
    display: inline-block;
}

/* Body Text */
.identity-body {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0;
    /* Animated via GSAP */
    transform: translateY(30px);
}

/* Text Invert Scroll Reveal */
.text-invert {
    background: linear-gradient(to right, #fff 50%, #333 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-white {
    color: #fff;
    font-weight: 400;
}

.identity-body strong {
    color: #fff;
    font-weight: 500;
}

/* Connector Line */
.identity-connector {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    opacity: 0;
}

.connector-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--lime), transparent);
}

/* --- SECTION 2: ENTROPY --- */
.section-entropy {
    position: relative;
    z-index: 5;
    padding: 0vh 5vw;
    min-height: 100vh;
}

.entropy-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
}

/* Left Side (Sticky) */
.entropy-header {
    width: 40%;
    position: sticky;
    top: 5vh;
}

.label-error {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', 'Courier New', monospace;
    color: #ff2a2a;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0;
    text-transform: uppercase;
    background: rgba(255, 42, 42, 0.08);
    padding: 8px 16px;
    border-radius: 4px;
    border-left: 2px solid #ff2a2a;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);

}

.error-pulse {
    width: 8px;
    height: 8px;
    background: #ff2a2a;
    border-radius: 50%;
    display: inline-block;
    animation: error-blink 1.5s ease-in-out infinite;
}

@keyframes error-blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.6);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 0 6px rgba(255, 42, 42, 0);
    }
}

.section-entropy h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 5vw;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

}

/* Premium Glitch & Decay Effect */
.glitch-text {
    position: relative;
    /* color: #ff2a2a; */
    /* Base red */
    display: inline-block;
    animation: decay-flicker 7s infinite alternate;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.8;
}

.glitch-text::before {
    left: 3px;
    text-shadow: -3px 0 #00ffff;
    clip-path: inset(45% 0 12% 0);
    animation: glitch-anim-1 8.5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -3px;
    text-shadow: 3px 0 #ff003c;
    clip-path: inset(15% 0 65% 0);
    animation: glitch-anim-2 7s infinite linear alternate-reverse;
}

@keyframes decay-flicker {

    0%,
    14%,
    16%,
    100% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
    }

    15% {
        opacity: 0.3;
        text-shadow: none;
    }

    70% {
        opacity: 0.9;
    }

    71% {
        opacity: 0.1;
    }

    72% {
        opacity: 1;
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(80% 0 10% 0);
        transform: translate(-2px, 1px);
    }

    10% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(2px, -1px);
    }

    20% {
        clip-path: inset(30% 0 20% 0);
        transform: translate(-1px, 2px);
        text-shadow: 3px 0 #00ffff;
    }

    30% {
        clip-path: inset(70% 0 10% 0);
        transform: translate(3px, -2px);
    }

    40% {
        clip-path: inset(20% 0 50% 0);
        transform: translate(-3px, 1px);
    }

    50% {
        clip-path: inset(60% 0 30% 0);
        transform: translate(1px, -3px);
    }

    60% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(-2px, 2px);
    }

    70% {
        clip-path: inset(40% 0 20% 0);
        transform: translate(2px, -1px);
        text-shadow: -3px 0 #00ffff;
    }

    80% {
        clip-path: inset(90% 0 5% 0);
        transform: translate(-1px, 1px);
    }

    90% {
        clip-path: inset(30% 0 40% 0);
        transform: translate(3px, -2px);
    }

    100% {
        clip-path: inset(50% 0 10% 0);
        transform: translate(-2px, 1px);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(2px, -1px);
    }

    10% {
        clip-path: inset(70% 0 10% 0);
        transform: translate(-2px, 1px);
    }

    20% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(1px, -2px);
    }

    30% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(-3px, 2px);
        text-shadow: -3px 0 #ff003c;
    }

    40% {
        clip-path: inset(90% 0 5% 0);
        transform: translate(3px, -1px);
    }

    50% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(-1px, 3px);
    }

    60% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(2px, -2px);
    }

    70% {
        clip-path: inset(10% 0 70% 0);
        transform: translate(-2px, 1px);
    }

    80% {
        clip-path: inset(40% 0 10% 0);
        transform: translate(1px, -1px);
        text-shadow: 3px 0 #ff003c;
    }

    90% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-3px, 2px);
    }

    100% {
        clip-path: inset(20% 0 40% 0);
        transform: translate(2px, -1px);
    }
}

.entropy-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #777;
    max-width: 420px;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

}

.entropy-cta {
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.entropy-btn {
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.15);
}

/* Right Side (Cards) */
.entropy-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
    transform: translateX(50px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* Liquid Edge Shadow */
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Liquid Blobs Background */
.glass-card::before,
.glass-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.glass-card::before {
    background: rgba(255, 42, 42, 0.15);
    top: -50px;
    left: -50px;
    animation: liquid-float-1 8s infinite alternate ease-in-out;
}

.glass-card::after {
    background: rgba(204, 255, 0, 0.1);
    bottom: -50px;
    right: -50px;
    animation: liquid-float-2 10s infinite alternate-reverse ease-in-out;
}

@keyframes liquid-float-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.2);
    }
}

@keyframes liquid-float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, -40px) scale(1.1);
    }
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Specular Shine effect */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    transform: translateX(-100%) skewX(-15deg);
}

/* Card Top Row */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-index {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.card-status-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.tag-critical {
    background: rgba(255, 42, 42, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 42, 42, 0.3);
}

.tag-danger {
    background: rgba(255, 85, 0, 0.15);
    color: #ff6b00;
    border: 1px solid rgba(255, 85, 0, 0.3);
}

.tag-warning {
    background: rgba(255, 200, 0, 0.12);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.25);
}

/* Active/Hover State */
.glass-card:hover,
.glass-card.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(0) scale(1.03);
    /* Subtle fluid bulge */
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.glass-card:hover::before,
.glass-card:hover::after,
.glass-card.active::before,
.glass-card.active::after {
    opacity: 1;
}

.glass-card:hover .card-glow,
.glass-card.active .card-glow {
    opacity: 1;
    /* transform: translateX(100%) skewX(-15deg); */
}

.glass-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

.glass-card p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Status Bars */
.status-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.status-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #ff2a2a;
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fill-danger {
    background: #ff5500;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
}

.fill-warning {
    background: #ffc800;
    box-shadow: 0 0 10px rgba(255, 200, 0, 0.4);
}

.bar-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 42, 42, 0.7);
    white-space: nowrap;
    font-family: 'Space Mono', 'Courier New', monospace;
}

.bar-danger {
    color: rgba(255, 85, 0, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .entropy-container {
        flex-direction: column;
    }

    .entropy-header {
        width: 100%;
        position: relative;
        top: auto;
        margin-bottom: 4rem;
    }

    .section-entropy {
        padding: 0vh 5vw;
    }

    .section-entropy h2 {
        font-size: 10vw;
    }

    .entropy-list {
        width: 100%;
        padding-top: 0;
    }

    .glass-card {
        transform: translateX(0);
        background: rgba(15, 15, 15, 0.4);
        /* Slightly darker/denser for contrast */
    }

    .section-identity {
        padding: 5vh 5vw;
    }
}

/* --- SECTION 3: SOLUTION (The Ignition Sequence) --- */
.section-solution {
    position: relative;
    z-index: 10;
    padding: 15vh 0;
}

.solution-backdrop {
    position: absolute;
    top: -10vh;
    left: 0;
    width: 100%;
    height: calc(100% + 20vh);
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(8, 8, 8, 0.55) 8%,
            rgba(8, 8, 8, 0.58) 50%,
            rgba(8, 8, 8, 0.55) 92%,
            transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.solution-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* Header */
.solution-header {
    text-align: center;
    margin-bottom: 10vh;
    opacity: 0;
    transform: translateY(40px);
}

.label-sys {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', 'Courier New', monospace;
    color: var(--lime);
    letter-spacing: 4px;
    font-size: 0.75rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    background: rgba(204, 255, 0, 0.06);
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid rgba(204, 255, 0, 0.15);
}

.sys-dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    display: inline-block;
    animation: sys-pulse 2s ease-in-out infinite;
}

@keyframes sys-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(204, 255, 0, 0);
    }
}

.solution-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 6vw;
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-accent {
    background: linear-gradient(135deg, var(--lime), #88ff44, var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-desc {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 3rem;
}

.solution-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), transparent);
    margin: 0 auto;
}

/* Process Flow */
.process-flow {
    position: relative;
    padding-left: 60px;
}

.process-line {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
}

.process-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--lime), rgba(204, 255, 0, 0.2));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(204, 255, 0, 0.3);
    transition: height 0.3s ease;
}

/* Process Step */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Step Marker (Left Column) */
.step-marker {
    position: absolute;
    left: -60px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.marker-ring {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: var(--dark);
    position: relative;
    transition: all 0.5s ease;
    z-index: 2;
}

.process-step.active .marker-ring {
    border-color: var(--lime);
    background: var(--lime);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.marker-num {
    font-family: 'Space Mono', 'Courier New', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    transition: color 0.5s ease;
}

.process-step.active .marker-num {
    color: var(--lime);
}

/* Step Card (Right Column) */
.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    border-radius: 12px;
    flex: 1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Background watermark number */
.step-card::after {
    content: attr(data-num);
    position: absolute;
    top: -15px;
    right: 15px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: color 0.5s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(204, 255, 0, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.process-step.active .step-card {
    border-color: rgba(204, 255, 0, 0.15);
    border-left-color: var(--lime);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: -4px 0 20px rgba(204, 255, 0, 0.08);
}

.process-step.active .step-card::before {
    opacity: 1;
}

.process-step.active .step-card::after {
    color: rgba(204, 255, 0, 0.05);
}

.step-card:hover {
    transform: translateX(8px) scale(1.01);
    border-color: rgba(204, 255, 0, 0.25);
    border-left-color: var(--lime);
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.06), -4px 0 25px rgba(204, 255, 0, 0.1);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(204, 255, 0, 0.06);
    border: 1px solid rgba(204, 255, 0, 0.1);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.step-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    color: #777;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.step-tag {
    display: inline-block;
    font-family: 'Space Mono', 'Courier New', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lime);
    background: rgba(204, 255, 0, 0.06);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(204, 255, 0, 0.12);
}

/* Bottom CTA */
.solution-cta {
    text-align: center;
    margin-top: 10vh;
    padding-top: 6vh;
    opacity: 0;
    transform: translateY(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-hook {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.solution-btn {
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.2);
    pointer-events: auto;
    transition: all 0.4s ease;
}

.solution-btn:hover {
    box-shadow: 0 0 60px rgba(204, 255, 0, 0.4), 0 0 100px rgba(204, 255, 0, 0.15);
    transform: translateY(-4px) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .solution-title {
        font-size: 12vw;
    }

    .process-flow {
        padding-left: 40px;
    }

    .step-marker {
        left: -40px;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .process-step {
        margin-bottom: 4rem;
    }

    .cta-hook {
        font-size: 1.3rem;
    }
}

/* --- SECTION: CTA REVEAL (Pinned Character Transition) --- */
.section-cta-reveal {
    position: relative;
    z-index: 10;
}

.cta-reveal-pin {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(8, 8, 8, 0.55) 8%,
            rgba(8, 8, 8, 0.58) 50%,
            rgba(8, 8, 8, 0.55) 92%,
            transparent 100%);
}

.cta-reveal-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 5vw;
}

.cta-line {
    display: block;
    margin-bottom: 0.3em;
    /* Text-invert reveal effect */
    background: linear-gradient(to right, #fff 50%, #333 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cta-line-accent {
    background: linear-gradient(to right, var(--lime) 50%, #333 50%);
    background-size: 200% 100%;
    background-position-x: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}

/* --- SECTION: SERVICES (Stacking Cards) --- */
.section-services {
    position: relative;
    z-index: 10;
    padding: 0;
}

.srv-header-float {
    position: sticky;
    top: 5vh;
    left: 0;
    z-index: 30;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    margin-bottom: -8vh;
}

.srv-label {
    font-family: 'Lexend', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.35);
}

.srv-counter {
    font-family: 'Lexend', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
}

.srv-counter-current {
    color: var(--lime);
    font-weight: 600;
}

.srv-stack {
    position: relative;
}

.srv-panel {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to right, transparent 0%, transparent 40%, var(--dark) 50%, var(--dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.srv-watermark {
    position: absolute;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    line-height: 1;
    right: 5vw;
    bottom: 5vh;
    pointer-events: none;
    user-select: none;
    transition: color 0.6s ease;
}

.srv-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push content to the right */
    gap: 0;
    width: 85%;
    max-width: 1400px;
    opacity: 0;
    transform: translateY(60px);
}

/* Container for text to sit on the right half */
.srv-text-wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.srv-icon-ring {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 20%, transparent);
}

.srv-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.srv-tag {
    font-family: 'Lexend', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    align-self: flex-start;
    backdrop-filter: blur(4px);
}

/* Visual Graphics Container */
.srv-visual {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 01: Performance Marketing (Bars) */
.graphic-pm {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.graphic-pm .bar {
    width: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
}

.graphic-pm .bar.h-30 {
    animation: bar-rise-1 2s ease-in-out infinite alternate;
}

.graphic-pm .bar.h-50 {
    animation: bar-rise-2 2.5s ease-in-out infinite alternate 0.2s;
}

.graphic-pm .bar.h-80 {
    animation: bar-rise-3 2.2s ease-in-out infinite alternate 0.4s;
}

.graphic-pm .bar.h-100 {
    background: var(--accent);
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent) 30%, transparent);
    animation: bar-rise-4 2.8s ease-in-out infinite alternate 0.6s;
}

@keyframes bar-rise-1 {
    0% {
        height: 20%;
    }

    100% {
        height: 40%;
    }
}

@keyframes bar-rise-2 {
    0% {
        height: 35%;
    }

    100% {
        height: 60%;
    }
}

@keyframes bar-rise-3 {
    0% {
        height: 50%;
    }

    100% {
        height: 85%;
    }
}

@keyframes bar-rise-4 {
    0% {
        height: 60%;
    }

    100% {
        height: 100%;
        box-shadow: 0 0 25px color-mix(in srgb, var(--accent) 50%, transparent);
    }
}

/* 02: Conversion Websites (UI Wireframe) */
.graphic-wd {
    width: 140px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: ui-float 4s ease-in-out infinite;
}

@keyframes ui-float {

    0%,
    100% {
        transform: translateY(0);
        border-color: rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: translateY(-8px);
        border-color: rgba(255, 255, 255, 0.25);
    }
}

.graphic-wd .ui-header {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 60%;
    animation: ui-pulse-width 3s ease-in-out infinite alternate;
}

@keyframes ui-pulse-width {
    0% {
        width: 60%;
    }

    100% {
        width: 85%;
    }
}

.graphic-wd .ui-grid {
    display: flex;
    gap: 8px;
    flex: 1;
}

.graphic-wd .ui-box {
    flex: 1;
    border-radius: 4px;
}

.graphic-wd .ui-box.block {
    background: rgba(255, 255, 255, 0.06);
}

.graphic-wd .ui-box.outline {
    border: 1px dashed var(--accent);
    animation: ui-box-pulse 2s ease-in-out infinite alternate;
}

@keyframes ui-box-pulse {
    0% {
        background: transparent;
        border-style: dashed;
    }

    100% {
        background: color-mix(in srgb, var(--accent) 15%, transparent);
        border-style: solid;
        box-shadow: inset 0 0 10px color-mix(in srgb, var(--accent) 20%, transparent);
    }
}

/* 03: Video Production (Film Reel) */
.graphic-vp {
    position: relative;
    width: 80px;
    height: 80px;
}

.graphic-vp .film-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
}

.graphic-vp .film-circle.outline {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: spin 8s linear infinite;
}

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

.graphic-vp .film-circle.solid {
    border: 2px solid var(--accent);
    transform: scale(0.8);
    opacity: 0.5;
    animation: pulse-ring 3s ease-in-out infinite alternate;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 0 transparent;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 40%, transparent);
    }
}

.graphic-vp .play-triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    animation: play-bounce 1.5s ease-in-out infinite alternate;
}

@keyframes play-bounce {
    0% {
        transform: translate(-45%, -50%) scale(0.9);
        border-left-color: #fff;
    }

    100% {
        transform: translate(-30%, -50%) scale(1.1);
        border-left-color: var(--accent);
    }
}

/* 04: Social Media (Redefined: Pulse Core & Orbiting Icons) */
.graphic-sm {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-sm .sm-core {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent) 50%, transparent);
    animation: sm-pulse 2s infinite alternate;
}

.graphic-sm .sm-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.graphic-sm .sm-ring.reverse {
    width: 100px;
    height: 100px;
    animation: spin-reverse 15s linear infinite;
}

.graphic-sm .sm-icon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--accent));
}

@keyframes sm-pulse {
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 30px var(--accent);
    }
}

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

/* 05: Ecom Incubation (Redefined: Glowing Shopping Bag) */
.graphic-ei {
    position: relative;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    border-radius: 6px 6px 2px 2px;
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    animation: ei-float 3s ease-in-out infinite alternate;
}

.graphic-ei::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 12px;
    border: 2px solid var(--accent);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

.graphic-ei .ei-check {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(45deg);
    animation: ei-pulse 2s infinite alternate;
}

@keyframes ei-float {
    100% {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px color-mix(in srgb, var(--accent) 30%, transparent);
    }
}

@keyframes ei-pulse {
    100% {
        filter: drop-shadow(0 0 8px #fff);
    }
}

/* 06: Content Creation (Layers) */
.graphic-cc {
    position: relative;
    width: 100px;
    height: 80px;
}

.graphic-cc .layer {
    position: absolute;
    left: 10px;
    width: 80px;
    height: 30px;
    border-radius: 4px;
}

.graphic-cc .layer.l-bottom {
    top: 30px;
    background: rgba(255, 255, 255, 0.05);
    transform: scale(0.85);
    z-index: 1;
    animation: layer-bot-move 3s ease-in-out infinite alternate;
}

.graphic-cc .layer.l-mid {
    top: 15px;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.92);
    z-index: 2;
    animation: layer-mid-move 3s ease-in-out infinite alternate 0.2s;
}

.graphic-cc .layer.l-top {
    top: 0px;
    background: color-mix(in srgb, var(--accent) 20%, transparent);
    border: 1px solid var(--accent);
    z-index: 3;
    animation: layer-top-move 3s ease-in-out infinite alternate 0.4s;
}

@keyframes layer-bot-move {
    100% {
        top: 40px;
        transform: scale(0.9);
    }
}

@keyframes layer-mid-move {
    100% {
        top: 20px;
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.15);
    }
}

@keyframes layer-top-move {
    100% {
        top: -5px;
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px color-mix(in srgb, var(--accent) 30%, transparent);
    }
}

.srv-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.srv-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.srv-cta-link:hover {
    color: var(--lime);
    border-bottom-color: var(--lime);
    gap: 20px;
}

.srv-cta-link span {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.srv-cta-link:hover span {
    transform: translateX(6px);
}

/* .srv-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent) 40%, transparent);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-panel.is-active .srv-line {
    width: 100%;
} */

.srv-panel.is-active .srv-watermark {
    color: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
    .srv-header-float {
        position: relative;
        top: auto;
        padding: 10vh 5vw 2rem;
        margin-bottom: 0;
    }

    .srv-panel {
        position: relative;
        height: auto;
        min-height: 100vh;
        padding: 5vh 5vw 10vh;
        background: linear-gradient(to bottom, transparent 0%, transparent 15%, var(--dark) 60%, var(--dark) 100%);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .srv-content {
        width: 100%;
        flex-direction: column;
        gap: 3rem;
        opacity: 1;
        transform: none;
    }

    .srv-desc {
        margin-bottom: 0.2rem;
        text-align: left;
    }

    .srv-text-wrap {
        flex: none;
        width: 100%;
        gap: 0.5rem;
        align-items: flex-start; /* Left-align flex items */
        text-align: left;        /* Left-align text */
        
        /* Legibility fixes for text over glowing 3D shape */
        /* background: rgba(10, 10, 10, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 1.5rem 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05); */
    }

    .srv-watermark {
        font-size: 40vw;
        top: 2vh;
        right: 2vw;
    }

    .srv-title {
        font-size: 2.5rem;
        text-align: left;
    }

    .srv-line {
        width: 100% !important;
    }

    .srv-tag {
        align-self: flex-start; /* Revert to left-aligned */
    }

    .srv-visual {
        justify-content: flex-start; /* Left-align graphics */
    }

    .srv-cta-link {
        align-self: flex-start; /* Ensure button is left-aligned */
        padding: 5px 0;
    }

    .srv-icon-ring {
        display: none;
    }
    .srv-tag {
        padding: 6px 10px;
        font-size: 0.5rem;
    }
}

/* --- SECTION: WORK SHOWCASE (Stacked Deck) --- */
.section-work-stacked {
    position: relative;
    padding: 10vh 5vw 15vh 5vw;
    /* background-color: var(--dark); */
    z-index: 10;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.work-header-sticky {
    margin-bottom: 5vh;
    text-align: center;
}

.work-header-sticky h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.9;
    color: #fff;
    font-weight: 800;
}

/* The Deck Wrapper */
.cards-wrapper {
    position: relative;
    margin-top: 5rem;
}

/* Individual Card Setup */
.project-card {
    position: sticky;
    top: 15vh;
    /* This is where the card stops and pins */
    padding-top: calc(var(--index) * 20px);
    /* Creates the stacked top edge visual */
    margin-bottom: 30px;
    transform-origin: top center;
}

.card-inner-flex {
    display: flex;
    background: linear-gradient(160deg, #111111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    min-height: 55vh;
    box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Left: Info */
.project-info {
    width: 45%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-tag {
    background: rgba(204, 255, 0, 0.1);
    color: #ccff00;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(204, 255, 0, 0.2);
}

.meta-year {
    color: #888;
}

.project-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.project-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Stats */
.project-stats {
    display: flex;
    gap: 3rem;
    margin-top: auto;
    /* Pushes to bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 1.2rem;
}

.stat-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: #ccff00;
    border-radius: 2px;
}

.stat-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right: Visual */
.project-visual {
    width: 55%;
    position: relative;
    overflow: hidden;
    background: #111;
}

.project-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-visual img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.work-cta-bottom {
    display: flex;
    justify-content: center;
    margin-top: 10vh;
}

/* MOBILE RESPONSIVE (The most important part) */
@media (max-width: 900px) {
    .project-card {
        top: 10vh;
        /* Adjust pin position for mobile nav */
    }

    .card-inner-flex {
        flex-direction: column;
        min-height: auto;
    }

    .project-visual {
        width: 100%;
        height: 35vh;
        order: -1;
        /* Puts image on top on mobile */
    }

    .project-info {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }

    .project-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-value {
        font-size: 2rem;
    }
    .section-work-stacked {
        padding: 2vh 2vw 5vh 2vw;
    }

    .work-header-sticky {
        margin-bottom: 2vh;
    }

    .cards-wrapper {
        margin-top: 1rem;
    }

    .project-card {
        top: 1vh;
        /* Bring cards closer to the sticky header on mobile */
    }
    .work-cta-bottom{
        margin-top: 5vh;
    }
}

/* --- SECTION: TESTIMONIALS (Infinite Marquee) --- */
.section-testimonials-marquee {
    position: relative;
    padding: 5vh 0;
    background-color: transparent;
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(8, 8, 8, 0.55) 8%,
            rgba(8, 8, 8, 0.58) 50%,
            rgba(8, 8, 8, 0.55) 92%,
            transparent 100%);
}

.testi-header-center {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 5vw;
}

.testi-header-center h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: #fff;
    font-weight: 800;
}

/* The Faded Vault wrapper */
.testimonial-vault {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Space between the two rows */
    width: 100%;
    /* THE FADE EFFECT AVOIDING MASK-IMAGE FOR BACKDROP-FILTER SUPPORT */
    position: relative;
}

.testimonial-vault::before,
.testimonial-vault::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.testimonial-vault::before {
    left: 0;
    background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
}

.testimonial-vault::after {
    right: 0;
    background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
}

.marquee-row {
    display: flex;
    gap: 2rem; /* Maintain gap between original and cloned tracks */
    width: 100%;
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    cursor: grab;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.marquee-row::-webkit-scrollbar {
    display: none;
}

.marquee-row:active {
    cursor: grabbing;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    flex-shrink: 0; /* Prevent tracks from compressing when duplicated */
    /* Prevent text selection while dragging */
    user-select: none;
    -webkit-user-select: none;
}


/* --- Removed CSS `@keyframes` in favor of JS native dragging --- */

/* The Cards - Liquid Glassmorphism */
.testi-card-marquee {
    width: 450px;
    flex-shrink: 0; /* Prevent individual cards from squishing */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Top light reflection */
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    /* Left light reflection */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        /* Deep floating shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        /* Inner top edge highlight */
        inset 0 -1px 20px rgba(255, 255, 255, 0.05);
    /* Soft inner bottom glow */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy spring transition */
    cursor: grab;
    position: relative;
    overflow: hidden;
}

/* Diagonal Liquid Shine Overlay */
.testi-card-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.testi-card-marquee>* {
    position: relative;
    z-index: 1;
    /* Keep content above the shine */
}

.testi-card-marquee:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(204, 255, 0, 0.3);
    border-top-color: rgba(204, 255, 0, 0.6);
    border-left-color: rgba(204, 255, 0, 0.4);
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(204, 255, 0, 0.4),
        /* Lime inner highlight */
        0 0 20px rgba(204, 255, 0, 0.1);
    /* Soft lime outer glow */
    /* transform: translateY(-8px); */
}

.testi-card-marquee:hover::before {
    left: 150%;
    /* Sweep the shine across */
    transition: left 0.9s ease;
}

.quote-icon {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4rem;
    color: var(--lime);
    line-height: 0.5;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.testi-card-marquee p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testi-author h4 {
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 3px;
}

.testi-author span {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--lime);
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .testimonial-vault::before,
    .testimonial-vault::after {
        width: 10%;
    }

    .testi-card-marquee {
        width: 320px;
        /* Smaller cards for mobile */
        padding: 0.8rem;
    }

    .testi-card-marquee p {
        font-size: 0.95rem;
    }
    .marquee-track{
        gap: 0.5rem;
    }
}

/* --- SECTION: WHY CHOOSE US (Spotlight Matrix) --- */
.section-advantage {
    position: relative;
    padding: 15vh 5vw;
    /* background-color: var(--dark); */
    z-index: 10;
}

.advantage-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Above orbs */
}

.adv-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.adv-header h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.adv-sub {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
}

/* The Grid */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* Increased gap for 3D breathing room */
    position: relative;
}

/* The Card (Container for the spotlight effect and 3D transform) */
.adv-card {
    border-radius: 20px;
    position: relative;
    /* CSS Variables for Mouse Tracking (updated via JS) */
    --mouse-x: 50%;
    --mouse-y: 50%;
    transform-style: preserve-3d;
    will-change: transform;
    /* Base padding to act as the glowing border width */
    padding: 1px;
    background: rgba(255, 255, 255, 0.05);
    /* Default subtle border */
}

/* The glowing spotlight border */
.adv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(204, 255, 0, 0.8),
            /* Strong lime glow */
            transparent 30%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.adv-grid:hover .adv-card::before {
    opacity: 1;
}

/* The inner card content - Thick Glassmorphism */
.adv-card-content {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.6) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 19px;
    /* Slightly smaller to reveal the border glow */
    padding: 3.5rem 3rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    /* Layered Box Shadow for depth and reflection */
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        /* Deep outer shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        /* Top light edge */
        inset 0 -1px 20px rgba(0, 0, 0, 0.5);
    /* Inner bottom shadow */
    transition: box-shadow 0.4s ease;
}

.adv-card:hover .adv-card-content {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(204, 255, 0, 0.4),
        /* Lime top edge on hover */
        inset 0 -1px 20px rgba(0, 0, 0, 0.5);
}

/* Film Grain / Noise Texture */
.adv-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

/* Large Watermark Numbers */
.adv-num-bg {
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 12rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
    transform: translateZ(-20px);
    /* Push behind text in 3D */
}

.adv-card:hover .adv-num-bg {
    color: rgba(204, 255, 0, 0.03);
    /* Subtle lime tint on hover */
    transform: translateZ(-20px) scale(1.05);
}

/* Card Content Structure (Elevated in 3D) */
.adv-card-head {
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
    transform: translateZ(30px);
    /* Pop out during 3D tilt */
}

.adv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy spring */
}

.adv-card:hover .adv-icon {
    background: var(--lime);
    color: #000;
    border-color: var(--lime);
    transform: scale(1.1) rotate(5deg) translateZ(10px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

.adv-text {
    position: relative;
    z-index: 3;
    transform: translateZ(40px);
    /* Text pops out the most */
    pointer-events: none;
    /* Let the card catch the hover */
}

.adv-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* Helps text stand out against watermark */
}

.adv-card p {
    font-family: 'Lexend', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .adv-grid {
        grid-template-columns: 1fr;
    }

    .adv-card-content {
        padding: 2.5rem 2rem;
    }

    /* Disable mouse tracking effects strictly on mobile */
    .adv-card::before {
        display: none;
    }

    .adv-card {
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: none !important;
        /* Disable JS 3D tilt */
    }

    .adv-num-bg {
        font-size: 8rem;
        top: 0;
    }
    .section-advantage{
        padding: 10vh 5vw;
    }
    
    .adv-header{
        margin: 0 auto 2rem auto;
    }
}


/* --- SECTION: CTA --- */
.section-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(8, 8, 8, 0.55) 8%,
            rgba(8, 8, 8, 0.58) 50%,
            rgba(8, 8, 8, 0.55) 92%,
            transparent 100%);
    overflow: hidden;
    padding: 10vh 0;
    /* backdrop-filter: blur(10px); */
}

/* Ambient glow for the CTA */
.cta-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.cta-glow-left {
    background: radial-gradient(circle, rgba(204, 255, 0, 0.15) 0%, transparent 70%);
    bottom: -20%;
    left: -20%;
}

.cta-glow-right {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -20%;
    right: -20%;
}

.cta-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8vw;
    align-items: flex-start;
}

/* Left Content: Massive Typography */
.cta-content-left {
    position: sticky;
    top: 20vh;
}

.min-heading {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(4rem, 7.5vw, 11rem);
    line-height: 0.85;
    color: #fff;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Right Content: Premium Form Card */
.cta-content-right {
    position: relative;
    z-index: 3;
}

/* Container for the interactive spotlight border effect */
.cta-hover-card {
    border-radius: 16px;
    position: relative;
    --mouse-x: 50%;
    --mouse-y: 50%;
    /* 1px padding acts as the continuous border thickness */
    padding: 1px;
    background: rgba(255, 255, 255, 0.05);
    /* very subtle static border */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    overflow: hidden;
}

/* The dynamic spotlight radial gradient */
.cta-hover-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    /* Glow follows the mouse coordinates */
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(204, 255, 0, 0.35), transparent 25%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#cta-hover-container:hover .cta-hover-card::before {
    opacity: 1;
    /* Fade in spotlight when mouse enters container */
}

/* Inner card body, leaving the parent padding exposed as the border */
.cta-form-card {
    background: rgba(10, 10, 10, 0.6);
    /* Translucent dark to blend with site background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 3.5rem 3rem;
    position: relative;
    z-index: 2;
    /* Sit cleanly above the ::before spotlight */
}

/* Form layout */
.cta-premium-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual field */
.form-field {
    position: relative;
    padding: 1.8rem 0 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.form-field-row {
    display: flex;
    gap: 1rem;
}

.form-field-row .form-field {
    flex: 1;
}

.form-field-row .form-field:first-child {
    padding-right: 1.5rem;
}

.form-field-row .form-field:last-child {
    /* padding-left: 1.5rem; */
}

/* Inputs */
.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    padding: 0.8rem 0 0.6rem 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    resize: none;
    position: relative;
    z-index: 2;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
}

/* Labels */
.form-field label {
    position: absolute;
    left: 0;
    top: 2.2rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Lexend', sans-serif;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

/* Floating label effect */
.form-field input:focus~label,
.form-field input:not(:placeholder-shown)~label {
    top: 0.4rem;
    font-size: 0.65rem;
    color: var(--lime);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-field textarea:focus~label,
.form-field textarea:not(:placeholder-shown)~label {
    top: 0.4rem;
    font-size: 0.65rem;
    color: var(--lime);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Hide placeholder text so floating label works */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: transparent;
}

/* Animated underline */
.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
}

.form-field input:focus~.input-underline,
.form-field textarea:focus~.input-underline {
    width: 100%;
}

/* ---- Premium Sweep Submit Button ---- */
.cta-submit-btn {
    position: relative;
    width: 100%;
    height: 64px;
    margin-top: 2rem;
    background: transparent;
    border: 1px solid rgba(204, 255, 0, 0.35);
    border-radius: 14px;
    color: var(--lime);
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.05);
}

.cta-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.cta-submit-btn:hover {
    border-color: var(--lime);
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.25);
}

.cta-submit-btn:hover::before {
    transform: scaleX(1);
}

.btn-label,
.btn-arrow {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.cta-submit-btn:hover .btn-label,
.cta-submit-btn:hover .btn-arrow {
    color: #000;
}

.btn-arrow svg {
    transition: transform 0.4s ease;
    display: block;
}

.cta-submit-btn:hover .btn-arrow svg {
    transform: translateX(6px);
}

/* Bottom Footer details */
.min-contact-footer {
    display: flex;
    gap: 4rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.min-footer-col h4 {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--lime);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 400;
}

.min-footer-col a,
.min-footer-col p {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.min-footer-col a:hover {
    color: var(--lime);
}

/* ---- Mobile Responsive ---- */
@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-content-left {
        position: relative;
        top: 0;
    }

    .min-heading {
        font-size: clamp(3.5rem, 15vw, 6rem);
    }

    .cta-form-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .form-field-row {
        flex-direction: column;
    }

    .form-field-row .form-field:first-child {
        border-right: none;
        padding-right: 0;
    }

    .form-field-row .form-field:last-child {
        padding-left: 0;
    }

    .cta-submit-btn {
        height: 56px;
        font-size: 0.9rem;
    }

    .min-contact-footer {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
    }
}

/* --- SECTION: IMMERSIVE ENGINEERED FOOTER --- */
.footer-engineered {
    position: relative;
    min-height: 80vh;
    /* background-color: #00000038; */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 3D Perspective Grid Background */
.footer-grid-bg {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 150%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(600px) rotateX(70deg);
    transform-origin: bottom center;
    pointer-events: none;
    z-index: 1;
    /* Fades the grid out at the top and edges */
    mask-image: radial-gradient(ellipse at bottom, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom, black 20%, transparent 70%);
}

/* Massive Watermark */
.footer-watermark {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.footer-watermark span {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(5rem, 15vw, 18rem);
    font-weight: 800;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
}

.footer-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* The Glass Blueprint Panel */
.footer-glass-panel {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6) 0%, rgba(8, 8, 8, 0.85) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top-color: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.08);
    position: relative;
    padding: 5rem;
    margin-bottom: 2rem;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-glass-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

/* Technical Crosshairs */
.crosshair {
    position: absolute;
    font-family: 'Space Mono', monospace;
    color: var(--lime);
    font-size: 1.2rem;
    line-height: 1;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.ch-tl {
    top: 20px;
    left: 20px;
}

.ch-tr {
    top: 20px;
    right: 20px;
}

.ch-bl {
    bottom: 20px;
    left: 20px;
}

.ch-br {
    bottom: 20px;
    right: 20px;
}

/* Grid Layout inside the Panel */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.f-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lime);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.f-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--lime);
    transition: width 0.3s ease;
}

.f-col:hover .f-title::after {
    width: 100%;
}

.f-links {
    list-style: none;
}

.f-links li {
    margin-bottom: 1.2rem;
}

.f-links a {
    font-family: 'Lexend', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.f-links a:hover {
    color: var(--lime);
    transform: translateY(-2px);
}

/* Contact Column */
.f-col-contact {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 4rem;
}

.f-email {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.f-email:hover {
    color: var(--lime);
    transform: translateY(-2px);
}

.f-address {
    font-family: 'Lexend', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.f-socials {
    display: flex;
    gap: 1.5rem;
}

.f-socials a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.f-socials a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--lime);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.f-socials a:hover::before {
    height: 100%;
}

.f-socials a i {
    font-size: 1.5rem;
}

.f-socials a span,
.f-socials a i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.f-socials a:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
}

.f-socials a:hover span,
.f-socials a:hover i {
    color: #000;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.copyright {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Floating Back to Top Button */
.btt-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(8, 8, 8, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--lime);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed;
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    /* Hidden initially */
    pointer-events: none;
    /* Disabled initially */
    transform: translateY(20px);
}

.btt-floating::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--lime);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.btt-floating:hover::before {
    height: 100%;
}

/* Scroll Progress Ring */
.progress-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    /* Start from top */
    width: 101%;
    height: 101%;
    z-index: 1;
    pointer-events: none;
}

.progress-circle path {
    stroke: var(--lime);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    transition: stroke 0.4s ease;
}

.btt-floating .arrow {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btt-floating:hover {
    border-color: var(--lime);
    transform: translateY(-5px) !important;
    /* override the GSAP reset if hovered */
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.1);
}

.btt-floating:hover .progress-circle path {
    stroke: #000;
}

.btt-floating:hover .arrow {
    color: #000;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-glass-panel {
        padding: 3rem 2rem;
    }

    .f-col-contact {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 3rem;
    }

    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }
}