:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-color: #cacaca;
    /* Faded gray instead of bright white */
    --accent: #cacaca;
    /* Faded gray instead of bright white */
    --accent-2: #ffffff;
    /* Updated to Vibrant Orange */
    --font-head: Geist, "Geist Placeholder", sans-serif;
    /* Updated to Geist */
    --font-body: 'Poppins', sans-serif;
}

/* Removed duplicate/placeholder code */

/* Hero Title Reduced further for better fit */
.hero-title {
    font-family: var(--font-head);
    font-size: 10vw;
    font-weight: 800;
    line-height: 0.95;
    /* text-transform: uppercase; */
    margin-bottom: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* Remove blue tap box on mobile */
}

/* Prevent accidental text selection on headings impacting scroll feel */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.impact-main-title,
.sb-title,
.nav-link {
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    color: rgba(255, 255, 255, 0.75) !important;
    /* Fade all headings and bright text */
}

/* Buttons with dark/colored backgrounds get white text */
.btn,
button,
.bi-cta,
.hero-cta,
.cta-button {
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    color: #fff !important;
    /* White text for buttons with colored backgrounds */
}


html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    -webkit-overflow-scrolling: touch;
    /* Momentum scrolling for iOS */
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden !important;
    /* Force hidden overflow */
    overflow-y: auto;
    /* Ensure vertical scroll is standard */
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    /* Ensure relative positioning for absolute children */
    /* GPU acceleration removed - it breaks position:fixed */
    /* transform: translateZ(0); */
    /* -webkit-transform: translateZ(0); */
    will-change: scroll-position;
}

section {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    /* Force hidden overflow */
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling issues */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

/* --- Performance Optimizations --- */
/* Skip rendering off-screen content */
.manifesto-section,
.brand-giants,
.service-carousel,
.success-stories,
.creator-stream-section,
.services-bento,
.studio-section,
.creator-wall,
.impact-voices {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    /* Disables click on images themselves, but allows click on parent links */
}

/* Re-enable pointer-events for images inside buttons or links if necessary, 
   but usually pointer-events: none on img passes the click to the parent <a> or <button>, 
   which is DESIRED behavior. */


/* Policy Pages Styles */
.policy-section {
    padding: 150px 5% 100px;
    background: var(--bg-color);
    color: #cacaca;
    min-height: 100vh;
}

.policy-container {
    max-width: 100%;
    /* Full width as requested */
    margin: 0;
    /* Revert to Left-aligned */
    /* Removed Card Styling */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    padding-right: 5%;
    /* Fix right side gap */

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-container h1 {
    font-family: var(--font-head);
    font-size: 2.9rem;
    /* Match website theme */
    margin-bottom: 8px;
    /* Reduced gap */
    color: #cacaca;
    font-weight: 700;
    line-height: 1;
}

.policy-meta {
    font-size: 0.85rem;
    color: #666;
    /* Faded */
    margin-bottom: 20px;
    /* Reduced gap to content */
    padding-bottom: 0;
    display: inline-block;
}

.policy-content {
    color: rgba(255, 255, 255, 0.7);
    /* Faded theme color */
    line-height: 1.7;
    font-size: 1rem;
}

.policy-content h2 {
    color: rgba(255, 255, 255, 0.95);
    /* Slightly faded */
    font-family: var(--font-head);
    font-size: 1.6rem;
    /* Balanced size */
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 12px;
    /* Reduced gap */
    line-height: 1.2;
}

.policy-content p {
    margin-bottom: 12px;
    /* Reduced gap */
    color: rgba(255, 255, 255, 0.65);
    /* Faded theme color */
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
    /* Reduced gap */
    list-style: none;
}

.policy-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.65);
    /* Faded theme color */
}

.policy-content ul li::before {
    content: "•";
    color: rgba(255, 255, 255, 0.4);
    /* Changed from orange to faded white */
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.5rem;
    top: -2px;
}

.policy-content ul li strong {
    color: rgba(255, 255, 255, 0.85);
    /* Slightly brighter for emphasis */
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px;
    }

    .iv-title {
        font-family: var(--font-head);
        font-size: 2.9rem;
        margin-bottom: 40px;
        font-weight: 600;
        letter-spacing: -1px;
        margin-top: 60px;
    }

    .policy-container h1 {
        font-size: 2.5rem;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    /* Lightweight pattern */
    opacity: 0.1;
    mix-blend-mode: overlay;
}

/* ========================================
   UNIQUE SECTION PARTITION STYLES
   Each section has a distinct visual identity
======================================== */

/* 1. HERO SECTION - Diagonal Split with Animated Background */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 127, 28, 0.08) 0%, transparent 70%);
    animation: heroGlow 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    /* Cover bottom portion */
    background: linear-gradient(to top, #000 10%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-10%, 10%) scale(1.1);
        opacity: 0.8;
    }
}

/* 2. MANIFESTO SECTION - Full Width Typography Focus */
.manifesto-section {
    background: #050505;
    padding: 120px 5% 80px;
    position: relative;
    /* border-top: 1px solid rgba(227, 127, 28, 0.2); */
    /* border-bottom: 1px solid rgba(227, 127, 28, 0.2); */
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 49px,
            rgba(255, 255, 255, 0.02) 49px,
            rgba(255, 255, 255, 0.02) 50px);
    pointer-events: none;
    z-index: 0;
}

.manifesto-container {
    position: relative;
    z-index: 1;
}

/* 3. SUCCESS STORIES - Card Grid with Asymmetric Layout */
.success-stories {
    background: #181818;
    padding: 120px 5% 120px;
    position: relative;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    z-index: 5;
}

.success-stories::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(227, 127, 28, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.success-container {
    position: relative;
    z-index: 1;
}

/* 4. BRAND GIANTS - Minimal Clean with Flowing Elements */
.brand-giants {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 5. SERVICE CAROUSEL - Dark Gradient with Depth */
.service-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 969px;
    background: linear-gradient(302deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* border-top: 3px solid rgba(227, 127, 28, 0.3); */
}

/* Texture Overlay for Section */
.service-carousel::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* High-freq noise SVG to match reference */
    /* High-freq noise SVG to match reference */
    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)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.05;
    /* Reduced from 0.15 to let gradient show */
    /* mix-blend-mode: overlay; Removed to see gradient better */
    z-index: 1;
    pointer-events: none;
}

.service-carousel::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

/* Background "TRENDSPARX" Text */
/* Removed conflicting .service-carousel::after block (Background TRENDSPARX Text) used for separator now */

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-type {
    font-family: 'Space Grotesk', monospace;
    /* Techy monospace feel */
    font-size: 4rem;
    color: var(--text-color);
    /* Updated to Silver */
    text-transform: uppercase;
    position: relative;
}

.loader-type::after {
    content: '|';
    animation: blink 0.1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .loader-type {
        font-size: 8vw;
        /* Reduced width for mobile */
    }
}

/* Scrollbar */
/* Scrollbar Hidden globally */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}



/* Navigation - Floating Glass Badge Style */
.navbar {
    position: fixed !important;
    top: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
    /* Increased z-index */
    padding: 0 5%;
    transform: translateZ(0);
    /* Create new stacking context */
    will-change: transform;
    /* Optimize for fixed positioning */
    backface-visibility: hidden;
    /* Prevent flickering */
}

.nav-glass {
    background: rgba(10, 10, 10, 0.5);
    /* backdrop-filter: blur(15px); - Disabled for performance */
    /* -webkit-backdrop-filter: blur(15px); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    /* Reduced width */
    box-shadow: none;
    transition: all 0.3s ease;
}

.nav-glass:hover {
    background: rgba(10, 10, 10, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 26px;
    /* Matches visual height of text */
    width: auto;
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    /* Medium for links */
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-2);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #cacaca;
}

.nav-item:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hamburger Menu (Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 10000;
}

/* Responsive Navbar */
@media (max-width: 900px) {
    .navbar {
        top: 15px;
        padding: 0 10px;
    }

    .nav-glass {
        padding: 12px 25px;
        flex-direction: row;
        /* Horizontal alignment */
        justify-content: space-between;
        align-items: center;
        /* Stack Logo and Menu */
        width: 100%;
        max-width: 100%;
        border-radius: 50px;
        /* More rounded like Pyro */
        background: rgba(10, 10, 10, 0.5);
        /* Darker for visibility */
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        /* Slightly thicker */
        background-color: #cacaca;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation when Active */
    .nav-glass.nav-open .hamburger span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .nav-glass.nav-open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-glass.nav-open .hamburger span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-glass.nav-open+.nav-menu,
    .nav-glass.nav-open .nav-menu {
        /* Since .nav-menu is INSIDE .nav-glass in HTML, use direct child */
        display: flex;
        /* Ensure it's flex */
    }

    /* Correction: .nav-menu is inside .nav-glass */
    /* On mobile, we might want to pop it out or just simple toggle */

    /* Let's redefine for simpler structure based on current HTML */
    .nav-menu {
        position: fixed;
        top: 0;
        /* Full screen */
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: -1;
        /* Behind the glass bar */
        padding: 0;
        margin: 0;
    }

    .nav-glass.nav-open .nav-menu {
        transform: translateY(0);
    }

    .nav-item {
        font-size: 1.5rem;
        color: #fff;
    }



    .logo-img {
        height: 20px;
    }

    .navbar {
        top: 10px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 12px;
    }


}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 5% 0;
    /* Added top padding for navbar clearance */
    overflow: hidden;
}



.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Reduced width to prevent overlap */
    height: 100%;
    background: #000;
    z-index: 0;
    overflow: hidden;
    /* clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%); */
    /* Slant creative effect (Inverted) */
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img.active {
    opacity: 1;
    /* Full visibility, no tint */
    transform: scale(1);
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

/* Hero Separator Marquee (The Cut) */
.hero-separator-marquee {
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: 48%;
    /* Moved left */
    width: 50px;
    /* Thinner as requested */
    background: var(--accent-2);
    transform: rotate(-8deg) scale(1.2);
    /* Increased tilt for seamless fit */
    z-index: 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* border-left: 2px solid #fff; */
    /* border-right: 2px solid #fff; */
}

.sep-track {
    display: flex;
    flex-direction: column;
    /* Vertical scrolling text */
    gap: 20px;
    white-space: nowrap;
    animation: sep-marq 4s linear infinite;
    writing-mode: vertical-rl;
    /* Text runs vertically */
    text-orientation: mixed;
    transform: rotate(180deg);
    /* Fix orientation */
}

.sep-track span {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
}

@keyframes sep-marq {
    from {
        transform: rotate(180deg) translateY(0);
    }

    to {
        transform: rotate(180deg) translateY(50%);
    }
}

/* Hero Content - Right Side */
.hero-content {
    position: relative;
    width: 100%;
    /* Full width for center alignment */
    margin: 0 auto;
    text-align: center;
    /* Center text */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center items */
    height: 100%;
    /* padding-top removed for center alignment */
}

.hero-tag {
    display: inline-block;
    padding: 5px 15px;
    /* Reduced padding */
    border: 1px solid var(--text-color);
    border-radius: 50px;
    font-size: 0.50rem;
    /* Reduced font size */
    text-transform: uppercase;
    margin-bottom: 10px;
    /* Tighter spacing */
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    width: fit-content;
    letter-spacing: 2px;
}

/* Hero Title Reduced further for better fit */
.hero-title {
    font-family: 'Impact', 'Oswald', sans-serif;
    /* Condensed bold font */
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 700;
    /* Impact is already bold */
    line-height: 1;
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 20px;
    color: #fff !important;
    white-space: normal;
}

.highlight-text {
    color: #4cd9b0 !important;
    /* Teal/Mint Green Accent */
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ffffff;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    text-transform: lowercase;
    /* As per image */
}

.hero-title .line {
    white-space: nowrap;
    /* Prevent awkward breaks */
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.stat-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    /* backdrop-filter: blur(20px); - Disabled for performance */
    /* -webkit-backdrop-filter: blur(20px); */
    padding: 15px 25px;
    /* Slightly smaller padding */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle premium border */
    text-align: left;
    min-width: 160px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, border-color 0.3s;
    will-change: transform;
    z-index: 10;
}

/* Hover removed as requested */

.stat-card::before {
    /* Shine effect */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.stat-1 {
    top: auto;
    bottom: 8%;
    /* Aligned with stat-2 vertically */
    right: 30%;
    /* Positioned to the left of stat-2 with spacing */
    left: auto;
    transform: rotate(-5deg);
}

.stat-2 {
    top: auto;
    bottom: 5%;
    /* Staggered bottom */
    right: 5%;
    transform: rotate(5deg);
}

/* Stat Card Reduced */
.stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    /* Reduced from 3rem */
    color: #cacaca;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(180deg, #ffffff, #bbbbbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Stat Cards Container - Always Horizontal */
.stat-cards-container {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 15;
    pointer-events: none;
}

.stat-cards-container .stat-card {
    pointer-events: all;
}

/* Marquee */
/* Marquee */
/* Marquee */
.marquee-strip {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 20%, rgba(0, 0, 0, 0.95) 80%, rgba(0, 0, 0, 0) 100%);
    /* Fade background */
    color: rgba(255, 255, 255, 0.9);
    /* White text */
    padding: 12px 0;
    /* Slightly thinner */
    font-family: var(--font-head);
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    z-index: 100;
    position: absolute;
    bottom: -20px;
    left: 50%;
    /* Center anchor */
    width: 150%;
    /* Wider to cover rotation */
    font-weight: 500;
    letter-spacing: 1px;
    visibility: visible;
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    /* Soften shadow */
    border: none;
    /* Removed "line" border */
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

/* Conflicting block removed */

.marquee-strip.cross-1 {
    transform: translateX(-67%) rotate(5deg);
    /* Center and Rotate */
    z-index: 101;
    transform-origin: center;
}


.marquee-strip.cross-2 {
    transform: translateX(-67%) rotate(-5deg);
    /* Center and Rotate */
    z-index: 100;
    background: #0a0a0a;
    /* Slightly different shade */
    transform-origin: center;
}

.marquee-strip span {
    margin: 0 30px;
    /* Increased gaps */
}

.track {
    display: inline-block;
    animation: marq 60s linear infinite;
}

.track.reverse-track {
    animation: marq-rev 60s linear infinite;
}

@keyframes marq {
    from {
        transform: translateX(0);
    }

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

@keyframes marq-rev {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Process Scroll (Pinned) */
/* Process Scroll (Pinned) */
.process-scroll {
    height: 300vh;
    /* Scroll distance */
    position: relative;
    background: var(--bg-color);
    z-index: 5;
    /* Ensure stack level */
    padding: 0;
}

.sticky-wrapper {
    position: relative;
    /* Let GSAP handle pinning */
    height: 100vh;
    display: flex;
    flex-direction: row;
    /* Side by side */
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    gap: 0;
}

.process-content {
    flex: 1;
    z-index: 2;
    text-align: left;
    /* Left align text */
    margin-bottom: 0;
    padding-left: 90px;
    /* Match Services Header Left Spacing */
}

/* Process Text Reduced */
.huge-process-text {
    font-family: var(--font-head);
    font-size: 6vw;
    /* Reduced from 8vw */
    line-height: 1;
    text-transform: uppercase;
    color: #cacaca;
}

.huge-process-text .dot {
    color: var(--accent-2);
}

.dynamic-suffix {
    color: rgba(255, 255, 255, 0.3);
    /* Dim by default, active will be white */
    display: inline-block;
}

.process-visuals {
    width: 40%;
    height: 70vh;
    position: relative;
    perspective: 1000px;
    display: block;
    /* Reset from flex */
}

.p-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: rotate(15deg) translate(100px, 100px);
    transform-origin: bottom right;
    will-change: transform, opacity;
    border-radius: 30px;
    margin: 0;
    /* Reset margin */
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    /* Ensure it renders */
}

/* Impact Statement (Hacker Effect) */
.impact-statement {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-bottom: 150px; */
    z-index: 2;
}

.impact-container {
    text-align: center;
    z-index: 2;
}

/* Impact Text Reduced */
.impact-text {
    font-family: var(--font-head);
    font-size: 8vw;
    /* Reduced from 10vw */
    line-height: 0.85;
    color: #fff;
    cursor: crosshair;
    transition: all 0.1s;
    white-space: nowrap;
    text-transform: uppercase;
    will-change: transform, opacity;
}

.impact-text.outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.impact-text:hover {
    color: var(--accent-2);
    /* Gold */
    -webkit-text-stroke: 0px;
}


/* Our Services Section */
.our-services {
    padding: 100px 5%;
    padding-top: 100px;
    background: #000;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    /* Full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wall-header {
    margin-left: 60px;
    margin-top: 100px;
}

/* Unified Section Titles */
.service-title,
.wall-header h2 {
    font-family: var(--font-head);
    font-size: 2.9rem;
    color: rgba(255, 255, 255, 0.85) !important;
    /* Match Successful Campaigns */
    margin-bottom: 6px;
    line-height: 1;
    /* text-transform: uppercase; */
    margin-left: 0;
}

.tc-title {
    font-family: var(--font-head);
    font-size: 2.9rem;
    color: var(--text-color);
    margin-bottom: 6px;
    line-height: 1;
    /* text-transform: lowercase; */
    margin-left: 0;
}


/* Unified Subtitles */
.service-subtitle,
.wall-header p {
    font-size: 20px;
    /* Reduced from 30px */
    color: rgba(255, 255, 255, 0.75) !important;
    margin-top: 5px;
    font-family: var(--font-body);
    letter-spacing: normal;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-left: 0;
}

/* Paragraph (Descriptions): 16px */
.header-right p,
.section-desc,
.carousel-container p,
.tc-header p {
    font-size: 16px !important;
    /* Reduced from 16px */
    line-height: 1.6;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.5) !important;
}

.tc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 30px;
    margin-bottom: 25px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 17px;
}

.header-left {
    max-width: 50%;
    margin-left: 90px;
}


.header-right {
    max-width: 40%;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
}

/* Services Grid */
.services-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
    min-height: 500px;
}

