:root {
    --bg-dark: #05080f;
    --bg-surface: #0a0f1c;
    --bg-glass: rgba(10, 15, 28, 0.4);
    --bg-glass-hover: rgba(20, 30, 50, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    --brand-orange: #ff6b00;
    --brand-orange-light: #ff8c33;
    --brand-teal: #00bcd4;
    --brand-teal-light: #33c9dc;
}

[data-theme="light"] {
    --bg-dark: #ffffff;
    --bg-surface: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(240, 248, 255, 0.8);
    --border-glass: rgba(0, 0, 0, 0.1);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    --brand-orange: #ff6b00;
    --brand-orange-light: #ff8c33;
    --brand-teal: #009eb3;
    --brand-teal-light: #00bcd4;
}

* {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --live-color: #10B981;
    --building-color: #F59E0B;
    --roadmap-color: #6366F1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom one */
    transition: background-color 0.5s ease, color 0.5s ease;
}

html { overflow-x: hidden; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Premium Loading Screen */
.loader-wrapper {
    position: fixed; inset: 0; z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    background: transparent;
    pointer-events: none;
}
.shutter-top, .shutter-bottom {
    position: absolute; left: 0; width: 100%; height: 50vh;
    background: #000;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.shutter-top { top: 0; }
.shutter-bottom { bottom: 0; }
.loader-wrapper.loaded .shutter-top { transform: translateY(-100%); }
.loader-wrapper.loaded .shutter-bottom { transform: translateY(100%); }

.loader-content {
    position: relative; z-index: 2; text-align: center;
    transition: opacity 0.5s;
}
.loader-wrapper.loaded .loader-content { opacity: 0; }
.lens-ring {
    width: 80px; height: 80px; margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--brand-orange);
    border-right-color: var(--brand-teal);
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.loader-content h2 {
    font-size: 1.5rem; letter-spacing: 10px; font-weight: 800;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-teal));
    -webkit-background-clip: text; color: transparent;
}

/* Dynamic Cursor */
.custom-cursor {
    position: fixed; top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--brand-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
    position: fixed; top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, transform 0.1s;
}
.custom-cursor.hover-state {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    mix-blend-mode: normal;
}
.custom-cursor.hover-state::after {
    content: attr(data-text);
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px; font-weight: 700; color: #fff;
    white-space: nowrap;
}

/* Mouse Glow Background */
.mouse-glow {
    position: fixed; top: 0; left: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(0, 188, 212, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform 0.1s ease-out;
}
.particles-container {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
}

/* Base Styles */
h1, h2, h3, h4, h5 {  cursor: none; /* Custom cursor */
}

body.loading {
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--bg-glass-hover);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.logo-link:hover .nav-logo {
    transform: scale(1.05);
}

.theme-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}
.theme-btn span {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-theme="dark"] .icon-sun { transform: translateY(0); }
[data-theme="dark"] .icon-moon { transform: translateY(40px); }
[data-theme="light"] .icon-sun { transform: translateY(-40px); }
[data-theme="light"] .icon-moon { transform: translateY(0); }

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

.nav-links a:not(.btn-primary) {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0%; height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after { width: 100%; }

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    border: none;
    background: transparent;
    cursor: none;
}

.btn-primary .btn-text { position: relative; z-index: 2; }

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 30px;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute; inset: -2px;
    background: linear-gradient(135deg, var(--brand-orange-light), var(--brand-teal));
    border-radius: 32px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: spin 4s linear infinite;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover .btn-bg { opacity: 0.9; }

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

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 550px; /* Tighter width */
}

.badge-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.title-3d {
    font-size: 5.5rem; /* Slightly larger */
    line-height: 0.95; /* Tighter line height */
    margin-bottom: 1.5rem;
    letter-spacing: -2px; /* Tighter letter spacing */
    perspective: 1000px;
}

.title-3d .line {
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.btn-text-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Better gap */
    transition: color 0.3s ease;
}

