/* =========================================
   1. PREMIUM VARIABLES & RESET (LIGHT THEME)
   ========================================= */
:root {
    /* Changed to Light Colors */
    --bg: #ffffff;
    --surface: #f4f4f4;
    --primary: #ff2a6d; /* Cyber Pink - Kept for Brand Identity */
    --secondary: #00acc1; /* Cyber Blue - Slightly Darker for contrast on white */
    --accent: #222222;
    --text-main: #111111;
    --text-muted: #555555;
    
    --font-head: 'Clash Display', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --glass: rgba(0, 0, 0, 0.05);
    --border: rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 40px rgba(0,0,0,0.08); /* New shadow for light theme depth */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

/* PRELOADER STYLES */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}
.loader-content-box {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.loader-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
    animation: logoPulse 2s infinite ease-in-out;
}
.loader-ring {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}
.loader-ring::before {
    content: "";
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 3s linear infinite reverse;
}
.loading-text {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #111, var(--primary), #111);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes logoPulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes textShine { to { background-position: 200% center; } }


/* ANIMATED BACKGROUND CANVAS */
#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Behind everything */
    pointer-events: none; /* Let clicks pass through */
}

/* FILM GRAIN OVERLAY - Adjusted for White */
.film-grain {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9998;
    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='0.15'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: multiply; /* Better blending on white */
}

/* CUSTOM CURSOR (Desktop Only) - Inverted Colors */
@media (min-width: 769px) {
    body { cursor: none; }
    a, button { cursor: none; }
    input, textarea { cursor: text !important; }
    
    .cursor-dot, .cursor-outline {
        position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
        border-radius: 50%; z-index: 9999; pointer-events: none;
    }
    .cursor-dot { width: 8px; height: 8px; background: var(--primary); }
    .cursor-outline {
        width: 40px; height: 40px; border: 1px solid rgba(0, 0, 0, 0.5);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }
    body.hovering .cursor-outline {
        width: 60px; height: 60px; background: rgba(0, 0, 0, 0.05);
        border-color: var(--secondary);
    }
}

/* SCROLL BAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* =========================================
   2. NAVIGATION
   ========================================= */
nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 95%; max-width: 1200px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.85); /* Glass White */
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* NEW LOGO STYLES */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.logo-container:hover {
    transform: scale(1.02);
}
.logo-img {
    height: 60px; /* Slightly bigger */
    width: 60px;
    object-fit: cover;
    border-radius: 50%; /* Circular logo looks better */
    box-shadow: 0 4px 15px rgba(255, 42, 109, 0.2); /* Glow effect */
    border: 2px solid #fff;
}
.brand-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}
.brand-main {
    font-family: var(--font-head);
    font-weight: 800; /* Extra Bold */
    font-size: 1.8rem; /* Much bigger */
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1); /* Subtle 3D pop */
}
.brand-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 6px; /* Wider spacing */
    margin-top: 4px;
}

.nav-links { display: flex; gap: 15px; list-style: none; }
.nav-links li span { 
    color: var(--text-main); text-decoration: none; font-size: 0.8rem; 
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; cursor: pointer; font-weight: 600;
}
.nav-links li span:hover, .nav-links li span.active { color: var(--secondary); }

.cta-nav {
    background: linear-gradient(45deg, var(--primary), #ff0040);
    padding: 10px 25px; border-radius: 30px; color: #fff;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: 0.3s; box-shadow: 0 5px 15px rgba(255, 42, 109, 0.3); border:none; cursor: pointer;
}
.cta-nav:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 42, 109, 0.5); }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none; font-size: 1.5rem; color: #000; cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
    z-index: 1001; padding: 100px 40px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border); display: flex; flex-direction: column; gap: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    /* SCROLL FIX */
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu span {
    font-family: var(--font-head); font-size: 1.5rem; color: #000; cursor: pointer;
    text-transform: uppercase; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 15px;
}
.close-menu {
    position: absolute; top: 30px; right: 30px; font-size: 2rem; color: #000; cursor: pointer;
}

/* =========================================
   3. PAGE TRANSITIONS (SPA LOGIC)
   ========================================= */
.page-section {
    display: none;
    min-height: 100vh;
    padding-top: 120px;
    animation: fadeIn 0.8s ease forwards;
}
.page-section.active-page {
    display: block;
}
#home { padding-top: 0; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; overflow: hidden;
}
/* Gradient BG removed, Canvas takes over */
.hero-bg {
    display: none; 
}