.service-card {
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease;
}

.light-card {
    background: #111;
    /* Dark card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    color: var(--text-color);
}

.light-card:hover {
    background: #111;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.featured-card {
    flex: 1.2;
    /* Slightly wider */
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    /* Blue Gradient */
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-top: -30px;
    /* Pop effect */
    margin-bottom: -30px;
    box-shadow: 0 20px 50px rgba(0, 114, 255, 0.3);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 114, 255, 0.5);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.featured-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 114, 255, 0.9), transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    /* text-transform: lowercase; */
    /* As per design */
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 80%;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.featured-card .icon-circle {
    background: #fff;
    color: #0072ff;
}

/* Brand Giants (New Section) */
.brand-giants {
    padding: 100px 0;
    padding-top: 180px;

    background: #000000;
    /* Glassy BG for entire section */
    backdrop-filter: blur(10px);
    /* ... rest of brand giants */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    transform: none;
    /* Straighten layout */
    margin: 0;
    overflow: hidden;
}

/* Counter-skew content so it's not distorted, just the container slanted? 
   No, user said "which is lil slant", implying the whole block might be slanted.
   Reference image looks like a slanted block. I'll stick to skewY or rotate.
*/

.bg-header {
    text-align: center;
    margin-bottom: 60px;
    transform: none;
    /* Straightened */
}

.bg-header h3 {
    font-family: var(--font-head);
    /* Changed to heading font for consistency */
    color: #ffffffd9 !important;
    /* Changed to match other titles */
    font-size: 2.9rem;
    /* Same as our services */
    letter-spacing: 0;
    /* Removed extra spacing */
    margin-bottom: 6px;
    /* Increased from 10px */
    /* text-transform: lowercase; */
    /* Changed to lowercase like other titles */
    line-height: 1;
}

.bg-header h2 {
    font-family: var(--font-head);
    font-size: 2.9rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 6px;
    /* text-transform: uppercase; */
}

.bg-header .accent-text {
    color: var(--accent-2);
    /* Gold */
}

.giants-marquee {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: none;
    /* Straightened */
}

.bg-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    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);

    /* Make the PATH distinct - REMOVED, moving to Main Container */
    /* background: rgba(255, 255, 255, 0.05); */
    padding: 20px 0;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.bg-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* Critical for correct % calculation */
    animation: bg-marq 40s linear infinite;
    height: 55px;
}

.bg-track.reverse {
    animation: bg-marq-rev 40s linear infinite;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0 50px;
    opacity: 0.86;
    /* Faded equally */
    transition: all 0.6s ease;
    filter: brightness(0) invert(1) !important;
    /* Force all to pure white */
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) !important;
    /* Add glow on hover instead of color */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-logo.invert-logo {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* --- Brand Balance Fixes --- */
img[alt="Myntra"],
img[alt="Nivea"] {
    height: 55px;
    /* Boosted to match 40px base */
    width: auto;
    opacity: 0.9;
}

img[alt="Binance"] {
    height: 45px;
    margin: 0 60px;
}

img[alt="TrulyMadly"] {
    height: 45px;
}

.brand-logo.invert-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.dot {
    color: var(--accent-2);
    font-size: 2rem;
    vertical-align: middle;
}

@keyframes bg-marq {
    0% {
        transform: translateX(0);
    }

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

@keyframes bg-marq-rev {
    0% {
        transform: translateX(-25%);
    }

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

/* Success Stories (Stack) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
    /* Ensure it stays above background but respects other stacks */
}

/* Removed duplicate .success-stories block */

.success-container {
    display: flex;
    flex-direction: column;
    /* Stack Header and Content */
    gap: 0px;
    /* Reduced gap */
    max-width: 1350px;
    /* Increased width to push content outwards */
    width: 100%;
    margin: 0 auto;
    /* Ensure container itself is centered */
}

/* Header Row Split */
.success-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.sh-left {
    max-width: 50%;
}

.sh-right {
    max-width: 40%;
    margin-top: 10px;
}

/* Content Row Split */
.success-content-wrapper {
    display: flex;
    justify-content: space-between;
    /* Equal spacing on sides */
    align-items: center;
    gap: 20px;
    /* Minimal gap, let space-between handle distribution */
    width: 100%;
    min-height: 416px;
    padding-top: 10px;
    padding-right: 0;
}

.success-deck-container {
    flex: none;
    /* Disable flex grow/shrink */
    width: 450px;
    /* Increased from 300px */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    /* Increased height */
}

/* New Detail Card */
/* New Detail Card */
/* Detail Card - Fixed Height Box (Invisible Container) */
.campaign-detail-card {
    flex: none;
    /* Fixed size */
    width: 100%;
    max-width: 500px;
    /* Increased width */
    height: 450px;
    /* Increased height */
    background: transparent;
    /* Removed visible box */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    /* Removed visible box */
    border-radius: 20px;
    padding: 20px 0;
    /* Balanced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    /* Use gap instead of space-between */
    box-shadow: none;
    /* Removed visible box */
    transform: translateZ(0);
}

/* Card Sections */
.cdc-top,
.cdc-middle,
.cdc-bottom {
    width: 100%;
}

.cdc-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.cdc-info-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    text-align: left;
    /* Tighter */
}

.cdc-info-block.text-right {
    text-align: left;
    align-items: flex-start;
}

.cdc-separator {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    display: flex;
    align-items: center;
    padding: 0 15px;
    align-self: flex-end;
    padding-bottom: 8px;
}

.cdc-label {
    font-size: 0.7rem;
    /* Smaller label */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    font-weight: 600;
}

.cdc-name {
    font-family: var(--font-head);
    font-size: 1.6rem;
    /* Scaled up from 1.3rem */
    color: #fff;
    line-height: 1;
}

.cdc-brand {
    font-family: var(--font-head);
    font-size: 1.6rem;
    /* Scaled up from 1.3rem */
    color: var(--accent-2);
    line-height: 1;
}

/* Stats Grid */
/* Stats Grid */
.cdc-stats-grid {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    /* Left-aligned with gap */
    margin-top: 10px;
    /* Positive margin */
}

.cdc-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    padding: 6px 8px;
    /* Compact padding */
    border-radius: 8px;
    transition: background 0.3s;
}

.cdc-stat-item.highlight-stat {
    background: rgba(255, 255, 255, 0.05);
    /* Highlight Highlighted Stat */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cdc-stat-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    /* Scaled up from 1.2rem */
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}

.cdc-stat-item.highlight-stat .cdc-stat-val {
    color: #fff;
    /* Gold for highlighted view */
}

.cdc-stat-label {
    font-size: 0.65rem;
    /* Smaller label */
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Actions Footer */
/* AI Analysis Section */
.cdc-analysis {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Divider */
    border-bottom: none;
    /* Hidden */
    align-items: flex-start;
    text-align: left;
}

.analysis-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 0.7rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.sparkle-icon {
    width: 12px;
    height: 12px;
    color: #fff;
}

.analysis-text {
    font-size: 1rem;
    /* Scaled up from 0.85rem */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-family: var(--font-body);
}

.highlight-text {
    color: #fff;
    font-weight: 600;
}

.analysis-text .highlight-text {
    color: #fff !important;
}

/* Mini ROI Visual */
.roi-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.roi-bar {
    position: relative;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    overflow: hidden;
}

.roi-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    z-index: 1;
}

.roi-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.roi-val {
    font-size: 0.75rem;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Actions Footer */
.cdc-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    /* Left-aligned with gap */
}

.view-reel-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 8px 16px;
    /* Smaller button */
    border-radius: 50px;
    font-size: 0.8rem;
    /* Smaller text */
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.view-reel-btn:hover {
    transform: scale(1.05);
    background: var(--accent-2);
    color: #fff;
}

.cdc-tags {
    display: flex;
    gap: 8px;
}