.play-icon {
    width: 44px; height: 44px; /* Larger icon circle */
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    display: flex; justify-content: center; align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-text-link:hover { color: var(--brand-teal); }
.btn-text-link:hover .play-icon {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    color: var(--bg-dark);
}

/* Hero Visual (Logo Display) */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glow-backdrop {
    position: absolute;
    width: 90%; height: 90%; /* Larger glow */
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, rgba(0, 188, 212, 0.15) 50%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
    animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

.main-hero-img {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    border-radius: 30px; /* Round the ugly white background corners */
    border: 1px solid var(--border-glass); /* Give it a boundary */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255, 255, 255, 0.05);
    background: white; /* Ensure the padding looks clean if it has transparent edges */
    padding: 1rem; /* Add padding so logo breathes inside the card */
}

/* Marquee */
.marquee-container {
    position: absolute;
    bottom: -2%; /* Move down so it doesn't collide with hero actions */
    width: 100%;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.15; /* Make it more subtle */
    transform: rotate(-2deg) scale(1.1);
    z-index: 0;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    padding: 0 2rem;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
}

.marquee-content span.text-gradient {
    -webkit-text-stroke: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Grid & Section Layouts */
.section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header {
    text-align: center; margin-bottom: 4rem;
}
.section-header p {
    color: var(--text-secondary); font-size: 1.2rem;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* About / Timeline */
.about-text .lead {
    font-size: 1.4rem; color: var(--text-primary); font-weight: 500; margin-bottom: 1.5rem;
}
.about-text p {
    color: var(--text-secondary); margin-bottom: 2rem;
}

.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.stat-box {
    padding: 1.5rem; text-align: center; transition: transform 0.3s;
}
.stat-box:hover { transform: translateY(-5px); }
.stat-box h3 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.stat-box p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin:0; }

.timeline-container {
    position: relative;
    padding-left: 2rem;
}
.timeline-track {
    position: absolute; top: 0; left: 0; width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--live-color), var(--building-color), var(--roadmap-color));
    border-radius: 2px;
}
.timeline-item {
    position: relative; margin-bottom: 3rem; padding-left: 2rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute; left: -2.3rem; top: 1.5rem; width: 14px; height: 14px; border-radius: 50%;
    border: 3px solid var(--bg-dark); z-index: 2; box-shadow: 0 0 10px currentColor;
}
.timeline-dot.live { background: var(--live-color); color: var(--live-color); }
.timeline-dot.building { background: var(--building-color); color: var(--building-color); }
.timeline-dot.roadmap { background: var(--roadmap-color); color: var(--roadmap-color); }

.timeline-content {
    padding: 2rem;
}

.status-badge {
    display: inline-block; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px;
}
.status-badge.live { background: rgba(16,185,129,0.1); color: var(--live-color); border: 1px solid rgba(16,185,129,0.3); }
.status-badge.building { background: rgba(245,158,11,0.1); color: var(--building-color); border: 1px solid rgba(245,158,11,0.3); }
.status-badge.roadmap { background: rgba(99,102,241,0.1); color: var(--roadmap-color); border: 1px solid rgba(99,102,241,0.3); }

/* 3D Tilt Cards (Divisions) */
.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem;
    perspective: 1000px;
}

.tilt-card-wrapper {
    perspective: 1000px;
    height: 100%;
}

.glass-card {
    background: var(--bg-glass); backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass); border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex; flex-direction: column;
    position: relative;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
}

/* Mouse follow glow effect injected via JS */
.glass-card::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    border-radius: inherit; z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.glass-card:hover::after { opacity: 1; }
.glass-card:hover { border-color: rgba(255, 255, 255, 0.2); background: var(--bg-glass-hover); }

.card-status { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; color: var(--text-secondary); transform: translateZ(20px); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; display: block; }
.pulse-dot.live { background: var(--live-color); box-shadow: 0 0 10px var(--live-color); }
.pulse-dot.building { background: var(--building-color); box-shadow: 0 0 10px var(--building-color); }
.pulse-dot.roadmap { background: var(--roadmap-color); box-shadow: 0 0 10px var(--roadmap-color); }

.card-icon { margin-bottom: 1.5rem; transform: translateZ(30px); }
.glass-card h3 { font-size: 1.6rem; margin-bottom: 1rem; transform: translateZ(40px); }
.glass-card p { color: var(--text-secondary); flex-grow: 1; transform: translateZ(20px); }

.card-hover-reveal {
    margin-top: 1.5rem; max-height: 0; opacity: 0; overflow: hidden;
    transition: all 0.4s ease; transform: translateZ(30px);
}
.glass-card:hover .card-hover-reveal {
    max-height: 150px; opacity: 1; margin-top: 2rem;
}
.card-hover-reveal ul { list-style: none; border-top: 1px solid var(--border-glass); padding-top: 1rem; }
.card-hover-reveal li { font-size: 0.9rem; padding: 0.4rem 0; color: var(--text-primary); display: flex; align-items: center; gap: 0.5rem; }
.card-hover-reveal li::before { content: '→'; color: var(--brand-orange); }