.hero-content { width: 90%; max-width: 1200px; padding: 0 20px; }
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1; font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #111;
}
.glitch-text { position: relative; color: #111; }
/* Glitch effects for white background */
.glitch-text::before, .glitch-text::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.glitch-text::before {
    left: 2px; text-shadow: -1px 0 var(--primary); clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    background: transparent;
}
.glitch-text::after {
    left: -2px; text-shadow: -1px 0 var(--secondary); clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
    background: transparent;
}
@keyframes glitch-anim { 0% { clip: rect(10px, 9999px, 31px, 0); } 100% { clip: rect(80px, 9999px, 100px, 0); } }
@keyframes glitch-anim-2 { 0% { clip: rect(60px, 9999px, 90px, 0); } 100% { clip: rect(10px, 9999px, 40px, 0); } }

.hero-sub { font-size: clamp(0.9rem, 1.5vw, 1.2rem); color: var(--text-muted); margin: 20px 0 30px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 0.8rem; color: var(--text-muted); opacity: 0.7;
}
.mouse {
    width: 25px; height: 40px; border: 2px solid var(--text-main);
    border-radius: 20px; position: relative;
}
.wheel {
    width: 3px; height: 6px; background: var(--text-main); border-radius: 2px;
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}
@keyframes scroll { 0% { top: 8px; opacity: 1; } 100% { top: 25px; opacity: 0; } }

.stats-strip {
    display: flex; justify-content: space-around; padding: 60px 5%;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.02); flex-wrap: wrap; gap: 30px;
}
.stat-item { text-align: center; flex: 1 1 150px; }
.stat-num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-main); display: block; }
.stat-label { color: var(--secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* =========================================
   5. MARQUEES & ANIMATED WORK
   ========================================= */
.marquee-zone { position: relative; padding: 80px 0; overflow: hidden; background: rgba(255,255,255,0.8); }
.marquee-strip { position: absolute; left: -5%; width: 110%; padding: 15px 0; display: flex; white-space: nowrap; overflow: hidden; }

.marquee-artists { background: var(--primary); color: #fff; top: 20%; transform: rotate(-3deg); z-index: 2; box-shadow: 0 10px 30px rgba(255, 42, 109, 0.3); }
.marquee-artists .marquee-content { animation: slideLeft 25s linear infinite; }

.marquee-clients { background: var(--secondary); color: #fff; top: 50%; transform: rotate(3deg); z-index: 3; box-shadow: 0 10px 30px rgba(0, 172, 193, 0.3); }
.marquee-clients .marquee-content { animation: slideRight 35s linear infinite; }

.marquee-logos-zone { padding: 40px 0; background: rgba(0,0,0,0.03); margin-top: 50px; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-logos { display: flex; gap: 50px; animation: slideLeft 20s linear infinite; align-items: center; }

/* UPDATED: WORK MARQUEE */
.work-marquee-container {
    overflow: hidden; width: 100%; white-space: nowrap; margin-top: 40px; position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.work-marquee-content {
    display: flex; gap: 30px; 
    animation: slideWork 15s linear infinite; 
}
.work-marquee-content:hover {
    animation-play-state: paused;
}

.work-marquee-item {
    width: 350px; height: 220px; border-radius: 20px; overflow: hidden; position: relative;
    flex-shrink: 0; border: 1px solid var(--border); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    cursor: pointer; background: #fff; box-shadow: var(--card-shadow);
}

.work-marquee-item:hover { 
    transform: scale(1.1); 
    z-index: 10; 
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 42, 109, 0.2);
}

.work-marquee-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: 0.4s; }
.work-marquee-item:hover img { opacity: 1; }

.work-overlay-icon { 
    position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); 
    font-size: 4rem; color: #fff; opacity: 0; transition: 0.4s;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.work-marquee-item:hover .work-overlay-icon { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }

.platform-icon { font-size: 2.5rem; color: #555; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.platform-icon span { font-size: 1.2rem; font-family: var(--font-head); font-weight: bold; color: #333; }

.marquee-content { display: flex; gap: 50px; }
.marquee-content span { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 20px; }

@keyframes slideLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes slideRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes slideWork { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* =========================================
   6. SECTIONS & CARDS
   ========================================= */
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); text-align: center; margin: 30px 0; text-transform: uppercase; color: var(--text-main); }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 0.95rem; padding: 0 20px; font-weight: 500; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; padding: 0 5% 100px; }

.tilt-card {
    background: #fff;
    border: 1px solid var(--border); border-radius: 20px; padding: 30px; min-height: 300px; position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform 0.3s;
    box-shadow: var(--card-shadow);
}
@media (min-width: 769px) {
    .tilt-card { transform-style: preserve-3d; }
}
.tilt-card:hover { border-color: var(--primary); }

.card-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
.card-head { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 15px; color: #111; }
.card-desc { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

/* NEW STYLE FOR SERVICE LISTS */
.service-sub-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    padding: 0;
    font-weight: 500;
}
.service-sub-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.service-sub-list li i {
    color: var(--primary);
    margin-top: 4px; /* optical alignment */
    font-size: 0.8rem;
}

.highlight-section { padding: 60px 5%; border-bottom: 1px solid var(--border); }
.highlight-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.highlight-text { flex: 1; min-width: 300px; }
.highlight-visual { flex: 1; min-width: 300px; height: 300px; background: rgba(0,0,0,0.03); border-radius: 20px; display: flex; align-items: center; justify-content: center; position: relative; border: 1px solid var(--border); }
.big-icon { font-size: 6rem; color: rgba(0,0,0,0.1); }

.verified-partner-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #111;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.cta-section {
    text-align: center; padding: 80px 20px;
    background: radial-gradient(circle at center, rgba(5, 217, 232, 0.1), transparent 70%);
}
.big-cta-btn {
    display: inline-block;
    padding: 15px 40px; background: #000; color: #fff;
    font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
    text-transform: uppercase; border-radius: 50px; text-decoration: none;
    transition: 0.3s; position: relative; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.big-cta-btn:hover { background: var(--primary); color: #fff; }

/* Neon Button - White Theme Version */
.neon-btn {
    padding: 15px 30px;
    border: 1px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 700;
}
.neon-btn:hover { background: var(--primary); color: #fff; box-shadow: 0 5px 20px rgba(255, 42, 109, 0.4); }

/* =========================================
   7. PROFILE & CLIENT CARDS
   ========================================= */
.partners-container { padding: 0 5% 100px; }
.partners-category { font-family: var(--font-head); color: var(--primary); font-size: 1.5rem; margin: 40px 0 20px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.profile-card {
    background: #fff; border: 1px solid var(--border); border-radius: 15px; overflow: hidden;
    transition: 0.3s; cursor: pointer; box-shadow: var(--card-shadow);
}
.profile-img { width: 100%; height: 250px; object-fit: cover; background: #eee; filter: grayscale(100%); transition: 0.3s; }
.profile-card:hover .profile-img { filter: grayscale(0%); }
.profile-info { padding: 15px; text-align: center; }
.profile-name { font-family: var(--font-head); font-size: 1rem; color: #111; margin-bottom: 5px; font-weight: 700; }
.profile-role { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; padding: 0 5% 50px; }
.client-box {
    border: 1px solid var(--border); padding: 15px; text-align: center;
    border-radius: 10px; background: #fff;
    font-size: 0.85rem; color: #555; cursor: pointer; word-break: break-word;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: 0.2s;
    font-weight: 500;
}
.client-box:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* PLANS PAGE STYLE */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; padding: 0 5% 50px; }
.plan-card {
    background: #fff;
    border: 1px solid var(--border); border-radius: 20px; padding: 40px 25px;
    text-align: center; position: relative; transition: 0.3s;
    box-shadow: var(--card-shadow);
}
.plan-name { color: var(--secondary); font-family: var(--font-head); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 10px; }
.plan-price { font-size: 2.5rem; font-weight: 700; color: #111; font-family: var(--font-head); margin-bottom: 20px; }
.plan-features { list-style: none; color: #666; text-align: left; margin-bottom: 30px; font-size: 0.9rem; line-height: 2; font-weight: 500; }
.plan-features li i { color: var(--primary); margin-right: 10px; }

/* PROFILE DETAIL PAGE */
.profile-detail-container { max-width: 1000px; margin: 0 auto; padding: 0 5%; display: flex; gap: 40px; flex-wrap: wrap; }
.p-image-box { flex: 1; min-width: 280px; }
.p-image-box img { width: 100%; border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.p-info-box { flex: 2; min-width: 280px; }
.p-info-name { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 10px; line-height: 1.1; color: #111; }
.p-info-role { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-size: 1rem; font-weight: 600; }
.p-info-bio { color: #444; line-height: 1.6; margin-bottom: 30px; font-size: 1rem; }
.back-btn { background: #fff; border: 1px solid #111; color: #111; padding: 10px 25px; border-radius: 30px; cursor: pointer; transition: 0.3s; font-weight: 600; }
.back-btn:hover { background: #111; color: #fff; }

/* Latest Work Grid (Static Page) */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; padding: 0 5%; }
.work-card {
    border-radius: 15px; overflow: hidden; position: relative; aspect-ratio: 16/9;
    background: #eee; border: 1px solid var(--border); cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.work-card img { width: 100%; height: 100%; object-fit: cover; }
.play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 3rem; color: #fff; opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* NEW PAGES STYLES (AI, Production, Support) */
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; padding: 0 5% 50px;
}
.feature-card {
    background: #fff; padding: 30px; border-radius: 20px; border: 1px solid var(--border);
    text-align: center; transition: 0.3s; position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--secondary); box-shadow: var(--card-shadow); }
.feature-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; }
.content-pill:hover { border-color: #ccc; background: #fff; }

/* --- ADVANCED SUPPORT HUB STYLES --- */
.support-hub-container {
    max-width: 1100px; margin: 0 auto;
    background: #fff; border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    display: grid; grid-template-columns: 280px 1fr;
    min-height: 600px;
}

/* Sidebar */
.hub-sidebar {
    background: #f8f9fa;
    border-right: 1px solid #eee;
    padding: 30px 20px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.agent-card {
    display: flex; align-items: center; gap: 15px; margin-bottom: 40px;
    padding: 15px; background: #fff; border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid #eee;
}
.agent-avatar {
    width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
    border: 2px solid #25D366; padding: 2px;
}
.agent-info h4 { font-size: 0.95rem; margin: 0; color: #111; font-weight: 700; }
.agent-status { font-size: 0.75rem; color: #25D366; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; display: inline-block; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hub-nav-btn {
    display: flex; align-items: center; gap: 12px;
    padding: 15px; border-radius: 12px; cursor: pointer;
    color: #666; font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s ease; margin-bottom: 8px;
}
.hub-nav-btn:hover { background: rgba(0,0,0,0.03); color: #111; }
.hub-nav-btn.active { background: var(--primary); color: #fff; box-shadow: 0 5px 15px rgba(255, 42, 109, 0.3); }
.hub-nav-btn i { font-size: 1.1rem; }

.system-status { margin-top: auto; padding-top: 20px; border-top: 1px solid #eee; }
.status-item { display: flex; justify-content: space-between; font-size: 0.75rem; color: #888; margin-bottom: 8px; }
.status-val { color: #25D366; font-weight: 600; }

/* Main Content */
.hub-main { padding: 0; position: relative; background: #fff; display: flex; flex-direction: column; }
.hub-tab-content { display: none; height: 100%; flex-direction: column; animation: fadeIn 0.4s ease; }
.hub-tab-content.active { display: flex; }

/* Chat Area */
.hub-chat-area { flex: 1; padding: 30px; overflow-y: auto; background-image: radial-gradient(#eee 1px, transparent 1px); background-size: 20px 20px; }
.chat-msg-row { display: flex; margin-bottom: 20px; align-items: flex-end; }
.chat-msg-row.bot { justify-content: flex-start; }
.chat-msg-row.user { justify-content: flex-end; }

.msg-bubble {
    max-width: 70%; padding: 15px 20px; border-radius: 18px; font-size: 0.95rem; line-height: 1.5;
    position: relative; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.chat-msg-row.bot .msg-bubble { background: #fff; color: #333; border-bottom-left-radius: 4px; border: 1px solid #eee; }
.chat-msg-row.user .msg-bubble { background: #111; color: #fff; border-bottom-right-radius: 4px; }

.chat-time { font-size: 0.7rem; color: #aaa; margin-top: 5px; margin-left: 5px; }

/* Quick Chips */
.quick-actions { padding: 15px 30px; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.action-chip {
    padding: 8px 15px; background: #fff; border: 1px solid #ddd; border-radius: 50px;
    font-size: 0.8rem; color: #555; cursor: pointer; white-space: nowrap; transition: 0.2s;
}
.action-chip:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,42,109,0.05); }

/* Input Area */
.hub-input-box {
    padding: 20px 30px; background: #fff; border-top: 1px solid #eee;
    display: flex; gap: 15px; align-items: center;
}
.hub-input {
    flex: 1; padding: 15px; background: #f9f9f9; border: none; border-radius: 12px;
    outline: none; color: #333; font-family: var(--font-body);
}
.send-btn-hub {
    width: 50px; height: 50px; background: var(--primary); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: #fff;
    border: none; cursor: pointer; transition: 0.2s;
}
.send-btn-hub:hover { transform: scale(1.05); }

/* Ticket Form inside Hub */
.hub-form-container { padding: 40px; max-width: 600px; margin: 0 auto; width: 100%; }
.hub-title { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: #111; }

@media(max-width: 768px) {
    .support-hub-container { grid-template-columns: 1fr; border-radius: 0; min-height: auto; }
    .hub-sidebar { display: none; } /* Hide sidebar on mobile, maybe add a toggle if needed, or simplify */
    /* For simplicity in this request, let's stack or just show main content on mobile */
    .support-hub-container { display: flex; flex-direction: column; }
    .hub-sidebar { display: flex; flex-direction: row; overflow-x: auto; padding: 15px; }
    .agent-card, .system-status { display: none; }
    .hub-nav-btn { flex: 1; justify-content: center; white-space: nowrap; margin-bottom: 0; }
}

/* --- UNIQUE GLASSMORPHISM FLOATING BUTTONS --- */
.floating-btn-container {
    position: fixed;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-btn-container:hover {
    transform: scale(1.1);
}

/* Left Side (Enquiry) */
.floating-btn-container.left { left: 40px; }
.floating-btn-container.left .floating-label { 
    left: 70px; opacity: 0; transform: translateX(-10px); visibility: hidden; 
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,42,109,0.3); color: var(--primary);
}
.floating-btn-container.left:hover .floating-label { opacity: 1; visibility: visible; transform: translateX(0); }

/* Right Side (WhatsApp) */
.floating-btn-container.right { right: 40px; flex-direction: row-reverse; }
.floating-btn-container.right .floating-label { 
    right: 70px; opacity: 0; transform: translateX(10px); visibility: hidden;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(37,211,102,0.3); color: #25D366;
}
.floating-btn-container.right:hover .floating-label { opacity: 1; visibility: visible; transform: translateX(0); }

/* The Round Button */
.floating-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.4);
}

/* Styles for WhatsApp */
.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: floatGreen 3s infinite ease-in-out;
}

/* Styles for Contact/Email */
.floating-btn.contact {
    background: linear-gradient(135deg, #ff2a6d 0%, #ff0055 100%);
    box-shadow: 0 10px 30px rgba(255, 42, 109, 0.4);
    animation: floatPink 3s infinite ease-in-out;
    animation-delay: 1.5s; /* Offset animation */
}

/* The Text Label (Hidden by default) */
.floating-label {
    position: absolute;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 1;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Professional Float Animations */
@keyframes floatGreen {
    0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2); }
}
@keyframes floatPink {
    0%, 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(255, 42, 109, 0.4); }
    50% { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(255, 42, 109, 0.2); }
}

/* Bigger Header Button Fix */
nav .cta-nav {
    padding: 12px 35px !important; /* Increased Padding */
    font-size: 1rem !important;    /* Bigger Font */
    font-weight: 800 !important;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 42, 109, 0.4);
}

/* PRO CONTACT FORM STYLES */
.contact-pro-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
}
.contact-form-header {
    background: #f9f9f9;
    padding: 30px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.contact-form-header h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: #111; }
.contact-form-header p { color: #666; font-size: 0.95rem; }

.contact-form-body { padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.floating-input-group { position: relative; margin-bottom: 20px; }
.floating-input {
    width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem;
    outline: none; transition: 0.3s; background: #fff; color: #333;
}
.floating-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,42,109,0.1); }
.floating-label-text {
    position: absolute; left: 15px; top: 15px; color: #999; font-size: 1rem; pointer-events: none;
    transition: 0.3s; background: #fff; padding: 0 5px;
}
.floating-input:focus ~ .floating-label-text,
.floating-input:not(:placeholder-shown) ~ .floating-label-text {
    top: -10px; font-size: 0.8rem; color: var(--primary); font-weight: 600;
}

.contact-map-wrap {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    background: #fff;
    aspect-ratio: 16 / 9;
}

.contact-map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

footer { border-top: 1px solid var(--border); padding: 40px 20px; text-align: center; color: var(--text-muted); background: #f4f4f4; margin-top: 50px; font-size: 0.9rem; }

@media(max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .floating-btn-container { bottom: 20px; }
    .floating-btn-container.left { left: 20px; }
    .floating-btn-container.right { right: 20px; }
    .floating-btn { width: 60px; height: 60px; font-size: 1.5rem; }
}
/* CHECKOUT PAGE STYLES */
.checkout-container {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
    max-width: 1000px; margin: 0 auto; padding: 0 5%;
}
.pay-options-box, .order-summary-box {
    background: #fff; border: 1px solid var(--border); border-radius: 20px;
    padding: 30px; box-shadow: var(--card-shadow);
}
.checkout-head { font-family: var(--font-head); margin-bottom: 20px; font-size: 1.3rem; border-bottom: 1px solid #eee; padding-bottom: 10px; }

.payment-tabs { display: flex; gap: 10px; margin-bottom: 25px; }
.pay-method {
    flex: 1; text-align: center; padding: 12px; border: 1px solid #ddd; border-radius: 10px;
    cursor: pointer; transition: 0.3s; font-weight: 600; font-size: 0.9rem;
}
.pay-method i { display: block; font-size: 1.5rem; margin-bottom: 5px; color: #555; }
.pay-method.active, .pay-method:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,42,109,0.05); }
.pay-method.active i { color: var(--primary); }

.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; color: #444; }
.summary-row.total { font-size: 1.4rem; font-weight: 800; color: #000; margin-top: 10px; }

@media (max-width: 768px) {
    .checkout-container { grid-template-columns: 1fr; gap: 20px; }
}
/* --- MOBILE MENU FIX --- */
@media (max-width: 768px) {
    /* 1. Desktop Menu Chupao */
    .nav-links, nav .cta-nav {
        display: none !important;
    }

    /* 2. Hamburger Icon Dikhao */
    .mobile-menu-btn {
        display: block !important;
        font-size: 2rem !important;
        color: #000 !important; /* Agar background dark hai to #fff karein */
        position: absolute;
        right: 20px;
        top: 25px;
        cursor: pointer;
        z-index: 9999;
    }

    /* 3. Layout Fixes (Cards ek line mein) */
    .services-grid, .work-grid, .plans-grid, .features-grid, 
    .contact-pro-container, .support-hub-container, 
    .profile-detail-container, .highlight-flex {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-shadow: none !important;
    }

    /* 4. Text & Element Sizing */
    .hero-content h1 { font-size: 3rem !important; }
    .logo-img { height: 45px; width: 45px; }
    .work-marquee-item { width: 280px !important; height: 180px !important; }
    body { overflow-x: hidden; }
}

.rs-services .rs-lucide-hero {
    width: 64px;
    height: 64px;
    color: #000;
    display: inline-block;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}

.rs-services .rs-lucide-inline {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: -0.2em;
}

.rs-services .rs-lucide-card {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.rs-services .rs-lucide-step {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.rs-services .rs-lucide-explode {
    width: 28px;
    height: 28px;
    display: inline-block;
}

@keyframes rs-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.rs-services .rs-cursor-blink {
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: #ef4444;
    margin-left: 5px;
    animation: rs-blink 1s infinite;
    vertical-align: middle;
}

@keyframes rs-shine-move {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.rs-services .rs-shine-btn {
    position: relative;
    overflow: hidden;
}

.rs-services .rs-shine-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: rs-shine-move 3s infinite;
}

.rs-services .rs-visualizer-bar {
    width: 6px;
    background-color: #000;
    border-radius: 9999px;
    animation: rs-visualize 1.2s ease-in-out infinite;
}

@keyframes rs-visualize {
    0%, 100% { height: 10px; }
    50% { height: 35px; }
}

@keyframes rs-pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.rs-services .rs-scroll-pulse {
    position: relative;
}

.rs-services .rs-scroll-pulse::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #ef4444;
    animation: rs-pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.rs-services .rs-platform-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.rs-services .rs-platform-label {
    position: absolute;
    bottom: -26px;
    font-size: 9px;
    font-weight: 800;
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    color: #000;
}

.rs-services .rs-platform-icon:hover .rs-platform-label {
    opacity: 1;
}

@keyframes orbit-cw {
    from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

@keyframes orbit-ccw {
    from { transform: rotate(360deg) translateX(240px) rotate(-360deg); }
    to { transform: rotate(0deg) translateX(240px) rotate(0deg); }
}

.rs-services .rs-service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.rs-services .rs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    border-color: rgba(239, 68, 68, 0.22);
}

.rs-services .rs-service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rs-services .rs-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.rs-services .rs-service-card:hover .rs-service-icon {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: rotate(5deg) scale(1.06);
}

.rs-services .rs-service-arrow {
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: rotate(-45deg);
    color: #ef4444;
}

.rs-services .rs-service-card:hover .rs-service-arrow {
    opacity: 1;
    transform: rotate(0deg);
}

.rs-services .rs-service-title {
    font-weight: 900;
    font-size: 18px;
    color: #000;
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.rs-services .rs-service-card:hover .rs-service-title {
    color: #dc2626;
}

.rs-services .rs-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
    color: #6b7280;
    font-size: 12px;
}

.rs-services .rs-service-list li {
    position: relative;
    padding-left: 14px;
}

.rs-services .rs-service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: rgba(239, 68, 68, 0.18);
    position: absolute;
    left: 0;
    top: 6px;
    transition: background 0.2s ease;
}

.rs-services .rs-service-card:hover .rs-service-list li::before {
    background: rgba(239, 68, 68, 0.9);
}

.rs-services .rs-service-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.12);
    background: transparent;
    font-weight: 800;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rs-services .rs-service-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.rs-services .rs-process {
    position: relative;
}

.rs-services .rs-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 56px;
}

.rs-services .rs-step-dot {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #fff;
    border: 4px solid rgba(0,0,0,0.06);
    box-shadow: 0 22px 60px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-services .rs-step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.rs-services .rs-step-content {
    width: 100%;
    padding-left: 84px;
}

.rs-services .rs-step-title {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 6px;
}

.rs-services .rs-step-desc {
    color: #6b7280;
    font-size: 13px;
}

@media (min-width: 768px) {
    .rs-services .rs-step-dot { left: 50%; transform: translateX(-50%); }
    .rs-services .rs-step { justify-content: space-between; }
    .rs-services .rs-step-content { width: 42%; padding-left: 0; }
    .rs-services .rs-step-content.rs-left { text-align: right; padding-right: 48px; }
    .rs-services .rs-step-content.rs-right { text-align: left; padding-left: 48px; }
}

.rs-services .rs-badge {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.rs-services .rs-stat-card {
    background: rgba(17, 24, 39, 1);
    border: 1px solid rgba(55, 65, 81, 1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.rs-services .rs-stat-card:hover {
    border-color: #ef4444;
}

.rs-services .rs-stat-num {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.rs-services .rs-stat-num .stat-num {
    color: #fff !important;
}

.rs-services .rs-stat-label {
    color: rgba(156, 163, 175, 1);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rs-services .rs-faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.rs-services .rs-faq-toggle {
    width: 100%;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}

.rs-services .rs-faq-q {
    font-weight: 900;
    font-size: 13px;
    color: #000;
}

.rs-services .rs-faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.28s ease;
}

.rs-services .rs-faq-item.open .rs-faq-answer {
    opacity: 1;
}

.rs-services .rs-faq-a {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.7;
    padding-bottom: 12px;
}

@keyframes rs-phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.rs-services .rs-float {
    animation: rs-phone-float 6s ease-in-out infinite;
}

@keyframes rs-icon-explode {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(1.2); opacity: 0; }
}

.rs-services .rs-explode-icon {
    position: absolute;
    top: 40%;
    left: 50%;
    opacity: 0;
    animation: rs-icon-explode 3s ease-out infinite;
}

.rs-services [data-rs-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.rs-services .rs-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.rs-distro {
    color: #000;
    background: transparent;
    overflow-x: hidden;
}

.rs-distro * { box-sizing: border-box; }

.rs-distro-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

.rs-distro-center { text-align: center; }
.rs-distro-max { max-width: 640px; margin-left: auto; margin-right: auto; }

.rs-distro-accent { color: #ef4444; }
.rs-distro-muted { color: #6b7280; font-size: 13px; }

.rs-distro-h2 {
    font-family: var(--font-head);
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.rs-distro-h3 {
    font-family: var(--font-head);
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.rs-distro-kicker {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ef4444;
}

.rs-distro-section-head {
    text-align: center;
    margin-bottom: 54px;
}

/* Hero */
.rs-distro-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    padding: 120px 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rs-distro-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.rs-distro-hero-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-distro-hero-glow {
    position: absolute;
    inset: -40px;
    background: rgba(239, 68, 68, 0.18);
    filter: blur(60px);
    border-radius: 9999px;
    animation: rs-distro-pulse 2.4s ease-in-out infinite;
}

@keyframes rs-distro-pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.75; }
    50% { transform: scale(1.05); opacity: 1; }
}

.rs-distro-hero-mic {
    width: 64px;
    height: 64px;
    color: #000;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
    position: relative;
    z-index: 2;
}

.rs-distro-visualizer {
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 160px;
    height: 76px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    opacity: 0.28;
    pointer-events: none;
    z-index: 1;
}

.rs-distro-visualizer-bar {
    width: 6px;
    background: #000;
    border-radius: 9999px;
    animation: rs-distro-visualize 1.2s ease-in-out infinite;
}

@keyframes rs-distro-visualize {
    0%, 100% { height: 10px; }
    50% { height: 35px; }
}

.rs-distro-hero-title {
    margin: 0 0 14px;
    font-family: var(--font-head);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.05;
    font-size: 56px;
}

.rs-distro-hero-gradient {
    background: linear-gradient(90deg, #ef4444, #000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-left: 10px;
}

.rs-distro-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: #ef4444;
    margin-left: 6px;
    vertical-align: middle;
    animation: rs-distro-blink 1s infinite;
}

@keyframes rs-distro-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.rs-distro-hero-sub {
    font-weight: 700;
    font-size: 18px;
    color: #4b5563;
    margin: 0 0 10px;
}

.rs-distro-hero-desc {
    color: #6b7280;
    font-size: 14px;
    margin: 0 auto 26px;
    max-width: 560px;
}

.rs-distro-cta-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.rs-distro-btn {
    border: none;
    border-radius: 9999px;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rs-distro-btn:hover { transform: translateY(-2px); }

.rs-distro-btn-icon { width: 18px; height: 18px; }
.rs-distro-btn-inner { display: inline-flex; align-items: center; gap: 8px; }

.rs-distro-btn-primary {
    background: #000;
    color: #fff;
    box-shadow: 0 22px 45px rgba(0,0,0,0.22);
}

.rs-distro-btn-secondary {
    background: #fff;
    color: #16a34a;
    border: 2px solid rgba(22, 163, 74, 0.18);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.rs-distro-btn-secondary:hover { background: #ecfdf5; }

.rs-distro-btn-light {
    background: #fff;
    color: #000;
    box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.rs-distro-btn-whatsapp {
    background: #25D366;
    border: 1px solid #25D366;
    color: #000;
}

.rs-distro-btn-whatsapp:hover { background: #1ebc57; }

.rs-distro-shine { position: relative; overflow: hidden; }
.rs-distro-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
    animation: rs-distro-shine-move 3s infinite;
}

@keyframes rs-distro-shine-move {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.rs-distro-scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.65;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.2s ease;
}

.rs-distro-scroll:hover { opacity: 1; }

.rs-distro-scroll-label {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #000;
}

.rs-distro-scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0,0,0,0.8);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.rs-distro-scroll-dot {
    width: 4px;
    height: 8px;
    background: #ef4444;
    border-radius: 9999px;
    margin-top: 6px;
    animation: rs-distro-wheel-drop 1.5s ease-in-out infinite;
}

@keyframes rs-distro-wheel-drop {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Orbit */
.rs-distro-orbit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
    transform: scale(0.92);
}

.rs-distro-orbit-ring {
    position: absolute;
    border-radius: 9999px;
    border: 1px solid rgba(0,0,0,0.08);
}

.rs-distro-orbit-ring-1 { width: 280px; height: 280px; animation: rs-distro-spin 30s linear infinite; }
.rs-distro-orbit-ring-2 { width: 440px; height: 440px; border-color: rgba(0,0,0,0.05); animation: rs-distro-spin-rev 40s linear infinite; }

@keyframes rs-distro-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rs-distro-spin-rev {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.rs-distro-orbit-group { position: absolute; width: 0; height: 0; }
.rs-distro-orbit-item { position: absolute; }

@keyframes rs-distro-orbit-cw {
    from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

@keyframes rs-distro-orbit-ccw {
    from { transform: rotate(360deg) translateX(240px) rotate(-360deg); }
    to { transform: rotate(0deg) translateX(240px) rotate(0deg); }
}

.rs-distro-platform {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.25s ease;
}

.rs-distro-platform::after {
    content: attr(data-label);
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #000;
}

.rs-distro-platform:hover { transform: scale(1.08); }
.rs-distro-platform:hover::after { opacity: 1; }

.rs-distro-platform-icon { width: 20px; height: 20px; }
.rs-distro-green { color: #16a34a; }
.rs-distro-pink { color: #db2777; }
.rs-distro-red { color: #ef4444; }
.rs-distro-blue { color: #3b82f6; }
.rs-distro-orange { color: #f97316; }
.rs-distro-pink-2 { color: #ec4899; }

/* Marquee */
.rs-distro-marquee {
    padding: 96px 0;
    background: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    isolation: isolate;
}

.rs-distro-marquee-row {
    position: relative;
    width: 100%;
    left: 0;
    transform: none;
    margin-bottom: 18px;
    background: #000;
}

.rs-distro-marquee-row-1 { z-index: 2; }
.rs-distro-marquee-row-2 { z-index: 1; background: #f3f4f6; }

.rs-distro-marquee-row-2 { 
    transform: none;
    margin-bottom: 0; 
}

.rs-distro-marquee-row::before {
    content: '';
    position: absolute;
    display: none;
    z-index: 0;
}

.rs-distro-marquee-row-1::before { background: #000; }
.rs-distro-marquee-row-2::before { background: #f3f4f6; transform-origin: right; }

.rs-distro-marquee-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 44px;
    white-space: nowrap;
    padding: 26px 0;
    align-items: center;
    will-change: transform;
}

.rs-distro-marquee-row-1 .rs-distro-marquee-track { background: #000; }
.rs-distro-marquee-row-2 .rs-distro-marquee-track { background: #f3f4f6; border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }

.rs-distro-scroll-left { animation: rs-distro-scroll-left 60s linear infinite; }
.rs-distro-scroll-right { animation: rs-distro-scroll-right 70s linear infinite; }

@keyframes rs-distro-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes rs-distro-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.rs-distro-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
    padding: 2px 0;
    transition: color 0.2s ease;
}

.rs-distro-marquee-item:hover { color: #ef4444; }

.rs-distro-marquee-item-2 {
    color: #111;
}

.rs-distro-marquee-item-2:hover { color: #000; }

.rs-distro-marquee-icon { width: 12px; height: 12px; color: #6b7280; }
.rs-distro-marquee-icon-2 { color: #ef4444; }

/* Journey */
.rs-distro-journey {
    padding: 96px 0;
}

.rs-distro-steps {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 0 10px;
}

.rs-distro-steps-line {
    display: none;
}

.rs-distro-step {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.rs-distro-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: #fff;
    border: 4px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 45px rgba(0,0,0,0.12);
    flex: 0 0 auto;
}

.rs-distro-step-icon i { width: 22px; height: 22px; color: #000; }
.rs-distro-step-icon-accent i { color: #ef4444; }

.rs-distro-step-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 6px;
}

.rs-distro-step-desc { margin: 0; color: #6b7280; font-size: 13px; }

@media (min-width: 768px) {
    .rs-distro-hero-title { font-size: 72px; }

    .rs-distro-steps-line {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(0,0,0,0.12);
        transform: translateX(-50%);
    }

    .rs-distro-step {
        justify-content: space-between;
        margin-bottom: 56px;
    }

    .rs-distro-step-icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .rs-distro-step-body {
        width: 42%;
    }

    .rs-distro-step:nth-child(2n) .rs-distro-step-body { text-align: right; padding-right: 48px; }
    .rs-distro-step:nth-child(2n+1) .rs-distro-step-body { text-align: left; padding-left: 48px; }
}

/* Plans */
.rs-distro-plans {
    padding: 96px 0;
    background: rgba(243, 244, 246, 0.7);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.rs-distro-plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 900px) {
    .rs-distro-plan-grid { grid-template-columns: repeat(3, 1fr); }
}

.rs-distro-plan {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 28px;
    padding: 26px;
    position: relative;
    box-shadow: 0 26px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

.rs-distro-plan-main { transform: scale(1.02); border-color: rgba(239, 68, 68, 0.28); box-shadow: 0 34px 80px rgba(0,0,0,0.16); }

.rs-distro-plan-level {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.28em;
    color: #9ca3af;
    margin-bottom: 14px;
}

.rs-distro-plan-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 16px;
}

.rs-distro-plan-features { list-style: none; padding: 0; margin: 0 0 20px; }
.rs-distro-plan-features li {
    position: relative;
    padding-left: 14px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 10px;
}

.rs-distro-plan-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: #000;
    position: absolute;
    left: 0;
    top: 7px;
}

.rs-distro-plan-main .rs-distro-plan-features li::before { background: #ef4444; }

.rs-distro-plan-btn {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f3f4f6;
    color: #000;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rs-distro-plan-btn:hover { background: #e5e7eb; }
.rs-distro-plan-btn-main { background: #000; color: #fff; border-color: #000; }
.rs-distro-plan-btn-main:hover { background: #111827; }

.rs-distro-plan-corner {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #9ca3af;
}

.rs-distro-plan-corner i { width: 22px; height: 22px; }

/* Command Center */
.rs-distro-command { padding: 96px 0; }

.rs-distro-command-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 900px) {
    .rs-distro-command-grid { grid-template-columns: repeat(4, 1fr); }
    .rs-distro-live { grid-column: span 2; }
    .rs-distro-territories { grid-column: span 4; }
}

.rs-distro-live {
    background: #000;
    color: #fff;
    border-radius: 28px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(0,0,0,0.22);
}

.rs-distro-live-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: rgba(239, 68, 68, 0.35);
    filter: blur(80px);
    border-radius: 9999px;
}

.rs-distro-live-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 18px; position: relative; z-index: 1; }
.rs-distro-live-title { margin: 0 0 6px; font-weight: 900; font-size: 18px; }
.rs-distro-live-sub { margin: 0; color: rgba(156, 163, 175, 1); font-size: 10px; }
.rs-distro-live-sub-strong { color: #fff; font-weight: 900; }

.rs-distro-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.08);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.16em;
    backdrop-filter: blur(10px);
}

.rs-distro-live-dot { width: 6px; height: 6px; border-radius: 9999px; background: #ef4444; animation: rs-distro-blink 1s infinite; }

.rs-distro-live-graph {
    height: 96px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.rs-distro-live-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #ef4444 0%, #1f2937 100%);
    opacity: 0.85;
    animation-name: rs-distro-wave;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes rs-distro-wave {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1); }
}

.rs-distro-stat {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 26px 60px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.rs-distro-stat-dark {
    background: linear-gradient(135deg, #111827, #000);
    color: #fff;
    border-color: rgba(255,255,255,0.08);
}

.rs-distro-stat-kicker {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 10px;
}

.rs-distro-stat-row { display: flex; align-items: center; gap: 12px; }
.rs-distro-stat-icon { width: 40px; height: 40px; border-radius: 9999px; display: flex; align-items: center; justify-content: center; }
.rs-distro-stat-icon i { width: 18px; height: 18px; }
.rs-distro-stat-icon-purple { background: rgba(168, 85, 247, 0.18); color: rgb(147, 51, 234); }

.rs-distro-stat-value {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 900;
    color: #000;
}

.rs-distro-stat-dark .rs-distro-stat-value { color: #fff; }

.rs-distro-stat-value-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 34px;
}

.rs-distro-stat-label { font-size: 10px; color: #6b7280; }
.rs-distro-stat-dark .rs-distro-stat-label { color: rgba(156, 163, 175, 1); }

.rs-distro-stat-bar { margin-top: 14px; height: 6px; background: #f3f4f6; border-radius: 9999px; overflow: hidden; }
.rs-distro-stat-bar-fill { height: 100%; width: 80%; background: rgb(168, 85, 247); border-radius: 9999px; }
.rs-distro-stat-foot { margin-top: 8px; text-align: right; font-size: 9px; font-weight: 900; color: rgb(168, 85, 247); }

.rs-distro-stat-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.rs-distro-stat-badge i { width: 16px; height: 16px; color: #60a5fa; }

.rs-distro-territories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 6px;
}

.rs-distro-territory {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

.rs-distro-territory-value { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: #000; }
.rs-distro-territory-label {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rs-distro-territory-label i { width: 12px; height: 12px; }

/* Content ID */
.rs-distro-contentid { padding: 96px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.rs-distro-shield-wrap { position: relative; width: 140px; height: 140px; display: grid; place-items: center; margin-bottom: 18px; }
.rs-distro-shield { width: 100px; height: 100px; color: #000; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.18)); position: relative; z-index: 2; }

.rs-distro-shield-particles { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; }

.rs-distro-shield-particle {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 9999px;
    position: absolute;
    animation: rs-distro-shield-bounce 2s infinite ease-out;
}

@keyframes rs-distro-shield-bounce {
    0% { transform: translate(0, 0); opacity: 0; }
    50% { opacity: 1; }
    90% { transform: translate(var(--tx), var(--ty)); opacity: 1; }
    100% { transform: translate(0, 0); opacity: 0; }
}

.rs-distro-checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 900;
    font-size: 11px;
    color: #111;
}

.rs-distro-checklist li { display: inline-flex; align-items: center; gap: 8px; }
.rs-distro-check { width: 14px; height: 14px; color: #16a34a; }

/* FAQ */
.rs-distro-faq {
    padding: 96px 0;
    background: #f3f4f6;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.rs-distro-faq-inner { max-width: 820px; }
.rs-distro-faq-list { margin-top: 30px; }

.rs-distro-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.14);
}

.rs-distro-faq-toggle {
    width: 100%;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    font-weight: 900;
    font-size: 13px;
}

.rs-distro-faq-toggle:hover { color: #ef4444; }

.rs-distro-faq-icon { width: 18px; height: 18px; color: #000; transition: transform 0.2s ease; }

.rs-distro-faq-item.open .rs-distro-faq-icon { transform: rotate(180deg); }

.rs-distro-faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.28s ease;
}

.rs-distro-faq-item.open .rs-distro-faq-answer { opacity: 1; }

.rs-distro-faq-answer p {
    margin: 0;
    padding: 0 0 14px;
    font-size: 12px;
    line-height: 1.7;
    color: #6b7280;
}

/* Footer */
.rs-distro-footer {
    padding: 96px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.rs-distro-footer-title {
    font-family: var(--font-head);
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 0 0 26px;
}

.rs-distro-footer-gradient {
    background: linear-gradient(90deg, #ef4444, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rs-distro-footer-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.rs-distro-footer-links {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(156, 163, 175, 1);
}

.rs-distro-footer-links a {
    color: rgba(156, 163, 175, 1);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rs-distro-footer-links a:hover { color: #fff; }
.rs-distro-footer-links i { width: 18px; height: 18px; }

.rs-distro-footer-sep { width: 1px; height: 14px; background: rgba(55, 65, 81, 1); display: inline-block; }

.rs-distro-footer-copy {
    margin: 18px 0 0;
    color: rgba(107, 114, 128, 1);
    font-size: 10px;
}

/* Reveal */
.rs-distro [data-rs-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.rs-distro .rs-distro-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page */
.rs-about-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: #ef4444;
    margin-left: 5px;
    animation: rs-about-blink 1s infinite;
    vertical-align: middle;
}

@keyframes rs-about-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.rs-about-shine {
    position: relative;
    overflow: hidden;
}

.rs-about-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: rs-about-shine-move 3s infinite;
}

@keyframes rs-about-shine-move {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.rs-about [data-rs-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.rs-about .rs-about-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.rs-hide-scrollbar::-webkit-scrollbar { display: none; }
.rs-hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.rs-work-filter-tab {
    color: #9ca3af;
    border-bottom: 2px solid transparent;
}

.rs-work-filter-tab:hover {
    color: #111111;
}

.rs-work-filter-tab.active {
    color: #ef4444;
    border-bottom-color: #ef4444;
}

@keyframes rs-work-scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes rs-work-scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.rs-work-marquee {
    overflow: hidden;
}

.rs-work-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: rs-work-scroll-left 40s linear infinite;
}

.rs-work-marquee-track-reverse {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: rs-work-scroll-right 40s linear infinite;
}

.rs-work-marquee:hover .rs-work-marquee-track,
.rs-work-marquee:hover .rs-work-marquee-track-reverse {
    animation-play-state: paused;
}

@keyframes rs-work-spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.rs-work-vinyl:hover .rs-work-vinyl-disc {
    animation: rs-work-spin-slow 3s linear infinite;
}

.rs-work-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.rs-work-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.rs-work-cursor-blink {
    display: inline-block;
    width: 0.15em;
    height: 0.8em;
    background-color: #ef4444;
    margin-left: 10px;
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-bottom: 10px;
}

.rs-work-grid-pattern {
    background-image: linear-gradient(to right, #e5e7eb 1px, transparent 1px), linear-gradient(to bottom, #e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
}

.rs-team-accordion-container {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    padding: 0 20px;
}

.rs-team-accordion-item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s;
    cursor: pointer;
    filter: grayscale(100%);
    background: #000;
}

.rs-team-accordion-item:hover {
    flex: 4;
    filter: grayscale(0%);
}

.rs-team-accordion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.rs-team-accordion-item:hover img {
    transform: scale(1.1);
}

.rs-team-accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s 0.2s;
    pointer-events: none;
}

.rs-team-accordion-item:hover .rs-team-accordion-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.rs-team-insta-post {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.rs-team-insta-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.rs-team-cursor-blink {
    display: inline-block;
    width: 0.15em;
    height: 0.8em;
    background-color: #ef4444;
    margin-left: 10px;
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .rs-team-accordion-container {
        height: auto;
        padding: 0;
    }
    .rs-team-accordion-item {
        border-radius: 24px;
        min-height: 360px;
        filter: grayscale(0%);
    }
    .rs-team-accordion-item:hover {
        flex: 1;
    }
    .rs-team-accordion-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .rs-team-accordion-item.rs-team-open {
        outline: 2px solid rgba(239, 68, 68, 0.5);
    }
}

.rs-partners {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.rs-partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.rs-partners-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
}

.rs-partners-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
}

.rs-partners-ribbon {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--text-main);
    padding: 14px 0;
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.rs-partners-ribbon-track {
    display: flex;
    white-space: nowrap;
    animation: rsPartnersRibbon 60s linear infinite;
}

.rs-partners-ribbon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 80px;
}

.rs-partners-ribbon-item i {
    color: var(--primary);
}

@keyframes rsPartnersRibbon {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.rs-partners-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
}

.rs-partners-search {
    width: 100%;
    max-width: 520px;
}

.rs-partners-search input {
    width: 100%;
    padding: 18px 28px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    outline: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: 0.3s;
}

.rs-partners-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(255, 42, 109, 0.1);
}

.rs-partners-filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.rs-partners-filter-btn {
    background: #fff;
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: 0.25s;
}

.rs-partners-filter-btn.active {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}

.rs-partners-filter-btn:not(.active):hover {
    border-color: var(--primary);
    color: var(--primary);
}

.rs-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rs-partners-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 24px 14px;
    border-radius: 24px;
    text-align: center;
    transition: 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.rs-partners-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.rs-partners-logo {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px solid var(--border);
    padding: 4px;
    transition: 0.35s;
}

.rs-partners-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.rs-partners-card:hover .rs-partners-logo {
    border-color: var(--primary);
    transform: scale(1.05);
}

.rs-partners-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.2;
}

.rs-partners-tag {
    font-size: 0.62rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.rs-partners-more-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 24px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    border: 1px solid rgba(255, 42, 109, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rs-partners-more-card h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--primary);
}

.rs-partners-more-card p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.rs-partners-footer {
    background: #1e293b;
    border-radius: 30px;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rs-partners-footer-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-head);
    text-transform: uppercase;
}

.rs-partners-footer-sub {
    color: #cbd5e1;
    margin-bottom: 25px;
    font-weight: 600;
}

.rs-partners-wa-btn {
    background: #25d366;
    color: #fff;
    padding: 15px 40px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.25s;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rs-partners-wa-btn:hover {
    transform: translateY(-5px);
    background: #20ba59;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.rs-partners-footer-copy {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 25px;
    opacity: 0.7;
    font-weight: 600;
}

.rs-partners-back-btn {
    background: var(--text-main);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    transition: 0.25s;
}

.rs-partners-back-btn:hover {
    background: var(--primary);
}

.rs-partners-profile-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.rs-partners-profile {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.rs-partners-profile-image {
    flex: 0 0 250px;
    position: sticky;
    top: 40px;
}

.rs-partners-profile-image img {
    width: 100%;
    border-radius: 25px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.rs-partners-profile-content {
    flex: 1;
    min-width: 300px;
}

.rs-partners-managed-tag {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: #ffd700;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 215, 0, 0.35);
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.rs-partners-detail-name {
    font-family: var(--font-head);
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1.1;
}

.rs-partners-detail-tagline {
    color: var(--primary);
    font-weight: 800;
    margin-top: -5px;
    font-size: 0.9rem;
}

.rs-partners-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0 10px;
}

.rs-partners-stat {
    background: #fff;
    padding: 15px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1.5px solid var(--border);
}

.rs-partners-stat-val {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--text-main);
}

.rs-partners-stat-lbl {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
}

.rs-partners-data-as-of {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    text-align: right;
    margin-bottom: 30px;
}

.rs-partners-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.rs-partners-social {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.rs-partners-social:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.rs-partners-social.youtube { background: #ff0000; }
.rs-partners-social.facebook { background: #1877f2; }
.rs-partners-social.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.rs-partners-social.default { background: var(--text-main); }

.rs-partners-about {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    border-left: 6px solid var(--primary);
    margin-bottom: 35px;
}

.rs-partners-about h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.rs-partners-about p {
    font-size: 0.92rem;
    line-height: 1.8;
    white-space: pre-line;
    color: #334155;
}

.rs-partners-hire-btn {
    background: var(--text-main);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.25s;
    font-size: 0.8rem;
    margin-bottom: 40px;
    border: 2px solid var(--text-main);
}

.rs-partners-hire-btn:hover {
    background: transparent;
    color: var(--text-main);
    transform: scale(1.03);
}

.rs-partners-portfolio-title {
    font-family: var(--font-head);
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.rs-partners-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.rs-partners-video-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    transition: 0.25s;
    border: 1px solid var(--border);
}

.rs-partners-video-card:hover {
    transform: scale(1.03);
}

.rs-partners-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
}

.rs-partners-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.rs-partners-play i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.85;
}

.rs-partners-empty {
    grid-column: 1 / -1;
    color: #94a3b8;
    text-align: center;
    padding: 30px;
    border: 1px dashed var(--border);
    border-radius: 15px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .rs-partners {
        padding: 40px 16px;
    }
    .rs-partners-profile {
        flex-direction: column;
    }
    .rs-partners-profile-image {
        flex: 0 0 auto;
        width: 100%;
        position: static;
    }
    .rs-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rs-partners-wa-btn {
        width: 100%;
    }
}