.c-tag-pill {
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Response for Mobile */
@media (max-width: 900px) {
    .success-container {
        flex-direction: column;
        /* Stack top to bottom */
        padding: 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .success-header-wrapper {
        flex-direction: column;
        gap: 15px;
        /* Reduced from 30px - less gap between title and description */
        align-items: center;
        text-align: center;
        margin-bottom: -151px;
        /* Added gap before cards */
    }

    .sh-left,
    .sh-right {
        max-width: 100%;
        text-align: center;
    }

    /* Optimize title and description */
    .success-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 10px;
        /* Reduced from 15px */
    }

    .sh-right p {
        font-size: 0.95rem;
        line-height: 1.6;
        opacity: 0.8;
    }

    .success-content-wrapper {
        flex-direction: column;
        gap: 0px;
        /* Reduced from 60px */
        align-items: center;
        margin-top: 0;
        /* Removed extra top margin */
        padding: 0 !important;
        width: 100%;
    }

    .success-deck-container {
        width: 100%;
        height: 500px;
        margin-top: 0;
        /* Removed extra margin */
        display: block;
        /* Ensure visibility */
        overflow: visible;
        /* Ensure cards are visible */
    }

    /* Story Deck - Separate spacing */
    .story-deck {
        width: calc(100% - 40px);
        max-width: 320px;
        margin: 0 auto;
        position: relative;
        /* Ensure proper stacking */
        display: block;
        /* Ensure visibility */
        height: 500px;
        /* Fixed height for cards */
    }

    .story-card {
        display: block !important;
        /* Force visibility */
        opacity: 1 !important;
        /* Ensure visible */
        position: absolute;
        /* For stacking */
        visibility: visible !important;
        /* Force visible */
    }

    /* Campaign Detail Card - Separate spacing */
    .campaign-detail-card {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        min-height: auto;
        height: auto;
        text-align: center;
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 0;
        /* Remove rounded corners */
        order: 2;
        /* Move below deck container */
    }

    /* Center align creator and brand names */
    .cdc-row {
        display: flex;
        justify-content: space-between;
        /* Spread out */
        align-items: center;
        flex-direction: row;
        /* Single Row */
        gap: 10px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        width: 100%;
    }

    .cdc-info-block {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .cdc-info-block.text-right {
        text-align: right !important;
        align-items: flex-end !important;
    }

    .cdc-separator {
        display: block;
        /* Show separator */
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.3);
    }

    /* Optimize typography for mobile */
    .cdc-label {
        font-size: 0.65rem;
        letter-spacing: 1.2px;
        opacity: 0.7;
    }

    .cdc-name,
    .cdc-brand {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }

    /* Stats grid optimization */
    .cdc-stats-grid {
        justify-content: center;
        gap: 10px;
        margin-top: 0;
        /* flex-wrap: wrap; */
    }

    .cdc-stat-item {
        flex: 0 1 auto;
        min-width: 80px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
    }

    .cdc-stat-val {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .cdc-stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
    }

    /* AI Performance section */
    .cdc-analysis {
        gap: 15px;
        margin-top: 20px;
    }

    .analysis-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .roi-visual {
        gap: 12px;
    }

    .roi-bar {
        height: 28px;
        /* Slightly larger targets */
    }

}

.success-header {
    position: relative;
    z-index: 10;
}

.success-title {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.1;
}

.story-deck {
    position: relative;
    width: 100%;
    height: 500px;
    /* Increased Height */
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-card {
    position: absolute;
    top: 0;
    left: 50%;
    /* Will override with transform */
    width: 320px;
    /* Increased from 250px */
    height: 500px;
    /* Increased Height */
    border-radius: 20px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); */
    box-shadow: none;
    /* Softer shadow to remove sharp boxiness */
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease, filter 0.6s ease;
    will-change: transform, opacity, filter;
    cursor: pointer;
    overflow: hidden;
    transform-origin: center bottom;
}

/* Reel Mockup Styles */
.reel-mockup {
    width: 100%;
    height: 100%;
    /* Fixed: Was 80%, causing gap at bottom */
    background: #000;
    border-radius: 24px;
    /* Matched to card */
    overflow: hidden;
    position: relative;
}

.reel-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Reel Overlay - Scaled Down */
.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    /* Reduced padding from 20px */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.4) 100%);
    color: white;
    z-index: 10;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.reel-overlay * {
    pointer-events: auto;
    transform: translateZ(0);
}

.reel-username {
    font-family: var(--font-body);
    font-size: 0.8rem;
    /* Reduced from 0.9rem */
    font-weight: 600;
    margin-bottom: 15px;
}