/* Packages */
.pricing-tabs { display: flex; justify-content: center; gap: 1rem; margin-bottom: 4rem; }
.tab-btn {
    background: transparent; border: 1px solid var(--border-glass); color: var(--text-secondary);
    padding: 0.8rem 2rem; border-radius: 30px; font-family: var(--font-heading); font-size: 1rem;
    cursor: none; transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); border-color: var(--brand-orange); }

.pricing-content { display: none; animation: fadeIn 0.5s ease forwards; }
.pricing-content.active { display: block; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-grid.two-cols { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

.pricing-card {
    padding: 3rem 2rem; text-align: center;
    border-top: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card.popular {
    border-top-color: var(--brand-orange);
    transform: scale(1.05);
}
.popular-badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
}
.tier-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.tier-price { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 0.5rem; display: flex; justify-content: center; align-items: baseline; }
.tier-price .currency { font-size: 1rem; font-weight: 500; color: var(--text-secondary); margin-right: 0.5rem; }
.tier-price .period { font-size: 1rem; font-weight: 500; color: var(--text-secondary); }
.tier-commission { color: var(--brand-teal); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.tier-target { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.pricing-card hr { border: none; border-top: 1px solid var(--border-glass); margin-bottom: 2rem; }

.tier-features { list-style: none; text-align: left; }
.tier-features li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; }
.tier-features svg { width: 20px; height: 20px; stroke: var(--brand-orange); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Talent Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}
.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 2rem;
}
.carousel-slide {
    min-width: calc(33.333% - 1.33rem);
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.carousel-slide .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.carousel-slide:hover .slide-img {
    transform: scale(1.1);
}
.slide-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1rem;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: none;
    z-index: 10;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Masonry Gallery */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 2.5rem;
}
.masonry-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}
.item-wide {
    grid-column: span 2;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.masonry-item:hover img {
    transform: scale(1.05);
}
.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
}
.masonry-item:hover .item-overlay {
    opacity: 1;
}
.item-overlay h4 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Video Hover Portfolio Extras */
.video-hover-card {
    position: relative;
    overflow: hidden;
}
.hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.video-hover-card .poster {
    z-index: 2;
    position: relative;
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.video-hover-card .item-overlay {
    z-index: 3;
}
.video-hover-card:hover .hover-video {
    opacity: 1;
}
.video-hover-card:hover .poster {
    opacity: 0;
}

/* Netflix-Style Case Studies */
.case-studies {
    overflow: hidden;
}
.container-fluid {
    width: 100%;
    padding-left: 4rem; /* offset for dramatic bleed */
}
.row-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.netflix-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 2rem 0 4rem 0;
    scroll-behavior: smooth;
    /* hide scrollbar */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.netflix-row::-webkit-scrollbar {
    display: none;
}
.netflix-card {
    min-width: 300px;
    height: 169px; /* 16:9 aspect ratio roughly */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.4s;
}
.netflix-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.netflix-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.netflix-card:hover {
    transform: scale(1.3) translateY(-15px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.netflix-card:hover .card-info {
    opacity: 1;
}
.text-green {
    color: var(--live-color);
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Client Logo Marquee */
.client-marquee-section {
    padding: 4rem 0 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(255,255,255,0.02));
    border-top: 1px solid var(--border-glass);
    overflow: hidden;
}
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.text-muted { color: var(--text-secondary); font-size: 0.85rem; letter-spacing: 2px; }

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.logo-marquee::before, .logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}
.logo-track {
    display: flex;
    width: calc(250px * 14); /* 7 items * 2 = 14 */
    animation: scroll-logos 30s linear infinite;
}
.logo-track h2 {
    width: 250px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.4;
    transition: opacity 0.3s, color 0.3s;
}
.logo-track h2:hover {
    opacity: 1;
    color: var(--text-primary);
}
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.accordion-item {
    padding: 1.5rem 2rem;
    cursor: none;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: background 0.3s, border-color 0.3s;
}
.accordion-item:hover, .accordion-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-orange);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header h4 {
    font-size: 1.2rem;
    margin: 0;
}
.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--brand-orange);
    transition: transform 0.3s;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.accordion-item.active .accordion-content {
    max-height: 200px;
    margin-top: 1.5rem;
}
.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}
.accordion-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Newsletter */
.newsletter-box {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.newsletter-box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 60%);
    z-index: 0; pointer-events: none;
}
.newsletter-box > * { position: relative; z-index: 1; }
.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0 auto;
}
.newsletter-form .form-input {
    flex: 1;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}