.reel-stats {
    position: absolute;
    right: 10px;
    /* Reduced from 15px */
    bottom: 70px;
    /* Adjusted position */
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Reduced gap */
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-item svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-item span {
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.reel-caption {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-top: 10px;
    padding-right: 60px;
}

/* Campaign Overlay Styles */
/* Instagram Reel UI Styles */
.reel-overlay.instagram-ui {
    background: transparent;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Right Side Actions - Scaled Down */
.reel-actions {
    position: absolute;
    right: 10px;
    /* Reduced from 15px */
    bottom: 31px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Reduced gap */
    z-index: 10;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.action-icon {
    width: 22px;
    /* Reduced from 28px */
    height: 22px;
    /* Reduced from 28px */
    color: #fff;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
    cursor: pointer;
}

.action-item:hover .action-icon {
    transform: scale(1.1);
}

.action-count {
    color: #fff;
    font-size: 0.7rem;
    /* Reduced from 0.8rem */
    font-family: var(--font-body);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Bottom Info - Scaled Down */
.reel-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* Reduced gap */
    max-width: 85%;
    margin-bottom: 10px;
    z-index: 10;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
}

.user-pic {
    width: 24px;
    /* Reduced from 32px */
    height: 24px;
    /* Reduced from 32px */
    border-radius: 50% !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.user-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    /* Reduced from 0.95rem */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.follow-text {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    border-radius: 4px;
    padding: 2px 5px;
    font-size: 0.65rem;
    /* Reduced from 0.75rem */
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.caption-text {
    color: #fff;
    font-size: 0.75rem;
    /* Reduced from 0.85rem */
    font-family: var(--font-body);
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Highlighted Views Tag */
.reel-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* Highlighted Views Tag (Red Pill Style) - Scaled Down */
.views-tag {
    display: inline-flex;
    /* Fit content */
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #ff0000;
    /* Solid Red */
    padding: 4px 10px;
    /* Reduced Padding */
    border-radius: 50px;
    /* Fully rounded pill */
    width: fit-content;
    border: none;
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.4);
    animation: none;
    /* Removed pulse animation for clean look */
}

.views-text {
    font-size: 0.8rem;
    /* Reduced from 0.95rem */
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    /* Extra bold */
    text-shadow: none;
    letter-spacing: 0.5px;
}

.views-icon {
    display: none;
    /* Hidden based on image reference */
}

/* Shine Removed */
.views-tag::before {
    display: none;
}

/* Mini View Reel Button - Scaled Down */
.mini-view-reel {
    background: #fff;
    color: #000;
    border: none;
    padding: 4px 8px;
    /* Reduced padding */
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    /* Reduced from 0.75rem */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.mini-view-reel:hover {
    transform: scale(1.05);
    background: var(--accent-2);
    color: #fff;
}

.views-icon {
    width: 16px;
    height: 16px;
    fill: #00e5ff;
    /* Cyan Highlight */
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.8));
}

.views-text {
    font-size: 0.9rem;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* Shine Effect animation */
.views-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
        border-color: rgba(0, 229, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
        border-color: rgba(0, 229, 255, 0.8);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.campaign-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.creator-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.brand-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.instagram-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.campaign-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.stat-item-overlay {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.stat-item-overlay.highlight-stat {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.25), rgba(0, 114, 255, 0.25));
    border-color: rgba(0, 198, 255, 0.4);
}

.stat-label-overlay {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: capitalize;
    font-weight: 500;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.stat-item-overlay.highlight-stat .stat-label-overlay {
    color: #00c6ff;
    font-weight: 600;
}

.stat-value-overlay {
    font-family: var(--font-head);
    font-size: 0.85rem;
    color: #fff;
    font-weight: 700;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.stat-item-overlay.highlight-stat .stat-value-overlay {
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
}

/* Card Positions - Balanced - Using explicit transforms */
/* Card Positions - Tighter Stack (Close) & Aligned Bottom */
.sc-1 {
    transform: translate(-90%, 0%) rotate(-4deg) scale(0.92);
    /* Y: 0% to prevent drop */
    z-index: 1;
    opacity: 0.8;
    filter: grayscale(100%);
    left: 50%;
}

.sc-2 {
    transform: translate(-50%, 0) rotate(0deg) scale(1);
    z-index: 3;
    opacity: 1;
    filter: grayscale(0%);
    left: 50%;
}

.sc-3 {
    transform: translate(-10%, 0%) rotate(4deg) scale(0.92);
    /* Y: 0% to prevent drop */
    z-index: 1;
    opacity: 0.8;
    filter: grayscale(100%);
    left: 50%;
}

/* Right Side: Table */
.success-right {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.table-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.collab-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
}

.collab-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.collab-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.collab-table th {
    padding: 15px 12px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.collab-table th.highlight-col {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
    color: #00c6ff;
    font-weight: 700;
}

.collab-table td {
    padding: 18px 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.collab-table tbody tr {
    transition: background 0.3s ease;
}

.collab-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.collab-table td.highlight-col {
    background: rgba(0, 198, 255, 0.05);
    font-weight: 600;
}

.collab-table td.highlight-col strong {
    color: #00c6ff;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
}

.reel-link {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.reel-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .success-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-deck {
        max-width: 100%;
    }

    .success-right {
        padding: 30px 20px;
    }

    .collab-table {
        font-size: 0.8rem;
    }

    .collab-table th,
    .collab-table td {
        padding: 12px 8px;
    }
}

/* Campaign Info Section */
.campaign-info {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-of-type {
    border-bottom: none;
    margin-bottom: 25px;
}

.info-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 120px;
}

.info-value {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.info-link {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.info-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.stat-box {
    background: transparent;
    border: none;
    /* border-radius: 15px; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-box.highlight {
    background: transparent;
    border-color: transparent;
}

.stat-box.highlight:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-box.highlight .stat-label {
    color: #00c6ff;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}

.stat-box.highlight .stat-number {
    color: #00c6ff;
    text-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
}

@media (max-width: 768px) {
    .success-stories {
        padding: 80px 5%;
    }

    .analysis-text {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        font-family: var(--font-body);
        text-align: LEFT;
    }

    .wall-header h2 {
        font-family: var(--font-head);
        font-size: 2.9rem;
        color: var(--text-color);
        margin-bottom: 6px;
        line-height: 1;
        /* text-transform: uppercase; */
        /* margin-left: 0; */
        margin-top: 50px;
        text-align: left;
        /* Explicitly align left */
    }

    .tc-title {
        font-family: var(--font-head);
        font-size: 2.9rem;
        color: var(--text-color);
        margin-bottom: 6px;
        line-height: 1;
        /* text-transform: lowercase; */
        margin-left: 0;
        margin-top: 66px;
        text-align: left;
        /* Explicitly align left as requested */
    }

    .bg-header {
        text-align: center;
        margin-bottom: 50px;
        transform: none;
        /* Straightened */
    }

    .giants-marquee {
        display: flex;
        flex-direction: column;
        gap: 0px;
        transform: none;
        /* Straightened */
    }

    .reel-mockup {
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
    }

    .success-container {
        max-width: 100%;
        margin-top: 0;
    }

    .story-deck {
        width: 100%;
        max-width: 100%;
        height: 600px;
        overflow: visible;
    }

    .story-card {
        width: 200px;
        height: 550px;
    }

    /* Center card - fully visible */
    /* Center card - fully visible */
    .sc-2 {
        left: 50%;
        transform: translateX(-50%) rotate(0deg) scale(1);
        z-index: 3;
        opacity: 1;
        filter: grayscale(0%);
    }

    .wall-header {
        margin-left: 9px;
        margin-top: 100px;
    }

    /* Left card - peek from left */
    /* Left card - peek from left */
    .sc-1 {
        left: 50%;
        transform: translateX(-50%) translateX(-120px) rotate(-5deg) scale(0.85);
        z-index: 1;
        opacity: 0.6;
        filter: grayscale(100%);
    }

    /* Right card - peek from right */
    /* Right card - peek from right */
    .sc-3 {
        left: 50%;
        transform: translateX(-50%) translateX(120px) rotate(5deg) scale(0.85);
        z-index: 1;
        opacity: 0.6;
        filter: grayscale(100%);
    }

    .campaign-info {
        display: none;
    }

    .info-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 15px;
    }

    .info-label {
        min-width: 100px;
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 1rem;
    }
}



/* Wall Header */
.wall-header {
    padding: 0 5%;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wall-header p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    /* Matched to others */
    line-height: 1.6;
}

.wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    height: 80vh;
    /* Visible window */
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.wall-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Wall Items Reduced Height */
.wall-item {
    width: 100%;
    height: 450px;
    /* Made Vertical */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    filter: grayscale(1) brightness(0.8);
    transition: all 0.3s;
}

.wall-item:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.02);
}

/* Offset columns for parallax feel */
.col-2 {
    margin-top: -100px;
}


/* Top Creators Section */
.top-creators {
    padding: 100px 5%;
    background: #000;
    text-align: center;
    min-height: 100vh;
    /* Full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tc-header {
    margin-bottom: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


/* Controls Container */
.tc-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 20;
    /* Ensure clickable */
}

/* Platform Toggle (Insta/YT) */
.platform-toggle {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    gap: 0;
    /* Remove gap for pill look */
}

.p-btn {
    background: transparent;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    /* Dimmed inactive text */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 21;
    /* Clickable */
}

.p-btn.active {
    background: #fff;
    /* White Active */
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
    /* Reduced gap */
}

.c-tag {
    background: transparent;
    padding: 6px 14px;
    /* Reduced Size */
    border-radius: 50px;
    color: #fff !important;
    /* Bright white text for dark bg */
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* More visible border */
    font-size: 0.8rem;
    /* Reduced Text */
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 22;
}

.c-tag:hover {
    border-color: #fff;
    /* Bright white border */
    color: #fff !important;
    /* Bright white text */
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    /* Glow to make it pop */
}

.c-tag.active {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}


/* Creator Gallery Grid override */
.creator-gallery {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    overflow-x: auto;
    width: 100%;
    cursor: grab;
    scroll-behavior: smooth;
}

.creator-gallery:active {
    cursor: grabbing;
}

.creator-card {
    height: 350px;
    min-width: 280px;
    /* Force width */
    flex-shrink: 0;
    /* Prevent shrinking */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-right: 0;
    background: #111;
    border-bottom: 4px solid var(--card-accent, #00c6ff);
    transition: border-color 0.3s ease;
    user-select: none;
    /* Prevent selection while dragging */
}

.creator-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.creator-card:hover .creator-img {
    transform: scale(1.05);
}

.creator-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.action-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--card-accent, #00c6ff);
    /* Dynamic Accent */
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

/* Manifesto */
/* Manifesto Padding Reduced */
/* Manifesto Padding (Left Aligned with Label) */
.manifesto-section {
    min-height: 100vh;
    padding: 100px 5%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    margin-bottom: -21px;
}

.manifesto-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    gap: 60px;
    align-items: flex-start;
}

.manifesto-label {
    flex: 0 0 100px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #cacaca;
    /* Faded */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 10px;
    margin: 0;
    font-weight: 500;
}

.manifesto-content {
    flex: 1;
    margin-bottom: 40px;
    /* Added bottom spacing */
}

.scrolling-text {
    font-family: var(--font-head);
    font-size: 3.5rem !important;
    /* Larger for full page impact */
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    /* Left align */
    color: #cacaca;
    /* Very Dim Grey initially */
    opacity: 1;
    /* Fully visible, just dark */
    margin: 0;
}

.scrolling-text .word {
    transition: color 0.1s;
    /* Smooth individual word transition handled by GSAP mostly */
}

.scrolling-text .word:hover {
    color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
    .manifesto-section {
        min-height: 80vh;
        /* Reduced height for mobile */
        padding: 80px 5%;
        /* Equal vertical padding */
    }

    .wall-header {
        padding: 0 0%;
        text-align: center;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wall-header p {
        max-width: 600px;
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        /* Matched to others */
        line-height: 1.6;
        text-align: left;
    }

    .manifesto-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 100px;
        /* Increased gap */
    }

    .manifesto-label {
        flex: unset;
        width: 100%;
        padding-top: 0;
        margin-bottom: 4px;
        font-size: 0.75rem;
        text-align: center;
        /* Center on mobile */
    }

    .manifesto-content {
        width: 100%;
        margin-bottom: 60px;
    }

    .scrolling-text {
        font-size: 1.5rem !important;
        /* Smaller for mobile */
        line-height: 1.3;
        text-align: center;
        /* Center text on mobile */
    }
}

/* Services List */
/* Services List Reduced */
.services-list {
    position: relative;
    padding: 100px 5%;
    /* Reduced from 100px */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    min-height: 100vh;
    /* Full Height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -80px;
    /* Move section up slightly */
    background: #000;
    /* Ensure background */
    color: #fff;
    /* Ensure text color */
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.service-row {
    display: flex;
    flex-direction: column;
    /* Changed to column to stack detail */
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: padding 0.3s, background 0.3s;
    opacity: 1;
    transform: none;
    overflow: hidden;
    /* Hide dropdown content */
}

/* Container for the visible top part */
.sr-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Active State (Hover) */
.service-row:hover {
    padding-left: 30px;
    background: #181818;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Normal faded white */
}

/* Dropdown Detail Section */
.service-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    will-change: max-height, opacity;
    padding-left: 60px;
    margin-top: 0;
    /* Simplified Smooth-Elastic Transition */
    /* Slower, more deliberate transition */
    transition: max-height 1.5s cubic-bezier(0.2, 1, 0.3, 1),
        opacity 1s ease-out 0.3s,
        margin-top 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-detail p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    /* Fade in text too */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        opacity 0.6s ease 0.1s;
}

/* Dropdown Active State */
.service-row:hover .service-detail {
    max-height: 300px;
    /* Reduced from 500px to match content better & slow down visual speed */
    /* Increased to fit image */
    opacity: 1;
    margin-top: 10px;
    /* Reduced gap */
    pointer-events: auto;
}

.service-row:hover .service-detail p {
    transform: translateY(0);
    opacity: 1;
}

/* Detail Content Layout */
.sd-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    /* Push items apart */
}

/* Reorder for Image Right, Content Left */
.sd-content p {
    order: 1;
    /* Content First */
    flex: 1;
    /* Take up remaining space */
}

.sd-content .detail-img {
    order: 2;
    /* Image Second */
    margin-right: 50px;
    /* Add some spacing from the edge if needed, or stick to right */
}

.detail-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); */
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Image Entry Animation */
    transform: scale(0.9) translateY(10px);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover .detail-img {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.sr-num {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    width: 60px;
    font-weight: 700;
    transition: all 0.3s ease;
}



.sr-title {
    flex-grow: 1;
    font-family: var(--font-head);
    font-size: 1.8rem;
    /* Reduced from 2.2rem */
    color: rgba(255, 255, 255, 0.7);
    /* text-transform: uppercase; */
    transition: all 0.3s ease;
}

.service-row:hover .sr-title {
    /* color: #f5c542; Removed color change */
    /* text-shadow: 0 0 15px rgba(245, 197, 66, 0.3); */
    transform: translateX(10px);
}

.sr-icon {
    font-size: 2rem;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    color: #555;
}

.service-row:hover .sr-icon {
    transform: rotate(-45deg) scale(1.2);
    /* color: #f5c542; Removed color change */
}

.service-img-preview {
    display: none !important;
    /* Disabled old hover preview */
}

/* orphaned properties from deleted block */
/*
z-index: 9999;
background-size: cover;
background-position: center;
border-radius: 10px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

/* Hype Grid */
.hype-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
    padding: 50px 5% 50px 5%;
    min-height: auto;
    /* Full Height */
    align-content: center;
}

/* Creator Wall (Ensure Full Height) */
.creator-wall {
    min-height: 100vh;
    padding: 100px 0;
    /* Full edge to edge (no side padding) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--accent-2);
    /* Assuming based on index.html usage near hype-grid or just bg-color */
    background: transparent;
    /* Keep safe */
}

.grid-card {
    background: #111;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gc-1 {
    grid-row: 1 / 3;
}

.gc-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-2);
    color: #fff;
}

.gc-2 h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    text-align: center;
    line-height: 0.9;
}

.gc-3 {
    grid-column: 2;
}


.brands h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 50px;
    opacity: 0.5;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    opacity: 0.6;
}

.brand-item {
    font-family: var(--font-head);
    font-size: 2rem;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.brand-item:hover {
    background: #cacaca;
    color: #000;
    transform: translateY(-5px);
}

/* Footer */
footer {
    padding: 80px 5% 30px 5%;
    background: #111;
    border-top: 1px solid #222;
    color: #cacaca;
}

.footer-cta {
    text-align: center;
    margin-bottom: 80px;
}

.footer-cta h2 {
    font-family: var(--font-head);
    font-size: 6vw;
    line-height: 0.9;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.footer-btn {
    padding: 20px 60px;
    font-size: 1.5rem;
    font-family: var(--font-head);
    background: var(--accent-2);
    border: none;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.footer-btn:hover {
    transform: scale(1.1);
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    /* border-bottom: 1px solid #222; */
    padding-bottom: 60px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 8px;
    /* Reduced gap */
    color: rgba(255, 255, 255, 0.7) !important;
    letter-spacing: 1px;
}

.f-logo {
    margin-bottom: 8px;
    /* Reduced gap */
    display: inline-block;
}

.footer-logo-img {
    height: 35px;
    /* Good visible size for footer */
    width: auto;
    display: block;
}

.f-desc {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-2);
}

.address {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

/* Socials List style */
.f-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-socials a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
    /* transition: all 0.3s; REMOVED for instant click */
}

.f-socials a span {
    display: none;
    /* Hide Arrow */
}

.f-socials a:hover {
    padding-left: 10px;
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    padding-top: 20px;
}

.fb-right a {
    color: #666;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.fb-right a:hover {
    color: #fff;
}

/* Sticker Badge */
.sticker-badge {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    animation: rotateSticker 10s linear infinite;
    mix-blend-mode: color-dodge;
}

.rotate-text text {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
}

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

@media (max-width: 768px) {

    /* ALL SECTIONS - Equal Top & Bottom Spacing (80px) */
    .manifesto-section,
    .success-stories,
    .services-list,
    .hype-grid,
    .bi-toggle-section,
    .impact-statement,
    .creator-wall,
    .process-scroll,
    .top-creators,
    footer {
        padding: 80px 5% !important;
        margin: 0 !important;
    }

    .visual-card-glass {
        padding: 17px;
    }

    @keyframes mobile-brand-scroll {
        0% {
            transform: translateX(0);
        }

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

    @keyframes mobile-brand-scroll-rev {
        0% {
            transform: translateX(-25%);
        }

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

    .bg-track {
        display: flex;
        gap: 0;
        flex-wrap: nowrap;
        /* Force row */
        width: max-content;
        animation: mobile-brand-scroll 20s linear infinite;
        /* Force Loop */
        will-change: transform;
    }

    .bg-track.reverse {
        animation: mobile-brand-scroll-rev 20s linear infinite;
    }

    .marquee-strip {
        position: absolute !important;
        top: 95vh !important;
        bottom: auto !important;
        left: 50% !important;
        width: 250% !important;
        padding: 12px 0;
        overflow: hidden;
        z-index: 100;
        transform: translate(-50%, -50%);
        /* Base centering */
    }

    .marquee-strip.cross-1 {
        transform: translate(-50%, -50%) rotate(5deg) !important;
        transform-origin: center;
    }

    .marquee-strip.cross-2 {
        transform: translate(-50%, -50%) rotate(-5deg) !important;
        transform-origin: center;
    }

    .marquee-strip .track {
        animation: marq 180s linear infinite;
        /* Ensure animation runs on mobile */
    }


    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        overflow: hidden;
    }

    .hero-bg-media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: none;
    }

    .hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 80px 20px 0;
        width: 100%;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 12vw !important;
        line-height: 1.2;
        /* Increased line height */
        white-space: normal;
        margin-bottom: 25px;
        /* Increased margin */
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        /* Slightly larger */
        max-width: 90%;
        line-height: 1.6;
        /* Better readability */
        margin-bottom: 30px;
    }

    /* Hide separator on mobile */
    .hero-separator-marquee {
        display: none;
    }

    /* .hero-content styles moved to main mobile media query at line 5800 */

    .stat-card {
        position: relative !important;
        /* Removed transform: none to allow GSAP animations */
        margin: -24px !important;
        left: auto !important;
        top: auto !important;
        width: 45% !important;
        max-width: 170px !important;
        display: inline-flex !important;
        flex-shrink: 0 !important;
        padding: 12px 8px !important;
    }

    .stat-num {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
    }

    /* Stat Cards Container - Mobile */
    /* Stat Cards Container - Mobile */
    .stat-cards-container {
        position: absolute;
        bottom: 5%;
        left: 0;
        right: 0;
        display: flex !important;
        flex-direction: row !important;
        /* ALWAYS HORIZONTAL */
        flex-wrap: nowrap !important;
        /* NO WRAPPING */
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
        transform: translateY(-20px);
        /* Moved up 20px */
    }


    /* Update dynamic image cycle in HTML instead if inline styles are used, 
       but if any CSS rules target it specifically: */

    /* Impact Text */
    .impact-text {
        font-size: 15vw;
        /* Larger on mobile to fill width */
    }

    /* Manifesto */
    .scrolling-text {
        font-size: 2.5rem;
    }

    /* Services */
    .sr-main {
        align-items: flex-start;
        /* Start align for number and title */
    }

    .sr-title {
        font-size: 1.5rem;
        padding-top: 0;
        /* Reset padding */
    }

    .sr-num {
        font-size: 1.3rem;
        /* Increased from 0.8rem */
        width: 45px;
        /* Increased from 30px */
        padding-top: 3px;
        /* Push number down to align with text */
    }

    /* Hype Grid */
    /* Hype Grid - Mobile Formatting */
    .hype-grid {
        display: flex;
        /* Switch to flex for easier stacking control */
        flex-direction: column;
        gap: 20px;
        padding: 80px 5%;
    }

    .gc-1,
    .gc-3 {
        width: 100%;
        height: 300px;
        /* Standard height for images */
        grid-column: auto;
        /* Reset desktop props */
        grid-row: auto;
    }

    .gc-2 {
        width: 100%;
        order: -1;
        /* Move Header to top */
        padding: 40px;
        min-height: 200px;
        /* Ensure visible size */
        margin-top: 60px;
    }

    .gc-2 h2 {
        font-size: 3rem;
        /* Keep it punchy */
    }

    /* Creator Wall - Stacked */
    /* Creator Wall - Creative Horizontal Marquee */
    .wall-grid {
        display: flex;
        grid-template-columns: none;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        height: 600px;
        /* Increased height */
        width: 100vw;
        /* Full Viewport Width */
        margin-left: -5%;
        /* Counteract parent padding */
        position: relative;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        /* Improve touch scroll smooth */
        /* Fade Mask */
        mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    }

    .wall-col {
        margin-top: 0 !important;
        min-width: 250px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        scroll-snap-align: center;
        /* Center on scroll */
    }

    /* Column 2 (Middle) is Centered/High, Others Low */
    .wall-col:nth-child(even) {
        transform: none;
        /* Reset */
        margin-top: -40px;
        /* Push up slightly relative to stream */
    }

    .wall-col:nth-child(odd) {
        transform: none;
        /* Reset */
        margin-top: 40px;
        /* Push down */
    }

    .wall-item {
        height: 220px;
        /* Smaller items for mobile */
    }

    /* Process Scroll - Vertical Stack */
    .process-scroll {
        height: auto;
        /* Remove scroll distance, just stack */
    }

    .sticky-wrapper {
        position: relative;
        height: auto;
        flex-direction: column;
        top: 0;
        padding: 80px 5%;
    }

    .process-visuals {
        width: 100%;
        height: 400px;
        margin-top: 50px;
    }

    .huge-process-text {
        font-size: 12vw;
        text-align: center;
    }

    /* Success Stories - Scale Down */
    .success-stories {
        height: auto;
        min-height: auto;
        padding: 60px 5% !important;
        /* Consistent top and bottom padding */
        margin-bottom: 0;
    }

    .bg-text-layer {
        font-size: 15vw;
    }

    .story-deck {
        transform: scale(0.7);
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left !important;
        /* Changed from center */
    }

    .f-desc,
    .footer-col ul li a,
    .address,
    .f-socials a {
        justify-content: flex-start !important;
        /* Changed from center */
    }

    .f-logo {
        margin-bottom: 20px;
        display: flex;
        justify-content: flex-start !important;
        /* Changed from center */
    }

    .footer-logo-img {
        height: 30px;
        /* Slightly smaller on mobile */
    }

    .f-desc {
        margin: 0;
        /* Removed auto centering */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: left !important;
        /* Changed from center */
    }

    .fb-right a {
        margin: 0 10px;
    }

    .sticker-badge {
        width: 80px;
        height: 80px;
        bottom: 20px;
        left: 20px;
    }

    .sticker-badge text {
        font-size: 10px;
    }
}

/* Why Choose TrendSparx (Bento Grid) */
.why-choose {
    padding: 100px 5%;
    background: #000;
    color: var(--text-color);
    margin-bottom: 50px;
}

.wc-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.wc-header {
    flex: 1;
    min-width: 250px;
}

.wc-sticky {
    position: sticky;
    top: 150px;
}

.wc-icon-box {
    width: 60px;
    height: 60px;
    background: #00c6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.3);
}

.wc-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: lowercase;
}

.wc-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 20px;
}

.wc-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.wc-card:hover {
    transform: translateY(-5px);
    border-color: #00c6ff;
}

.c-wide {
    grid-column: span 2;
}

.c-tall {
    grid-row: span 2;
}

.wc-content h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.wc-content p {
    font-size: 0.9rem;
    color: #888;
    max-width: 80%;
    line-height: 1.5;
    z-index: 2;
    position: relative;
}

/* 3D Visuals (CSS Only Creativity) */
.wc-visual {
    position: absolute;
    bottom: 20px;
    right: 20px;
    pointer-events: none;
}

/* 1. Coins */
.visual-coins {
    bottom: 30px;
    right: 30px;
}

.coin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0e0e0, #999);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), inset 2px 2px 2px rgba(255, 255, 255, 0.5);
    position: absolute;
}

.c1 {
    transform: translate(-40px, 0);
    z-index: 1;
}

.c2 {
    transform: translate(10px, -10px);
    background: linear-gradient(135deg, #fff, #ccc);
    z-index: 2;
}

/* 2. Map */
.visual-map {
    color: #00c6ff;
}

.map-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 10px 20px rgba(0, 198, 255, 0.3));
}

.map-icon.small {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    right: 40px;
    opacity: 0.5;
}

/* 3. Toggle */
.toggle-switch {
    width: 80px;
    height: 40px;
    background: #333;
    border-radius: 50px;
    padding: 5px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.toggle-knob {
    width: 30px;
    height: 30px;
    background: #00c6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    transform: translateX(40px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 4. Glass Box */
.glass-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 198, 255, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.2);
    transform: rotate(15deg);
}

/* 5. Badge */
.visual-badge {
    color: #e37f1c;
    /* Orange */
}

.badge-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 10px 20px rgba(227, 127, 28, 0.3));
}

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

    .wc-grid {
        display: flex;
        flex-direction: column;
    }

    .c-wide,
    .c-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Studio Section (Ported) */
.studio-section {
    padding: 100px 5% 100px 5%;
    background: #000;
    position: relative;
    z-index: 1;
    /* Reduced to prevent overlap with sections below */
    overflow: hidden;
    min-height: 100vh;
    /* Force full height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center content to prevent margin-auto jumps */
    width: 100%;
    /* Explicit width */
    will-change: transform;
    /* Hint browser to optimize layout */
    margin-top: 0px;
    margin-bottom: 0;
}

.studio-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    /* Changed from 100vw to prevent overflow */
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.1) 0%, transparent 60%);
    /* Adjusted to blue */
    z-index: 0;
    pointer-events: none;
}

/* --- Impact Section Redesign (Matches Nakula) --- */

.container-impact {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    padding: 0 5%;
}

/* Simplified Impact Header */
.impact-header-simple {
    text-align: left;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.impact-header-simple .section-desc {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Header Row: Title & Desc */
.impact-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 40px;
}

.impact-title-wrapper {
    flex: 2;
    min-width: 300px;
}

.impact-main-title {
    font-family: var(--font-head);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.85;
    text-transform: uppercase;
    color: #e0e0e0;
    margin: 0;
}

.impact-main-title .line {
    display: block;
}

.impact-desc-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
    min-width: 300px;
}

.impact-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
    text-align: right;
}

/* Stats Grid */
.impact-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.impact-stat-item {
    flex: 1;
    min-width: 200px;
}

.is-num-wrap {
    font-family: var(--font-head);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.is-plus {
    color: #ff4d30;
    /* Orange/Red accent */
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-left: 5px;
    transform: translateY(-2px);
    font-weight: 400;
}

.is-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 200px;
}

.is-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .impact-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .impact-desc-wrapper {
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .impact-description {
        text-align: left;
    }

    .is-divider {
        display: none;
    }

    .impact-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .impact-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Ensure container works if not defined globally in a conflicting way */
.studio-section .container {
    max-width: 1400px;
    width: 100%;
    /* Force width to fill flex parent */
    margin: 0;
    /* Remove auto margin as parent aligns items */
}

/* --- New Premium Services Bento Section --- */
.services-bento {
    padding: 100px 5%;
    background: #000;
    color: #fff;
    position: relative;
    z-index: 5;
}

.sb-header {
    margin-bottom: 60px;
    padding-left: 20px;
}

.sb-title {
    font-family: var(--font-head);
    font-size: 2.9rem;
    /* Large impact */
    line-height: 1;
    margin-bottom: 6px;
    text-transform: lowercase;
    /* Modern clean look */
    letter-spacing: -2px;
}

.sb-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.sb-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    /* Center wider */
    gap: 30px;
    height: 600px;
}

.sb-card {
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

/* Dark Cards (Side) */
.dark-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-card:hover {
    background: #111;
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sb-content-top h3,
.sb-content-center h3 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: lowercase;
}

.sb-content-bottom p,
.sb-content-center p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 90%;
}

/* Featured Image Card (Center) */
.image-card {
    background-size: cover;
    background-position: center;
    justify-content: flex-end;
    /* Text at bottom */
    position: relative;
    border: none;
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 50, 255, 0.9), transparent 60%);
    /* Blue tint */
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.image-card:hover .overlay-gradient {
    opacity: 1;
    /* Darker/Richer on hover */
}

.image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 80, 255, 0.3);
    /* Blue glow */
}

.sb-content-center {
    position: relative;
    z-index: 2;
}

.sb-content-center h3 {
    font-size: 3.5rem;
    /* Larger */
    margin-bottom: 15px;
}

.sb-content-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Badge */
.sb-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #aaa;
    backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .sb-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .sb-card {
        min-height: 400px;
    }
}

/* 7. CREATOR STREAM SECTION - Horizontal Flow with Dynamic Gradient */
.creator-stream-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    /* Full Height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0px;
    /* Move section up slightly */
    margin-bottom: 0px;
    /* Reduce bottom gap */
}

/* .creator-stream-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(227, 127, 28, 0.4) 50%,
            transparent);
    pointer-events: none;
    z-index: 1;
} */

/* .creator-stream-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(227, 127, 28, 0.4) 50%,
            transparent);
    pointer-events: none;
    z-index: 1;
} */

.creator-stream-container {
    padding: 50px 0;
    overflow-x: auto;
    width: 100%;
    /* Hide Scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    /* Enable grab cursor */
    /* scroll-snap-type: x mandatory; */
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    /* Allow both horizontal and vertical scroll */
    overscroll-behavior-x: contain;
}

.creator-stream-container.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    user-select: none;
    /* Prevent text selection while dragging */
}

.creator-stream-container::-webkit-scrollbar {
    display: none;
}

.creator-stream-track {
    display: flex;
    gap: 40px;
    padding: 0 5%;
    /* Padding for first/last item visibility */
    width: max-content;
}

.stream-card {
    width: 300px;
    height: 450px;
    background: #111;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Faded White Border */
    /* scroll-snap-align: center; */
    /* box-shadow: 0 10px 40px rgba(229, 128, 25, 0.1); */
    /* Removed Orange Glow */
    box-shadow: none;
    /* Re-enable touch scrolling */
    pointer-events: auto;
    user-select: auto;
}

/* Re-enable pointer events for card children */
.stream-card *,
.stream-card img,
.sc-image {
    pointer-events: auto !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
}


.sc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
    /* B&W by default */
}

/* Hover Effect: Expansion & Color */
.stream-card:hover {
    width: 350px;
    /* Expands width */
    transform: scale(1.05);
    /* Slight pop */
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.stream-card:hover .sc-image {
    transform: scale(1.1);
    filter: grayscale(0%);
    /* Full Color on Hover */
}

.sc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.stream-card:hover .sc-info {
    transform: translateY(0);
}

.sc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 5;
}

.stream-card:hover .sc-badge {
    background: #ff0000;
    /* YouTube Red on Hover */
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Text Styling */
.sc-info h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.sc-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc-social-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

.stream-card:hover .sc-social-icon {
    opacity: 1;
    transform: scale(1);

}

/* 6. TOGGLE SECTION - Geometric Grid with Layered Depth */
.bi-toggle-section {
    padding: 100px 5%;
    background: #000000;
    color: #fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* .bi-toggle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(227, 127, 28, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 127, 28, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
} */

.bi-toggle-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(227, 127, 28, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bi-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #181818;
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgb(92 92 92 / 35%);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Header Toggle */
.bi-header {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.toggle-pill-bg {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    position: relative;
    backdrop-filter: blur(10px);
}

.t-btn {
    background: transparent;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 2;
    transition: color 0.4s ease, transform 0.2s ease;
    /* Smooth color and transform */
    font-family: var(--font-body);
}

.t-btn:hover {
    transform: scale(1.02);
    /* Subtle hover effect */
}

.t-btn.active {
    color: #000 !important;
}

.pill-glider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    /* Adjusted to prevent right overflow */
    /* JS or CSS adjustment needed for precise width */
    background: #fff;
    border-radius: 40px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Smooth elastic bounce */
}

/* Brands Active - Blue Gradient */
/* Brands Active - Orange No Glow */
.t-btn:first-child.active~.pill-glider {
    transform: translateX(0);
    width: 140px;
    background: #fff;
    box-shadow: none;
}

/* Influencers Active - Match Orange */
.t-btn:nth-child(2).active~.pill-glider {
    transform: translateX(98%);
    width: 170px;
    background: #fff;
    box-shadow: none;
}

/* Text color white for both when active */
.t-btn:nth-child(2).active {
    color: #fff;
}


/* Content Layout */
.bi-content-wrapper {
    position: relative;
    min-height: 400px;
}

.bi-tab-content {
    display: none;
    /* Hidden by default */
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bi-tab-content.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    animation: smoothFadeIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Text Side */
.bi-text {
    z-index: 2;
}

/* --- NEW LAYOUT STYLES --- */

/* --- Tag Row & Pills (Light Mode) --- */
/* .tag-row Moved to Visual Header Section */

.bi-tag,
.bi-tag-ghost {
    padding: 10px 20px;
    /* Fuller pills */
    border-radius: 30px;
    /* More rounded */
    font-size: 0.85rem;
    /* Readable */
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* Active Tag: White Bg, Black Text (High Contrast on Dark) */
/* Active Tag: White Bg, Black Text (High Contrast on Dark) */
.bi-tag {
    background: #fff;
    color: #000;
    border: none;
    /* box-shadow: none; */
}

/* Inactive Tag: Glassy Dark Mode Style */
.bi-tag-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.bi-tag-ghost:hover {
    border-color: #fff;
    /* Bright white border */
    color: #fff;
    /* Bright white text */
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    /* Glow to make it pop */
}




/* --- Main Container (Dark Card) --- */
/* --- Main Container (Dark Card - Compact) --- */
.bi-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #181818;
    /* Slightly lither than main bg */
    border-radius: 40px;
    padding: 60px;
    /* Added card styling */
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Left Side Text (Compact) */
.bi-text h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    /* Reduce size */
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: capitalize;
}

.bi-text p {
    font-size: 0.95rem;
    /* Reduce size */
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 95%;
}

/* Navigation Tabs (Aligned Right above Card) */
/* Navigation Tabs (Single Row, Compact) */
.tag-row {
    display: flex;
    gap: 6px;
    /* Tight gap */
    justify-content: flex-end;
    /* Align Right */
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: nowrap;
    /* Force 1 Row */
    overflow-x: auto;
    /* Scroll if tiny screen */
    padding-bottom: 5px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    height: 50px;
}

.tag-row::-webkit-scrollbar {
    display: none;
}

.bi-tag,
.bi-tag-ghost {
    width: auto;
    text-align: center;
    padding: 6px 12px;
    /* Even smaller */
    font-size: 0.75rem;
    flex-shrink: 0;
    border-radius: 30px;
}

/* Active Tag Glow */
.bi-tag {
    /* box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); */
    /* Strong Glow */
}

/* CTA Button */
.bi-cta {
    background: white;
    /* Orange Brand Color */
    color: #000 !important;
    border: none;
    padding: 12px 30px;
    /* Reduced padding */
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    /* Removed glow */
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    margin-top: 10px;
    width: fit-content;
    /* Ensure compact width */
    max-width: 100%;
    white-space: normal;
    /* Allow wrapping */
    line-height: 1.2;
}

.bi-cta:hover {
    background: #fff;
    /* Updated hover color */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 128, 25, 0.2);
    /* Reduced hover glow */
}

/* Bi-Visual Column */
.bi-visual {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    /* Stack Tabs then Card */
}

.visual-card-wrapper {
    background: #151515;
    /* Dark Card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    flex: 1;
    /* Fill remaining height */
    display: flex;
    flex-direction: column;
    overflow: visible !important;
    /* Allow icon to pop */
    position: relative;
    /* Global Anchor for Icon */
}

.visual-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    background: transparent;
}

/* Visual Card Text */
.vb-content {
    padding: 40px;
    /* Comfortable padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    height: 100%;
}

.vc-title {
    font-family: var(--font-head);
    font-size: 1.7rem;
    /* Restore impact */
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    /* White Text */
    line-height: 1.1;
}

.vc-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    /* Light Grey Text */
    line-height: 1.6;
    margin-bottom: 30px;
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #cacaca;
    /* Faded gray instead of bright white */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    /* Reduced glow */
    font-size: 1.4rem;
    color: #111;
    margin-top: 30px;
    /* Space from text */
    opacity: 0.7;
    /* Additional fade */
    /* position: absolute; Removed for Web */
    /* top: -17px; */
    /* right: -15px; */
    z-index: 20;
    /* Ensure on top */
}