.newsletter-form .form-input:focus {
    border-color: var(--brand-orange);
}

/* Contact & Footer */
.footer {
    position: relative; padding-top: 6rem; border-top: 1px solid var(--border-glass);
    overflow: hidden;
}
.footer-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at bottom, rgba(0, 188, 212, 0.1) 0%, transparent 60%);
    z-index: 0;
}
.contact-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem;
    margin-bottom: 4rem;
}
.contact-info { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; align-items: center; gap: 1.5rem; text-decoration: none; }
.info-item .icon-wrap { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass); display: flex; justify-content: center; align-items: center; font-size: 1.2rem; transition: all 0.3s; color: var(--brand-orange); }
.info-item:hover .icon-wrap { background: rgba(255, 107, 0, 0.2); border-color: var(--brand-orange); color: var(--text-primary); transform: scale(1.1); }
.info-text span { display: block; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.info-text strong { display: block; font-size: 1.1rem; color: var(--text-primary); }

.glass-form { display: flex; flex-direction: column; gap: 1.5rem; }
.input-group { position: relative; }
.form-input {
    width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-glass); border-radius: 12px;
    color: var(--text-primary); font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-input:focus { border-color: var(--brand-orange); box-shadow: 0 0 15px rgba(255,107,0,0.2); }
.input-group label {
    position: absolute; left: 1.2rem; top: 1.2rem; color: var(--text-muted);
    transition: all 0.3s ease; pointer-events: none;
}
.form-input:focus ~ label, .form-input:valid ~ label {
    top: -0.6rem; left: 1rem; font-size: 0.8rem; background: var(--bg-surface); padding: 0 0.5rem; color: var(--brand-orange); border-radius: 4px;
}
.submit-btn { width: 100%; margin-top: 1rem; border-radius: 12px; padding: 1.2rem; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 0; border-top: 1px solid var(--border-glass);
}
.footer-logo { display: flex; align-items: center; }
.small-footer-logo { height: 30px; width: auto; opacity: 0.8; }
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.social-links a:hover { color: var(--brand-teal); }

/* Hamburger */
.hamburger { display: none; cursor: none; flex-direction: column; gap: 6px; z-index: 1001; }
.hamburger span { width: 30px; height: 2px; background: #fff; transition: 0.4s; transform-origin: left; }

/* Animations & Utils */
.reveal-up { opacity: 0; transform: translateY(50px); animation: revealUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.reveal-scale { opacity: 0; transform: scale(0.9); animation: revealScaleAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes revealUpAnim { to { opacity: 1; transform: translateY(0); } }
@keyframes revealScaleAnim { to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }

.scroll-reveal { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-reveal.up { transform: translateY(50px); }
.scroll-reveal.left { transform: translateX(-50px); }
.scroll-reveal.right { transform: translateX(50px); }
.scroll-reveal.active { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; text-align: center; padding-top: 6rem; gap: 2rem; }
    .hero p { margin: 0 auto 3rem auto; }
    .hero-actions { justify-content: center; }
    .title-3d { font-size: 4rem; }
    .grid-2-col, .contact-card { grid-template-columns: 1fr; }
    .pricing-grid, .pricing-grid.two-cols { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-card.popular { transform: scale(1); }
    .timeline-container { padding-left: 1rem; }
}

@media (max-width: 768px) {
    body { cursor: auto; } /* Disable custom cursor on mobile */
    .custom-cursor, .cursor-follower { display: none !important; }
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--bg-dark); flex-direction: column; justify-content: center;
        opacity: 0; visibility: hidden; transition: all 0.4s ease;
    }
    .nav-links.active { opacity: 1; visibility: visible; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .contact-card { padding: 2rem; }
    
    .masonry-grid { grid-template-columns: 1fr; }
    .item-large, .item-wide { grid-column: span 1; grid-row: span 1; }
    .pricing-tabs { flex-wrap: wrap; gap: 0.5rem; }
    .tab-btn { padding: 0.5rem 1rem; font-size: 0.9rem; flex: 1 1 calc(33% - 1rem); text-align: center; }
    .section-padding { padding-top: 4rem; padding-bottom: 4rem; }
    .section-title { font-size: 2.2rem; }
    .carousel-slide { min-width: calc(100% - 1rem); }
}

@media (max-width: 480px) {
    .title-3d { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-actions .btn-primary { width: 100%; }
    .tab-btn { flex: 1 1 calc(50% - 1rem); }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-teal));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s;
}