.vb-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 15px 15px 15px 0;
    /* Reduced frame padding */
}

.vb-image img {
    border-radius: 24px;
    /* Inner radius for image - matching vc-img */
}

.vc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.5s;
    border-radius: 24px;
    /* Manual radius since overflow is visible */
}

/* .visual-card-wrapper:hover .vc-img {
    transform: scale(1.05);
} */

/* Tablet / Small Laptop Styles (769px - 1200px) */
/* Tablet / Small Laptop Styles (769px - 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .bi-container {
        padding: 60px 40px;
    }

    .bi-tab-content {
        grid-template-columns: 1fr;
        /* Stack main content */
        gap: 50px;
        text-align: center;
    }

    .bi-text {
        margin: 0 auto 40px auto;
        max-width: 800px;
    }

    .tag-row {
        justify-content: center;
        /* Center tabs */
    }

    /* Restore Wide Card Layout for Tablet (since full width now) */
    .visual-body {
        grid-template-columns: 1fr 1fr;
    }

    .vb-content {
        padding: 40px;
        order: unset;
        text-align: left;
    }

    .vb-image {
        height: 100%;
        min-height: 350px;
        padding: 20px 20px 20px 0;
        order: unset;
    }

    .bi-visual {
        min-height: 450px;
    }
}

/* Responsive Overrides (Fail-Safe Fix) */
@media (max-width: 768px) {
    .bi-toggle-section {
        padding: 80px 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        overflow: visible !important;
        /* Allow content to flow */
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        box-sizing: border-box;
    }

    .container-impact {
        max-width: 1600px;
        margin: 0 auto;
        width: 100%;
        color: #fff;
        padding: 0 0%;
    }

    .impact-stat-item {
        flex: 1;
        min-width: 132px;
    }

    .bi-content-wrapper {
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        display: block !important;
    }

    .bi-tab-content {
        grid-template-columns: 1fr;
        gap: 0px;
        width: 100%;
        margin: 0;
        display: none;
        /* Hide inactive by default on mobile explicitly */
        /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    }

    .bi-tab-content.active {
        display: flex !important;
        flex-direction: column;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        /* Kill transitions */
        z-index: 10 !important;
        /* Ensure on top */
        position: relative !important;
    }

    /* FORCE CHILDREN VISIBILITY TO OVERRIDE JS ANIMATIONS */
    .bi-tab-content.active>* {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        display: block !important;
        color: #fff !important;
        /* Ensure content is white */
    }



    /* Toggle Switch Mobile Fix */
    .bi-header {
        margin-bottom: 25px;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
        /* Absolutely edge to edge */
    }

    .toggle-pill-bg {
        width: 100%;
        max-width: 100%;
        /* Flexible width */
        display: flex;
        justify-content: space-between;
        padding: 4px;
        background: rgba(255, 255, 255, 0.08);
        /* slightly clearer bg */
        margin-left: 20px;
        margin-right: 20px;
    }

    .pill-glider {
        display: block !important;
        /* Enable glider */
        width: 50% !important;
        /* Force percentage width */
        background: #fff !important;
        border-radius: 40px;
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        transform: none !important;
        /* Reset transform to handle via specific rules if needed, or rely on desktop but override widths */
        transition: all 0.3s ease;
    }

    .t-btn {
        padding: 10px 0;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
        border-radius: 30px;
        width: 50%;
        z-index: 2;
        /* Ensure text is above glider */
        color: rgba(255, 255, 255, 0.7);
    }

    .t-btn.active {
        background: transparent !important;
        /* Remove mobile bg */
        color: #000 !important;
        /* Text color on white glider */
        box-shadow: none;
    }

    /* Mobile Glider Positions */
    .t-btn:first-child.active~.pill-glider {
        transform: translateX(0) !important;
        width: 50% !important;
    }

    .t-btn:nth-child(2).active~.pill-glider {
        transform: translateX(100%) !important;
        width: 50% !important;
    }

    /* End Toggle Fix */

    .bi-container {
        padding: 60px 20px !important;
        /* Vertical and horizontal padding */
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-top-left-radius: 40px !important;
        border-top-right-radius: 40px !important;
        border-bottom-left-radius: 40px !important;
        border-bottom-right-radius: 40px !important;
        border-left: 1px solid rgb(92 92 92 / 35%) !important;
        border-right: 1px solid rgb(92 92 92 / 35%) !important;
        border-top: none !important;
        border-bottom: none !important;
        box-sizing: border-box;
    }

    .bi-text {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        padding: 0;
        /* Absolutely edge to edge */
    }

    .bi-text h2 {
        font-size: 1.4rem;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.25;
        margin-bottom: 15px;
        hyphens: auto;
    }

    .bi-text p {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 25px;
        /* Space between desc and CTA button */
        text-align: left;
        padding-left: 20px;
    }

    .bi-cta {
        width: 263px;
        /* Changed from 100% */
        min-width: 150px;
        /* Min width for touch */
        box-sizing: border-box;
        white-space: normal;
        /* Wrap text */
        padding: 12px 10px;
        font-size: 0.9rem;
        line-height: 1.3;
        display: block;
        height: auto;
        margin: 0;
        margin-left: 20px;
    }

    /* Strict scope for tag scrolling */
    .bi-visual {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        /* Changed from hidden */
        height: auto !important;
        display: block !important;
        margin-top: 25px;
        /* Gap above visual section */
        padding: 0;
        /* Absolutely edge to edge */
    }

    .bi-container .tag-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* Force 1 line */
        overflow-x: auto;
        /* Enable Scroll */
        width: 100%;
        max-width: 100%;
        /* Strict containment */
        padding: 5px 5px 15px 5px;
        /* Slight top padding */
        /* Side padding for scroll */
        gap: 12px;
        /* Increased gap between buttons */
        justify-content: flex-start;
        /* Start from left */
        margin-bottom: 10px;
        /* Gap below buttons */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Clean look */
        height: auto !important;
        min-height: 50px;
        /* Ensure height */
    }

    .tag-row::-webkit-scrollbar {
        display: none;
    }

    /* Mobile Tag Sizing */
    .bi-tag,
    .bi-tag-ghost {
        font-size: 0.75rem;
        height: 28.5px;
        /* Fixed height as requested */
        padding: 0 16px;
        /* Horizontal padding only */
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        /* Fit content */
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 50px;
        margin-left: 20px;
    }

    .visual-card-wrapper {
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .vb-content {
        padding: 20px;
        text-align: left;
        order: 1;
    }

    .vb-image {
        padding: 0 15px 15px 15px;
        height: 310px;
        /* Increased height as requested */
        order: 2;
    }

    .floating-icon {
        position: absolute;
        top: 13px;
        right: 19px;
        margin-top: 0;
    }

    .vc-title {
        font-size: 1.4rem;
    }
}

/* --- Service Carousel Section (Center Focus) --- */
.service-carousel {
    padding: 100px 0;
    min-height: 969px;
    /* Taller for vertical space */
    background: #000;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: grab;
    /* Indicate draggable */
    padding-bottom: 0px;
}

.service-carousel:active {
    cursor: grabbing;
}

/* Header Layout - Matched to Screenshot */
.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 80px;
    /* More breathing room */
    padding: 0 5%;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    /* Safety for mobile */
}

.sc-header-left {
    flex: 2;
    /* Take up more space */
    min-width: 300px;
}

.sc-title {
    font-family: var(--font-head);
    font-size: 7.5rem;
    /* Massive, Bold */
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: lowercase;
    line-height: 0.85;
    /* Tight stacking */
    letter-spacing: -2px;
}

.sc-subtitle {
    font-size: 1rem;
    color: #888;
    /* Muted grey */
    font-family: var(--font-body);
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.sc-desc {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    /* Constrained width */
    font-size: 0.9rem;
    color: #999;
    /* Grey text */
    line-height: 1.6;
    text-align: left;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .sc-header {
        flex-direction: column;
    }

    .impact-header-simple {
        text-align: left;
        margin-bottom: 7px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sc-desc {
        padding-left: 0;
        margin-top: 30px;
    }

    .sc-title {
        font-size: 4.5rem;
    }
}

/* Track & Container */
.carousel-container {
    width: 100%;
    height: 500px;
    /* Fixed height for animation stage */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.carousel-track-active {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    /* Fallback */
    justify-content: center;
    align-items: center;
}

/* Card Styles */
.service-slide-card {
    position: absolute;
    width: 300px;
    /* Side Card Width Reduced */
    height: 360px;
    /* Side Card Height Reduced */
    /* Side Card Height */
    border-radius: 40px;
    background-color: #0f0f0f;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
    border: none;
    overflow: hidden;
    will-change: transform;
    /* Optimize only essential changes */
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.service-slide-card .slide-icon {
    display: none;
    /* Removed as requested */
}

.no-transition {
    transition: none !important;
}

/* Image Backend for Robustness */
.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

/* Internal Content Wrapper */
.card-content-box {
    padding: 30px;
    background: #111;
    width: 100%;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth Box Transition */
    position: relative;
    z-index: 2;
}

.service-slide-card h3 {
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: lowercase;
    opacity: 0.8;
    position: absolute;
    /* Always Absolute for smooth movement */
    left: 30px;
    z-index: 5;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    /* Text Slide */
}

.service-slide-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    position: absolute;
    bottom: 30px;
    left: 30px;
}

/* STATES for Animation Logic */

/* Center (Active) - 395.31 x 560 */
/* Center (Active) - Scaled Down */
.service-slide-card.pose-center {
    width: 350px;
    height: 420px;
    /* Reduced height */
    top: calc(50% - 210px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    filter: grayscale(0%);
}

/* Active Styling - Matched to Reference */
/* Active Styling - Matched to Creator Card Look */
.service-slide-card.pose-center .card-content-box {
    background: transparent;
    /* Removed Fade */
    padding: 30px;
    padding-top: 229px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    /* Force height */
}

/* Big Title Animation */
.service-slide-card.pose-center h3 {
    opacity: 1;
    font-size: 2.2rem;
    /* Large */
    font-weight: 400;
    line-height: 0.9;
    position: relative;
    /* Fixed alignment */
    bottom: auto;
    left: auto;
    margin-bottom: 15px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Description Text */
.service-slide-card.pose-center p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 14px;
    /* Space for icon */
    max-width: 90%;
    opacity: 1;
}

/* Icon Active */
.service-slide-card.pose-center .slide-icon {
    background: #fff;
    color: #007bff;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    bottom: 30px;
}

/* Side Cards (Left/Right) - Solid Dark "Card" Look */
.service-slide-card.pose-right,
.service-slide-card.pose-left {
    width: 345px;
    height: 500px;
    z-index: 10;
    /* Removed solid bg to show image */
    background: transparent !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Ensure background image is hidden on sides */
/* Ensure background image is visible underneath with subtle tint */
.service-slide-card.pose-right::before,
.service-slide-card.pose-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Semi-transparent */
    z-index: 2;

}

/* Side Card Content Box - Full Height Layout */
/* Side Card Content Box - Transparent for Image Visibility */
.service-slide-card.pose-right .card-content-box,
.service-slide-card.pose-left .card-content-box {
    background: transparent;
    /* Removed Fade */
    padding: 30px;
    display: block;
    /* Normal block flow */
    height: 100%;
    z-index: 5;

}

/* Side Card Title - Top Aligned */
.service-slide-card.pose-right h3,
.service-slide-card.pose-left h3 {
    opacity: 1;
    font-size: 1.9rem;
    font-weight: 300;
    color: #fff;
    text-shadow: none;
    /* Reset Absolute positioning from Center */
    position: absolute;
    top: 40px;
    bottom: auto;
    left: 30px;
    line-height: 1.1;
    width: 50%;
    height: 50%;
}

/* Side Card Description - Bottom Aligned */
.service-slide-card.pose-right p,
.service-slide-card.pose-left p {
    opacity: 0.6;
    color: #888;
    position: absolute;
    bottom: 100px;
    left: 30px;
    width: 80%;
    transform: none;
}

/* Side Card Icon - Bottom Left */
.service-slide-card.pose-right .slide-icon,
.service-slide-card.pose-left .slide-icon {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle */
    color: #888;
    border: none;
    bottom: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    position: absolute;
    left: 30px;
}

/* Side Cards (Left/Right) - 344.76 x 500 */
/* We simulate this by hiding the background image or darkening it thoroughly */
.service-slide-card.pose-right,
.service-slide-card.pose-left {
    width: 300px;
    height: 360px;
    z-index: 10;
    background-color: transparent !important;
    background-blend-mode: normal !important;
    opacity: 1 !important;
    filter: grayscale(100%);
}

.service-slide-card.pose-right .card-content-box,
.service-slide-card.pose-left .card-content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    /* Removed Fade */
}

/* Positioning */
.service-slide-card.pose-right {
    left: calc(50% + 365px);
    /* Adjusted for new widths: 175 + 40 + 150 = 365 */
    transform: translateX(-50%);
    /* Removed scale logic */
    opacity: 1;
    /* Keep visible like a real card */
    /* filter: grayscale(1) brightness(0.5); Removed to allow true color */
}

.service-slide-card.pose-left {
    left: calc(50% - 365px);
    /* Exact 40px gap */
    transform: translateX(-50%);
    /* Removed scale logic */
    opacity: 1;
    /* filter: grayscale(1) brightness(0.5); Removed to allow true color */
}

/* Text on side cards should be simple */
.service-slide-card.pose-right h3,
.service-slide-card.pose-left h3 {
    margin-bottom: auto;
    /* Push content up if needed, or keep bottom */
    position: absolute;
    top: 302px;
    left: 30px;
}

.service-slide-card.pose-right p,
.service-slide-card.pose-left p,
.service-slide-card.pose-right .slide-icon,
.service-slide-card.pose-left .slide-icon {
    /* Hide extra details on side cards to match ref */
    opacity: 0.6;
}

.service-slide-card.pose-right p,
.service-slide-card.pose-left p {
    position: absolute;
    bottom: 26px;
    left: 30px;
    width: 80%;
}

.service-slide-card.pose-right .slide-icon,
.service-slide-card.pose-left .slide-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

/* Hidden (Offscreen) - Adjusted to stay within frame */
.service-slide-card.pose-hidden-right {
    left: calc(50% + 500px);
    /* Teleport point close to frame */
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    z-index: 5;
}

.service-slide-card.pose-hidden-left {
    left: calc(50% - 500px);
    /* Vanish point close to frame, not deep left */
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    z-index: 5;
}

@media (max-width: 768px) {
    .service-slide-card {
        width: 85vw;
        height: 550px;
    }

    .service-slide-card.pose-left,
    .service-slide-card.pose-right {
        opacity: 0;
        /* Hide side cards on mobile */
    }
}

/* --- Service Carousel Navigation --- */
.carousel-nav {
    position: absolute;
    top: calc(50% + 440px);
    /* Adjusted for 680px card height (340px half + 50px gap) */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 15px;
    /* Reduced gap */
    z-index: 100;
}

.nav-text {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: 500;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.nav-btn svg {
    pointer-events: none;
}

/* --- MOBILE RESPONSIVENESS (< 768px) --- */
@media (max-width: 768px) {

    /* 1. Navbar: Compact & Easy Access */
    .navbar {
        top: 20px;
        /* Closer to top */
        padding: 0 20px;
    }

    /* Hero Section - Full Screen Video */
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-bg-media {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        clip-path: none !important;
    }

    .hero-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-bg-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .hero-content {
        padding: 100px 20px 0 !important;
    }

    .bi-text h2 {
        font-size: 2rem;
        text-align: left;
        padding-left: 20px;
    }

    .navbar {
        top: 0 !important;
        padding: 10px 5% !important;
        /* Adjust padding if needed */
    }

    .nav-glass {
        flex-direction: row;
        /* FORCE ROW */
        height: auto;
        padding: 12px 25px;
        width: 100%;
        max-width: 100%;
        gap: 0;
        /* Remove gap */
        border-radius: 50px;
        background: rgba(10, 10, 10, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.15);
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        justify-content: flex-start;
        margin-left: 0;
        padding-left: 0;
        flex-grow: 0;
        /* Don't expand */
        padding-right: 43px;
    }

    .bi-container {
        max-width: 1200px;
        margin: 20px auto;
        /* Standard margin */
        background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
        border-radius: 40px;
        padding: 17px;
        border: 1px solid rgb(92 92 92 / 35%);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
        position: relative;
        overflow: hidden;
    }

    .manifesto-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
        /* Reset manual margin */
    }

    .wall-header {
        margin-left: 0;
        margin-top: 0;
        /* Reset manual margin */
        text-align: left;
        /* Force left align */
        align-items: flex-start;
        /* Force flex items left */
    }

    .logo {
        margin: 0;
        text-align: center;
        margin-bottom: 4px;
        /* Small separation */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .service-slide-card.pose-center .card-content-box {
        /* background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent); */
        padding: 30px;
        padding-top: 372px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 220px;
    }

    .logo-img {
        height: 24px;
    }

    /* --- IMPACT / STUDIO SECTION PHONE FIX --- */
    .studio-section {
        padding-top: 180px;
        /* Clear the navbar drastically */
        padding-bottom: 50px;
        height: auto;
        /* Allow auto height */
        min-height: auto;
    }

    .studio-header {
        font-size: 18vw;
        /* Big but fits */
        margin-bottom: 30px;
    }

    .studio-glass-card {
        padding: 30px 20px;
        /* Reduce internal padding */
        gap: 30px;
    }

    .studio-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .s-div {
        display: none;
        /* Hide vertical lines on mobile */
    }

    .s-stat {
        min-width: 40%;
        /* Ensure 2 items per row max */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .s-num {
        font-size: 2.5rem;
        /* Smaller numbers */
    }

    .s-label {
        font-size: 0.7rem;
        /* Readable small text */
        letter-spacing: 1px;
    }

    .studio-text p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .stat-card::before {
        /* Shine effect */
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: skewX(-25deg);
        animation: shine 6s infinite;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 9px;
        /* Tighter gap for small screens */
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .nav-item {
        font-size: 30px;
        /* Fixed small size for consistency */
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9);
    }


    /* 2. Hero Section - Centered & Clean */
    /* 2. Hero Section - Funky Cyber Split */
    .hero-bg-media {
        width: 100%;
        height: 100%;
        /* Funky top-heavy cut */
        clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 75%);
        opacity: 0.6;
        /* Fade effect for the cut */
        -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    }

    .hero-separator-marquee {
        top: auto;
        bottom: 0;
        /* Moved to bottom */
        left: -10%;
        right: -10%;
        width: 120%;
        height: 40px;
        transform: rotate(-8deg);
        writing-mode: horizontal-tb;
        flex-direction: row;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        border-left: none;
        border-right: none;
        display: flex;
    }

    .sep-track {
        flex-direction: row;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
        width: 100%;
        animation: sep-marq-mobile 4s linear infinite;
    }

    @keyframes sep-marq-mobile {
        from {
            transform: translateX(0);
        }

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

    .hero-content {
        width: 100% !important;
        /* Override desktop width */
        margin-left: 0 !important;
        /* Override desktop margin */
        margin-right: 0 !important;
        text-align: center !important;
        /* Override desktop text-align */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* Override desktop align-items */
        justify-content: center !important;
        /* Center vertically */
        padding-top: 80px !important;
        /* Push down from navbar */
        padding-bottom: 0 !important;
        /* Remove padding to center content */
        padding-left: 5% !important;
        padding-right: 5% !important;
        position: relative;
        z-index: 10;
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 10vw !important;
        /* Larger title */
        margin-top: 0 !important;
        /* Remove top margin */
        margin-bottom: 27px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        /* Override desktop right align */
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
        width: 100% !important;
    }

    .hero-tag {
        font-size: 0.7rem !important;
        padding: 6px 12px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        /* Center the tag */
    }

    /* Stat Cards Container - Floating at Bottom */
    .stat-cards-container {
        position: absolute;
        bottom: 80px;
        /* Adjusted for better visual center */
        left: 0;
        transform: none;
        width: 100%;
        /* Ensure full width availability */
        display: flex;
        justify-content: center;
        /* Center items within container */
        align-items: center;
        /* Center items verticaly in container */
        flex-direction: row;
        gap: 20px;
        pointer-events: none;
        z-index: 15;
    }

    .stat-card {
        width: auto;
        min-width: 120px;
        /* Reduced to fit better */
        padding: 15px 20px;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 0 auto !important;
        background: rgba(20, 20, 20, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        /* Animation will be added per card */
    }

    /* Smooth \u0026 Sensitive Floating Animation for Stat 1 */
    .stat-1 {
        animation: strongFloat1 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
        animation-delay: 0s;
        will-change: transform;
    }

    /* Smooth \u0026 Sensitive Floating Animation for Stat 2 */
    .stat-2 {
        animation: strongFloat2 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
        animation-delay: 0.5s;
        will-change: transform;
    }


    /* Make title span full width so cards sit below */
    .hero-title {
        width: 100%;
        flex: 0 0 0%;
        order: -1;
    }

    .hero-tag {
        width: fit-content;
        flex: 0 0 auto;
        order: -1;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-num {
        font-size: 2rem;
        /* Larger like desktop */
        margin-bottom: 5px;
        font-weight: 800;
        background: linear-gradient(180deg, #fff, #888);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stat-label {
        font-size: 0.7rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
    }

    /* Smooth \u0026 Sensitive Floating Animation 1 - Enhanced */
    @keyframes strongFloat1 {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        25% {
            transform: translateY(-10px) rotate(0deg);
        }

        50% {
            transform: translateY(-15px) rotate(0deg);
        }

        75% {
            transform: translateY(-10px) rotate(0deg);
        }
    }

    /* Smooth \u0026 Sensitive Floating Animation 2 - Enhanced with Opposite Motion */
    @keyframes strongFloat2 {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        25% {
            transform: translateY(-12px) rotate(0deg);
        }

        50% {
            transform: translateY(-18px) rotate(0deg);
        }

        75% {
            transform: translateY(-12px) rotate(0deg);
        }
    }

    /* --- Global Mobile Section Optimization --- */
    /* Fit one section per screen (approx) and scale down content */

    section:not(.hero):not(.bi-toggle-section):not(.creator-stream-section) {
        min-height: auto;
        /* Allow content to define height but fit snugly */
        padding: 60px 5% 40px !important;
        /* Balanced vertical padding */
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center content vertically */
        box-sizing: border-box;
        margin-top: 0;
        /* Reset margins */
        margin-bottom: 0;
    }

    /* Titles Optimization */
    .bg-header h3,
    .service-title,
    .section-title,
    .process-title,
    .impact-title {
        font-size: 2rem !important;
        /* Standardize title size */
        margin-bottom: 20px !important;
        /* Tighter spacing */
        text-align: center;
    }

    .service-title {
        margin-top: 50px;
        text-align: left;
    }

    /* Subtitles Optimization */
    .service-subtitle,
    .section-desc {
        font-size: 0.9rem !important;
        /* Smaller subtitle */
        line-height: 1.5;
        margin-bottom: 20px !important;
        text-align: left;
        max-width: 90%;
        /* margin-left: auto; */
        margin-right: auto;
    }

    /* 3. Brand Giants - Compact */
    .brand-giants {
        padding: 30px 0 !important;
        /* Full width marquee, minimal vertical padding */
        min-height: auto;
    }

    .brand-logo {
        height: 25px !important;
        /* Smaller logos */
        margin: 0 20px !important;
    }

    /* 4. Successful Campaigns - Compact */
    .success-stories {
        height: auto;
        padding: 40px 5% !important;
    }

    .success-deck-container {
        height: 600px !important;
        /* Increased from 400px to show full height cards */
    }

    .story-deck {
        height: 600px !important;
    }

    .story-card {
        height: 550px !important;
        /* Make cards taller */
        width: 350px !important;
        /* Slightly wider too */
        left: 50% !important;
        transform: translateX(-50%);
        /* Default center */
        transition: all 0.5s ease;
    }


    /* Restore Side Cards Fanning */
    .sc-1 {
        transform: translateX(-50%) translateX(-50px) rotate(-8deg) scale(0.9) !important;
        z-index: 1;
        opacity: 0.8 !important;
    }

    .sc-2 {
        z-index: 10;
        /* Center card on top */
        transform: translateX(-50%) scale(1) !important;
        opacity: 1 !important;
    }

    .sc-3 {
        transform: translateX(-50%) translateX(50px) rotate(8deg) scale(0.9) !important;
        z-index: 1;
        opacity: 0.8 !important;
    }

    /* 5. Process Section - Compact */
    .process-section {
        padding: 40px 5% !important;
    }

    .process-steps {
        gap: 20px !important;
    }

    .process-step {
        padding: 20px !important;
        min-height: auto !important;
    }

    .step-number {
        font-size: 2rem !important;
    }

    .step-title {
        font-size: 1.2rem !important;
    }

    /* 6. Impact Voices - Compact */
    .impact-voices {
        padding: 40px 5% !important;
    }

    .quote-text {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
    }

    /* 7. Creator Wall - Compact Grid */
    .creator-wall {
        padding: 40px 5% !important;
    }

    .wall-grid {
        gap: 10px !important;
    }

    /* Force exact animations for mobile to match Desktop */
    .bg-row.row-1 .bg-track {
        animation: bg-marq 12s linear infinite !important;
    }

    .bg-row.row-2 .bg-track {
        animation: bg-marq-rev 12s linear infinite !important;
    }

    /* Disable the grid styling if it leaks */
    .brand-grid {
        display: none;
    }

    /* 4. Service Carousel - Optimized Mobile */
    .service-carousel {
        min-height: auto !important;
        height: 700px;
        /* Balanced height for new card size */
        padding: 0;
    }

    /* Fixed Mobile Card - Smaller Height, Wider Width */
    .service-slide-card {
        width: 70vw !important;
        /* Increased from 55vw */
        height: 400px !important;
        /* Reduced from 450px */
        left: 50% !important;
        top: 50% !important;
        /* Centered vertically */
        margin-top: -200px;
        /* Half of 400px */
        opacity: 0.4 !important;
        /* Dim side cards */
        filter: none !important;
        display: block !important;
        /* Show all cards */
        transform-origin: center center;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        /* Smooth ease */
    }

    /* Active Center Card */
    .service-slide-card.pose-center {
        z-index: 100 !important;
        opacity: 1 !important;
        transform: translateX(-50%) scale(1) !important;
    }

    /* Side Cards Positioning (Adjusted for wider cards) */
    .service-slide-card.pose-left {
        z-index: 90 !important;
        transform: translateX(-145%) scale(0.85) !important;
        /* Tighter overlap */
    }

    .service-slide-card.pose-right {
        z-index: 90 !important;
        transform: translateX(45%) scale(0.85) !important;
        /* Tighter overlap */
    }

    .service-slide-card.pose-hidden-left {
        transform: translateX(-200%) scale(0.7) !important;
        opacity: 0 !important;
    }

    .service-slide-card.pose-hidden-right {
        transform: translateX(100%) scale(0.7) !important;
        opacity: 0 !important;
    }

    /* Ensure content inside looks good */
    .service-slide-card .card-content-box {
        bottom: 0;
        top: auto;
        height: auto;
        min-height: 50%;
        /* Increased to ensure text fits in shorter card */
        padding: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    }

    /* Force Image Full Fill - Contain to show full image */
    .service-slide-card .card-bg-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        background-color: #000;
        /* Letterboxing background */
    }

    .service-slide-card h3 {
        font-size: 1.5rem;
        /* Smaller title */
        margin-bottom: 5px;
    }

    .carousel-nav {
        width: 100%;
        top: auto;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 101;
    }

    /* 5. Creator Stream (Roster) - Mobile Adjustment */
    .creator-stream-container {
        /* scroll-snap-type: x mandatory !important; */
        -webkit-overflow-scrolling: touch !important;
        scroll-padding: 0 20px;
        will-change: scroll-position;
        touch-action: manipulation !important;
        /* Allow both vertical and horizontal scroll */
        overflow-x: auto !important;
    }

    .creator-stream-track {
        gap: 15px;
        padding: 0 20px;
        will-change: transform;
    }

    .stream-card {
        width: 75vw;
        min-width: 280px;
        height: 380px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        /* Thin Faded Border */
        border-radius: 40px;
        /* Match desktop radius */
        background: #000;
        /* Ensure solid background */
        /* box-shadow: 0 8px 32px rgba(229, 128, 25, 0.15); */
        box-shadow: none;

        /* Orange Glow Mobile */
        /* Orange Glow Mobile */
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        will-change: transform;
        transform: translateZ(0);
        /* Force GPU */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden;
        /* Ensure border-radius clips content */
    }

    .stream-card:active {
        transform: scale(0.98) translateZ(0);
    }

    .sc-info h3 {
        font-size: 1.5rem;
        /* Smaller title */
    }

    .tc-header {
        flex-direction: column;
        align-items: flex-start;
        /* Left align */
        text-align: left;
        gap: 20px;
        padding-left: 20px;
        padding-right: 0;
    }

    .creator-stream-section {
        padding: 80px 0 !important;
        /* Equal top/bottom gap, no sides */
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        overflow: hidden;
        box-sizing: border-box;
    }





    /* Center Services Header */
    /* Services Header adjustment */
    .services-header {
        flex-direction: column;
        text-align: left;
        /* Left align text */
        padding: 0 0px;
        /* Add padding for breathing room if needed, or rely on section padding */
    }

    .header-left,
    .header-right {
        max-width: 100%;
        margin: 0;
        /* Remove centering */
    }

    .tc-controls {
        width: 100%;
        flex-direction: column;
        gap: 27px;
        align-items: flex-start;
        /* Ensure left alignment */
        margin-left: 0;
    }

    .category-filters {
        display: flex;
        /* Restored flex */
        flex-wrap: nowrap !important;
        /* Force single line */
        overflow-x: auto;
        /* padding-bottom: px; */
        width: 100%;
        justify-content: flex-start;
        /* Ensure left padding works with scroll */
        padding-left: 0 !important;
        /* No left padding */
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .c-tag {
        flex-shrink: 0;
    }

    /* 6. Success Stories */
    .story-card {
        width: 90vw;
        height: 380px;
        /* Increased from 250px for better visibility */
    }

    .sc-content p {
        font-size: 1.1rem;
    }

    /* 7. Footer */
    .footer-cta {
        text-align: left !important;
    }

    .footer-cta h2 {
        font-size: 10vw;
    }

    .footer-btn {
        width: 100%;
        padding: 20px;
    }

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

    .socials {
        justify-content: center;
    }
}

/* Contact Form Section */
/* Contact Form Section (Unique Minimalist) */
.contact-form-section {
    padding: 150px 5%;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
    min-height: 100vh;
    /* Full screen height */
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 900px;
    background: transparent;
    /* No card look */
    padding: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.form-header {
    text-align: center;
    margin-bottom: 80px;
}

.form-header h2 {
    font-family: var(--font-head);
    font-size: 2.9rem;
    /* Massive Header */
    color: #fff;
    margin-bottom: 6px;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.form-header h2 .highlight {
    color: var(--accent-2);
    font-style: italic;
    /* Distinctive touch */
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 0;
    position: relative;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    /* Full width lines */
    transition: border-color 0.4s ease;
}

.form-group:hover,
.form-group:focus-within {
    /* border-bottom-color: #fff; */
    /* Light up line on hover/focus */
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 30px 0;
    /* Spacious */
    font-family: var(--font-head);
    /* Use heading font for inputs */
    font-size: 2rem;
    /* Large inputs */
    color: #fff;
    border-bottom: none;
    /* Handled by group */
    border-radius: 0;
    transition: none;
    /* Removed default transition */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: none;
    /* Removed glow */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.4s ease, transform 0.4s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.1);
    transform: translateX(20px);
    /* Subtle shift */
}

.form-group textarea {
    min-height: 150px;
    resize: none;
}

.submit-btn {
    background: transparent;
    color: var(--accent-2);
    border: 1px solid var(--accent-2);
    padding: 30px 60px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 100px;
    cursor: pointer;
    width: auto;
    /* Not full width */
    margin: 60px auto 0;
    margin-top: 80px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.submit-btn:hover {
    background: var(--accent-2);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(227, 127, 28, 0.4);
    /* Glow */
}

.submit-btn span {
    font-size: 1.8rem;
    line-height: 0;
    transition: transform 0.3s;
}

.submit-btn:hover span {
    transform: translate(5px, -5px);
}

#form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-success {
    color: #28a745;
}

.status-error {
    color: #dc3545;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    /* Remove Indentation on Mobile */
    .service-detail {

        /* Mobile: Image Left, Content Right, Top Aligned */
        .sd-content {
            flex-direction: row;
            gap: 20px;
            align-items: flex-start;
            /* Align text to top of image */
        }

        .detail-img {
            width: 90px;
            /* Portrait ratio logic */
            height: 120px;
            order: -1;
            /* Moves Image to Start (Left) */
            margin-right: 0;
            /* Reset desktop margin */
            object-fit: cover;
        }

        .sd-content p {
            font-size: 0.9rem;
            flex: 1;
            order: 1;
            /* Moves Content to End (Right) */
            text-align: left;
            line-height: 1.5;
            margin-top: -5px;
            /* Slight optical adjustment */
        }
    }
}

/* --- Impact Voices (Unique Testimonials) --- */
/* --- Impact Voices (Testimonials Redesign) --- */
.impact-voices {
    padding: 100px 5%;
    background: #000;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    /* Full Height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.iv-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
    /* Hide excess cards */
}

/* 3 Cards Visble Logic - Strict */
.iv-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    justify-content: flex-start;
    /* transition: transform 0.5s ease; REMOVED to allow GSAP infinite loop */
}

.iv-card {
    /* (100% width - 2 gaps of 30px) / 3 cards */
    flex: 0 0 calc((100% - 60px) / 3);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

/* Large Side Arrows */
.iv-arrow.big-arrow {
    position: absolute;
    top: 40%;
    /* Moved up slightly */
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.iv-arrow.big-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.iv-arrow.prev {
    left: 20px;
    top: 320px;
}

.iv-arrow.next {
    right: 20px;
    top: 320px;
}

/* Fade Effects */
.iv-fade-left,
.iv-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.iv-fade-left {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.iv-fade-right {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.iv-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Hide old controls if any logic remains */
.iv-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* RESTORED STYLES */
.iv-title {
    font-family: var(--font-head);
    font-size: 2.9rem;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -1px;
}

.iv-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.iv-card:hover .iv-avatar {
    transform: scale(1.1);
    border-color: #fff;
}

.iv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iv-name {
    font-size: 1.1rem;
    font-family: var(--font-head);
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: 500;
}

.iv-testimonial {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    max-width: 350px;
    margin: 0 auto;
}

/* END RESTORED STYLES */

/* Mobile */
@media (max-width: 1024px) {
    .iv-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px;
        width: max-content !important;
        /* Allow track to expand for JS slider */
        overflow: visible !important;
        /* JS handles visibility via transform */
        padding-bottom: 0;
        /* scroll-snap-type: x mandatory; Removed for JS control */
    }

    .iv-grid::-webkit-scrollbar {
        display: none;
    }

    .iv-container {
        overflow: hidden !important;
        /* Mask for the slider */
        display: block !important;
        width: 100%;
        position: relative;
    }

    .iv-card {
        padding: 0 30px;
        /* Balanced padding */
        width: 90vw !important;
        min-width: 90vw !important;
        /* Width with peek */
        max-width: 90vw;
        flex-shrink: 0;
        display: flex !important;
        flex-direction: column;
        align-items: center;

        visibility: visible !important;
        opacity: 1 !important;
        box-sizing: border-box;
    }

    .iv-testimonial {
        font-size: 1.1rem;
        max-width: 100%;
        color: rgba(255, 255, 255, 1) !important;
        /* Brighter */
        text-align: center;
        /* Back to center for better balance? User asked for center now "centre me aaye" */
        padding: 0;
        margin: 0 auto;
    }

    .iv-name {
        color: #fff !important;
    }

    .iv-controls {
        display: none;
        /* Hide arrows on mobile */
    }
}

/* Success Stories New - Top Creators Style */
.success-stories-new {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-header-new {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 5%;
}

.success-title-new {
    font-family: var(--font-head);
    font-size: 2.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    line-height: 1.1;
    text-transform: lowercase;
}

.success-stream-container {
    padding: 50px 0;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.success-stream-container.active {
    cursor: grabbing;
    user-select: none;
}

.success-stream-container::-webkit-scrollbar {
    display: none;
}

.success-stream-track {
    display: flex;
    gap: 40px;
    padding: 0 5% 0 5%;
    /* Left-aligned start */
    width: max-content;
    justify-content: flex-start;
}

.success-card {
    width: 350px;
    height: 450px;
    background: #111;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(229, 128, 25, 0.3);
    scroll-snap-align: center;
    box-shadow: 0 10px 40px rgba(229, 128, 25, 0.1);
}

.success-video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.success-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.success-card:hover .success-video {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.success-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
    text-align: left;
}

.success-card:hover .success-info {
    opacity: 0;
}

.success-badge {
    display: inline-block;
    background: rgba(229, 128, 25, 0.2);
    border: 1px solid rgba(229, 128, 25, 0.5);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgb(229, 128, 25);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-info h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.success-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.success-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.success-link-icon:hover {
    background: rgb(229, 128, 25);
    transform: scale(1.1);
}

/* Stats Panel - Hidden by default, shown on hover */
.success-stats {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 180px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    border-left: 2px solid rgba(229, 128, 25, 0.3);
    text-align: left;
}

.success-card:hover .success-stats {
    opacity: 1;
    transform: translateX(0);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    align-items: flex-start;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-value {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
}

.stat-value.highlight {
    color: rgb(229, 128, 25);
    font-size: 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .success-title-new {
        font-size: 2rem;
    }

    .iv-arrow.prev {
        left: 10px;
        top: 74%;
        transform: translateY(-50%);
        z-index: 100 !important;

    }

    .iv-arrow.next {
        right: 10px;
        top: 74%;
        transform: translateY(-50%);
        z-index: 100 !important;

    }

    .success-stream-track {
        gap: 15px;
        padding: 0 20px;
    }

    .success-card {
        width: 75vw;
        min-width: 280px;
        height: 380px;
    }

    .success-stats {
        width: 100%;
        height: auto;
        flex-direction: row;
        /* Force Row */
        flex-wrap: nowrap;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 10px;
        gap: 10px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-x: auto;
        /* Allow scrolling if needed, or just fit */
        background: rgba(0, 0, 0, 0.9);
        justify-content: space-between;
        align-items: center;
        transform: translateY(0);
        /* Ensure visible if hover logic is tricky on mobile */
        opacity: 1;
        /* Make visible by default on mobile if needed, or keep hover */
    }

    .stat-item {
        align-items: center;
        /* Center align items in row */
        text-align: center;
        flex: 1;
        /* Distribute space */
        min-width: auto;
    }

    .stat-value {
        font-size: 0.9rem;
        /* Smaller font to fit */
    }

    .stat-value.highlight {
        font-size: 1.3rem;
    }
}

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

    /* Disable heavy GPU effects */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Restore background opacity where glass was used */
    .stat-card,
    .campaign-detail-card,
    .nav-glass,
    .iv-card,
    .success-stats,
    .bi-container {
        background: rgba(15, 15, 15, 0. 5) !important;
        border: 1px solid rgb(92 92 92 / 35%) !important;
        width: 267px;
        border-radius: 15px;

    }

    .nav-glass {
        height: 76px;
    }

    /* Ensure native scrolling feels correct */
    html,
    body {
        scroll-behavior: auto !important;
        /* Disable smooth scroll chaining */
        -webkit-overflow-scrolling: touch;
    }
}

/* Desktop Adjustment for Marquee Position */
@media (min-width: 901px) {
    .marquee-strip {
        transform: translateY(-55px);
        position: relative;
        z-index: 20;
    }
}

/* Absolute overflow prevention for mobile */
@media (max-width: 768px) {

    html,
    body {
        width: 100vw;
        overflow-x: hidden !important;
        position: relative;
    }
}