/* ===================================
   GrobMedia - Cinematic Website Styles
   =================================== */

/* Font Face */
@font-face {
    font-family: 'Kastore';
    src: url('Kastore-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

/* CSS Variables */
:root {
    /* Colors */
    --primary: #008dd8;
    --primary-dark: #006ba8;
    --primary-light: #33a3e0;

    --dark-bg: #1e2330;
    --dark-secondary: #2a2f3e;
    --dark-tertiary: #363c4f;

    --white: #ffffff;
    --gray-light: #cbd5e1;
    --gray: #94a3b8;
    --gray-dark: #64748b;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Kastore', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.2;
}

/* Viewfinder Overlay */
.viewfinder-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 1s ease;
}

body.viewfinder-active .viewfinder-overlay {
    opacity: 1;
}

.viewfinder-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 141, 216, 0.6);
}

.viewfinder-corner.tl {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 35vw), calc(-50% - 35vh));
    border-right: none;
    border-bottom: none;
}

.viewfinder-corner.tr {
    top: 50%;
    right: 50%;
    transform: translate(calc(50% + 35vw), calc(-50% - 35vh));
    border-left: none;
    border-bottom: none;
}

.viewfinder-corner.bl {
    bottom: 50%;
    left: 50%;
    transform: translate(calc(-50% - 35vw), calc(50% + 35vh));
    border-right: none;
    border-top: none;
}

.viewfinder-corner.br {
    bottom: 50%;
    right: 50%;
    transform: translate(calc(50% + 35vw), calc(50% + 35vh));
    border-left: none;
    border-top: none;
}

.viewfinder-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vh;
    background-image:
        linear-gradient(rgba(0, 141, 216, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 141, 216, 0.1) 1px, transparent 1px);
    background-size: 33.33% 33.33%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 35, 48, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 141, 216, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #008dd8;
    letter-spacing: 1px;
}

.rec-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 600;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

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

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-light);
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 141, 216, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 141, 216, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 141, 216, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    transition: transform 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
    background: var(--dark-secondary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    /* Placeholder background - shows when video is not loaded */
    background:
        linear-gradient(135deg, rgba(0, 141, 216, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, var(--dark-bg) 25%, transparent 25%, transparent 75%, var(--dark-bg) 75%, var(--dark-bg)),
        linear-gradient(45deg, var(--dark-bg) 25%, var(--dark-secondary) 25%, var(--dark-secondary) 75%, var(--dark-bg) 75%, var(--dark-bg));
    background-size: 100% 100%, 60px 60px, 60px 60px;
    background-position: 0 0, 0 0, 30px 30px;
    animation: placeholderPulse 10s ease-in-out infinite;
}

@keyframes placeholderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.85) 0%, rgba(30, 35, 48, 0.7) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 141, 216, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 141, 216, 0.1);
    border: 1px solid rgba(0, 141, 216, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.aperture-icon {
    font-size: 1.25rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #008dd8 0%, #33a3e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 141, 216, 0.05);
    border: 1px solid rgba(0, 141, 216, 0.15);
    border-radius: 50px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(0, 141, 216, 0.1);
    border-color: rgba(0, 141, 216, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-light);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    background: rgba(0, 141, 216, 0.1);
    border: 1px solid rgba(0, 141, 216, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    background: var(--dark-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        to bottom,
        var(--dark-bg) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-bg);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 141, 216, 0.1);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 141, 216, 0.4);
    box-shadow: 0 20px 60px rgba(0, 141, 216, 0.15);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-light);
}

/* UGC Content Section */
.ugc-section {
    background: var(--dark-secondary);
    position: relative;
    overflow: visible;
    border-top: 1px solid rgba(0, 141, 216, 0.2);
    border-bottom: 1px solid rgba(0, 141, 216, 0.2);
}

.ugc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 216, 0.3), transparent);
}

.ugc-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 216, 0.3), transparent);
}

.ugc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ugc-content {
    max-width: 600px;
}

.ugc-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.ugc-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ugc-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--dark-secondary);
    border-radius: 12px;
    border: 1px solid rgba(0, 141, 216, 0.1);
    transition: var(--transition);
}

.ugc-feature:hover {
    border-color: rgba(0, 141, 216, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.ugc-visual {
    position: relative;
    height: 520px;
    overflow: visible;
    padding: 30px;
}

.ugc-grid {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ugc-mockup {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.ugc-mockup-1 {
    top: 30px;
    left: 5%;
    animation-delay: 0s;
}

.ugc-mockup-2 {
    top: 150px;
    left: 38%;
    animation-delay: 1s;
}

.ugc-mockup-3 {
    top: 30px;
    right: 5%;
    animation-delay: 2s;
}

.mockup-phone {
    width: 180px;
    height: 360px;
    background: var(--dark-secondary);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--dark-tertiary);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ugc-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #008dd8 0%, #00c6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.ugc-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio {
    background: var(--dark-bg);
    position: relative;
    border-top: 1px solid rgba(0, 141, 216, 0.2);
    border-bottom: 1px solid rgba(0, 141, 216, 0.2);
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 216, 0.3), transparent);
}

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 216, 0.3), transparent);
}

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

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Portfolio Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.portfolio-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--dark-tertiary);
    border-radius: 50px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-tab:hover {
    border-color: var(--primary);
    color: var(--white);
}

.portfolio-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--dark-secondary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-main iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.gallery-main .video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.gallery-main .video-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-main .video-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Thumbnail Strip */
.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark-tertiary);
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: var(--dark-tertiary);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb.vertical {
    width: 120px;
    aspect-ratio: 9 / 16;
}

.gallery-thumb:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 141, 216, 0.4);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb .thumb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    font-size: 0.7rem;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 141, 216, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover .play-icon {
    opacity: 1;
}

.gallery-thumb .play-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
    margin-left: 2px;
}

/* Highlight text style */
.highlight-text {
    color: var(--primary);
    font-weight: 600;
}

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

.portfolio-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.play-button {
    transform: scale(0.8);
    transition: var(--transition);
}

.portfolio-item:hover .play-button {
    transform: scale(1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    z-index: 2;
    transform: translateY(100%);
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.portfolio-client {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.portfolio-category {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio YouTube Embed */
.portfolio-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-thumbnail.has-video {
    pointer-events: auto;
}

.portfolio-placeholder {
    background: linear-gradient(135deg, #008dd8 0%, #0a0e27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Portfolio Loading State */
.portfolio-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--gray);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dark-tertiary);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--gray);
}

.portfolio-empty p {
    margin-bottom: 1rem;
}

.portfolio-empty a {
    color: var(--primary);
    text-decoration: underline;
}

/* Process Section */
.process {
    background: var(--dark-secondary);
}

/* Circular Process Layout */
.process-circle-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    min-height: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

.process-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 141, 216, 0.5);
    z-index: 10;
}

.center-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.center-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
}

.process-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    z-index: 1;
}

.progress-circle {
    animation: drawCircle 3s ease-in-out forwards;
}

@keyframes drawCircle {
    from {
        stroke-dashoffset: 1005;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.process-step-circle {
    position: absolute;
    width: 260px;
    background: var(--dark-bg);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 141, 216, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.process-step-circle:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 141, 216, 0.3);
    z-index: 10;
}

/* Individual hover animations for each step */
.step-1:hover {
    transform: translate(-50%, -15px) !important;
}

.step-2:hover {
    transform: translate(calc(0% + 15px), calc(0% - 15px)) !important;
}

.step-3:hover {
    transform: translate(calc(0% + 15px), calc(0% + 15px)) !important;
}

.step-4:hover {
    transform: translate(calc(0% - 15px), calc(0% + 15px)) !important;
}

.step-5:hover {
    transform: translate(calc(0% - 15px), calc(0% - 15px)) !important;
}

.process-step-circle .step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 141, 216, 0.4);
    margin-bottom: 1rem;
}

.process-step-circle .step-content {
    padding-top: 0;
}

.process-step-circle .step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.process-step-circle .step-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.process-step-circle .step-timeline {
    display: inline-block;
    background: rgba(0, 141, 216, 0.1);
    border: 1px solid rgba(0, 141, 216, 0.3);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* Position steps symmetrically around circle - 72° intervals (360°/5) */
/* Step 1 - Top (0°) */
.step-1 {
    top: 8%;
    left: 50%;
    transform: translate(-50%, 0);
}

/* Step 2 - Top Right (72°) */
.step-2 {
    top: 28%;
    right: 8%;
    transform: translate(0, 0);
}

/* Step 3 - Bottom Right (144°) */
.step-3 {
    bottom: 15%;
    right: 20%;
    transform: translate(0, 0);
}

/* Step 4 - Bottom Left (216°) */
.step-4 {
    bottom: 15%;
    left: 20%;
    transform: translate(0, 0);
}

/* Step 5 - Top Left (288°) */
.step-5 {
    top: 28%;
    left: 8%;
    transform: translate(0, 0);
}

/* Legacy timeline styles (kept for backwards compatibility) */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(0, 141, 216, 0.2) 100%);
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 141, 216, 0.4);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 2rem;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.step-timeline {
    display: inline-block;
    background: rgba(0, 141, 216, 0.1);
    border: 1px solid rgba(0, 141, 216, 0.3);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* Why Us Section */
.why-us {
    background: var(--dark-bg);
}

.why-us-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-us-statement {
    margin-bottom: 4rem;
}

.why-us-statement h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.why-us-statement p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.why-us-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.why-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-stat .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 600px) {
    .why-us-stats {
        gap: 2.5rem;
    }

    .why-stat .stat-number {
        font-size: 2.25rem;
    }
}

/* Brand Carousel Section */
.brands-carousel {
    background: var(--dark-secondary);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 141, 216, 0.2);
    border-bottom: 1px solid rgba(0, 141, 216, 0.2);
}

.brands-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 216, 0.3), transparent);
}

.brands-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 141, 216, 0.3), transparent);
}

.brands-carousel .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-secondary) 0%, transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark-secondary) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 4rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--dark-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    min-width: 220px;
    height: 100px;
}

.brand-logo img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.brand-logo:hover {
    border-color: rgba(0, 141, 216, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 141, 216, 0.15);
}

.brand-logo:hover img {
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-bg);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: var(--dark-bg);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 141, 216, 0.2);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.125rem;
}

.author-title {
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover,
.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* About Section */
.about {
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: var(--dark-secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0, 141, 216, 0.3);
}

.camera-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    font-size: 2.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    font-weight: 600;
    color: var(--white);
    font-size: 1.125rem;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--dark-bg);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 141, 216, 0.2);
    position: relative;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select option {
    background: #1a1a2e;
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
}

.form-success.show ~ .contact-form {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--gray);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: var(--gray);
    display: block;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Diagonal Animations */
[data-aos="fade-up-right"] {
    transform: translate(-50px, 50px);
}

[data-aos="fade-up-right"].aos-animate {
    transform: translate(0, 0);
}

[data-aos="fade-up-left"] {
    transform: translate(50px, 50px);
}

[data-aos="fade-up-left"].aos-animate {
    transform: translate(0, 0);
}

[data-aos="fade-down-right"] {
    transform: translate(-50px, -50px);
}

[data-aos="fade-down-right"].aos-animate {
    transform: translate(0, 0);
}

[data-aos="fade-down-left"] {
    transform: translate(50px, -50px);
}

[data-aos="fade-down-left"].aos-animate {
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-content,
    .contact-wrapper,
    .ugc-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ugc-visual {
        height: 400px;
        overflow: visible;
    }

    .ugc-mockup {
        animation: none;
    }

    .mockup-phone {
        width: 130px;
        height: 260px;
    }

    .ugc-mockup-1 {
        top: 20px;
        left: 5%;
    }

    .ugc-mockup-2 {
        top: 70px;
        left: 38%;
        transform: none;
    }

    .ugc-mockup-3 {
        top: 20px;
        right: 5%;
    }

    /* Portfolio Grid - Tablet: 2 columns */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Circular Process - Tablet */
    .process-circle-container {
        max-width: 900px;
        min-height: 850px;
    }

    .process-center {
        width: 180px;
        height: 180px;
    }

    .center-icon {
        font-size: 3rem;
    }

    .center-text {
        font-size: 1.1rem;
    }

    .process-ring {
        width: 550px;
        height: 550px;
    }

    .process-step-circle {
        width: 230px;
        padding: 1.5rem 1.25rem;
    }

    .step-1 {
        top: 6%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .step-2 {
        top: 26%;
        right: 6%;
    }

    .step-3 {
        bottom: 14%;
        right: 18%;
    }

    .step-4 {
        bottom: 14%;
        left: 18%;
    }

    .step-5 {
        top: 26%;
        left: 6%;
    }

    /* Legacy timeline styles */
    .process-timeline::before {
        left: 40px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
        border-bottom: 1px solid rgba(0, 141, 216, 0.2);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Optimize video for mobile */
    .hero-video {
        display: none; /* Hide video on mobile to save bandwidth */
    }

    .hero-bg {
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio Grid - Mobile: 1 column */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-info {
        transform: translateY(0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    }

    /* UGC Section Mobile - Use flexbox instead of absolute positioning */
    .ugc-visual {
        height: auto;
        overflow: visible;
        padding: 20px;
    }

    .ugc-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
        padding: 0;
    }

    .ugc-mockup {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        animation: none !important;
    }

    .ugc-mockup-2 {
        margin-top: 30px;
    }

    .mockup-phone {
        width: 100px;
        height: 200px;
    }

    .ugc-content {
        text-align: center;
    }

    .ugc-content .btn {
        margin: 0 auto;
    }

    /* Circular Process - Mobile */
    .process-circle-container {
        max-width: 100%;
        aspect-ratio: auto;
        min-height: 1400px;
    }

    .process-center {
        width: 150px;
        height: 150px;
        top: 50px;
    }

    .center-icon {
        font-size: 2.5rem;
    }

    .center-text {
        font-size: 1rem;
    }

    .process-ring {
        display: none;
    }

    .process-step-circle {
        width: 100%;
        max-width: 350px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .step-1 {
        top: 250px;
    }

    .step-2 {
        top: 480px;
    }

    .step-3 {
        top: 710px;
    }

    .step-4 {
        top: 940px;
    }

    .step-5 {
        top: 1170px;
    }

    /* Legacy timeline */
    .process-step {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    /* Brand Carousel Mobile */
    .brands-carousel {
        padding: 4rem 0;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 50px;
    }

    .carousel-track {
        gap: 2rem;
    }

    .brand-logo {
        padding: 1.5rem 2.5rem;
        min-width: 160px;
    }

    .brand-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* UGC Section - Small Phones */
    .mockup-phone {
        width: 95px;
        height: 190px;
    }

    .ugc-grid {
        gap: 8px;
    }

    .ugc-mockup-2 {
        margin-top: 25px;
    }
}

/* Smooth Scroll */
html {
    scroll-padding-top: 100px;
}

/* ============================================
   CINEMATIC 3D HERO SECTION
   ============================================ */

.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 141, 216, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(13, 18, 48, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, #0a0e27 0%, #080b1f 100%);
    padding-top: 0;
    display: block;
}

/* Hero Film Grain - fades out on scroll */
.hero-grain {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: heroGrainShift 0.5s steps(10) infinite;
}

@keyframes heroGrainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -2%); }
    20% { transform: translate(1%, 3%); }
    30% { transform: translate(-3%, 1%); }
    40% { transform: translate(3%, -1%); }
    50% { transform: translate(-1%, 2%); }
    60% { transform: translate(2%, -3%); }
    70% { transform: translate(-2%, 3%); }
    80% { transform: translate(3%, 1%); }
    90% { transform: translate(1%, -2%); }
}

/* Holographic Logo Background */
.holo-logos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.holo-logo {
    position: absolute;
    width: 300px;
    height: auto;
    opacity: 0.12;
    filter: blur(3px);
    mix-blend-mode: screen;
    z-index: 2;
}

/* Holographic color effect - positioned in empty spaces around video cards */
.holo-logo-1 {
    top: 5%;
    left: 3%;
    width: 150px;
    opacity: 0.1;
    filter: blur(3px) hue-rotate(0deg);
    animation: holoFloat1 15s ease-in-out infinite, holoColor 8s linear infinite;
}

.holo-logo-2 {
    bottom: 10%;
    left: 5%;
    top: auto;
    width: 180px;
    opacity: 0.08;
    filter: blur(4px) hue-rotate(60deg);
    animation: holoFloat2 18s ease-in-out infinite 1s, holoColor 10s linear infinite 2s;
}

.holo-logo-3 {
    top: 5%;
    right: 3%;
    left: auto;
    width: 160px;
    opacity: 0.1;
    filter: blur(3px) hue-rotate(120deg);
    animation: holoFloat3 20s ease-in-out infinite 2s, holoColor 12s linear infinite 1s;
}

.holo-logo-4 {
    bottom: 8%;
    right: 5%;
    left: auto;
    top: auto;
    width: 140px;
    opacity: 0.09;
    filter: blur(3px) hue-rotate(180deg);
    animation: holoFloat4 17s ease-in-out infinite 0.5s, holoColor 9s linear infinite 3s;
}

.holo-logo-5 {
    bottom: 12%;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 200px;
    filter: blur(5px) hue-rotate(240deg);
    opacity: 0.06;
    animation: holoFloat5 22s ease-in-out infinite 1.5s, holoColor 11s linear infinite;
}

/* Float animations for logos */
@keyframes holoFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, 30px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-10px, 50px) rotate(-3deg) scale(0.95); }
    75% { transform: translate(30px, 20px) rotate(3deg) scale(1.02); }
}

@keyframes holoFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, -20px) rotate(-5deg); }
    66% { transform: translate(-20px, -40px) rotate(4deg); }
}

@keyframes holoFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-30px, 40px) rotate(-6deg) scale(1.1); }
}

@keyframes holoFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-25px, -15px) rotate(4deg); }
    75% { transform: translate(15px, -30px) rotate(-4deg); }
}

@keyframes holoFloat5 {
    0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); }
    33% { transform: translateX(-50%) translate(20px, -20px) scale(1.05); }
    66% { transform: translateX(-50%) translate(-20px, 20px) scale(0.95); }
}

/* Holographic color shift */
@keyframes holoColor {
    0% { filter: blur(4px) hue-rotate(0deg) saturate(1.5); opacity: 0.06; }
    25% { filter: blur(3px) hue-rotate(90deg) saturate(2); opacity: 0.08; }
    50% { filter: blur(5px) hue-rotate(180deg) saturate(1.5); opacity: 0.05; }
    75% { filter: blur(3px) hue-rotate(270deg) saturate(2); opacity: 0.07; }
    100% { filter: blur(4px) hue-rotate(360deg) saturate(1.5); opacity: 0.06; }
}

/* Viewfinder Overlay */
.hero-viewfinder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.vf-grid {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    opacity: 0.12;
}

.vf-cell {
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.vf-cell:nth-child(1) { border-top: none; border-left: none; }
.vf-cell:nth-child(2) { border-top: none; }
.vf-cell:nth-child(3) { border-top: none; border-right: none; }
.vf-cell:nth-child(4) { border-left: none; }
.vf-cell:nth-child(6) { border-right: none; }
.vf-cell:nth-child(7) { border-bottom: none; border-left: none; }
.vf-cell:nth-child(8) { border-bottom: none; }
.vf-cell:nth-child(9) { border-bottom: none; border-right: none; }

.vf-bracket {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.vf-tl { top: 5%; left: 5%; border-right: none; border-bottom: none; }
.vf-tr { top: 5%; right: 5%; border-left: none; border-bottom: none; }
.vf-bl { bottom: 5%; left: 5%; border-right: none; border-top: none; }
.vf-br { bottom: 5%; right: 5%; border-left: none; border-top: none; }

.vf-focus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    opacity: 0.2;
}

.vf-focus::before,
.vf-focus::after {
    content: '';
    position: absolute;
    background: #fff;
}

.vf-focus::before {
    width: 2px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vf-focus::after {
    width: 18px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* REC Indicator */
.hero-rec {
    position: absolute;
    top: 110px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 60;
    font-family: 'Inter', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff3b3b;
}

.rec-dot-anim {
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border-radius: 50%;
    animation: recBlinkAnim 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #ff3b3b, 0 0 20px rgba(255, 59, 59, 0.5);
}

@keyframes recBlinkAnim {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Timecode */
.hero-timecode {
    position: absolute;
    top: 110px;
    right: 30px;
    font-family: 'Inter', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 60;
}

/* 3D Scene Container */
.scene-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    overflow: hidden;
}

.camera-rig-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: cameraPush3d 9s ease-in-out infinite;
}

@keyframes cameraPush3d {
    0%, 100% {
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateZ(80px) rotateX(1deg) rotateY(-0.5deg);
    }
    50% {
        transform: translateZ(120px) rotateX(0.5deg) rotateY(0.5deg);
    }
    75% {
        transform: translateZ(60px) rotateX(-0.5deg) rotateY(-0.3deg);
    }
}

.cards-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Film Cards */
.film-card-3d {
    position: absolute;
    width: 260px;
    height: 165px;
    border-radius: 8px;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    overflow: hidden;
}

.film-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.fc-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f3d 0%, #0d1230 100%);
}

/* Card Gradients */
.fc-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.fc-grad-1 {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 141, 216, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(120, 80, 200, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1a1f3d 0%, #0d1230 100%);
}

.fc-grad-2 {
    background:
        radial-gradient(ellipse at 80% 30%, rgba(255, 120, 50, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(0, 141, 216, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #1f1a2d 0%, #12101f 100%);
}

.fc-grad-3 {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 200, 180, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(100, 50, 150, 0.25) 0%, transparent 50%),
        linear-gradient(180deg, #1a2030 0%, #0f1020 100%);
}

.fc-grad-4 {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 50, 100, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 141, 216, 0.3) 0%, transparent 50%),
        linear-gradient(90deg, #1f1525 0%, #101530 100%);
}

.fc-grad-5 {
    background:
        radial-gradient(ellipse at 60% 40%, rgba(0, 141, 216, 0.5) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 80%, rgba(50, 100, 200, 0.3) 0%, transparent 50%),
        linear-gradient(145deg, #0d1530 0%, #0a0e27 100%);
}

.fc-grad-6 {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(150, 100, 255, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(0, 180, 200, 0.25) 0%, transparent 50%),
        linear-gradient(160deg, #151a35 0%, #0a1020 100%);
}

/* Film Sprocket Lines */
.fc-sprockets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fc-sprockets::before,
.fc-sprockets::after {
    content: '';
    position: absolute;
    left: 8px;
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 4px,
        rgba(255,255,255,0.12) 4px,
        rgba(255,255,255,0.12) 8px
    );
}

.fc-sprockets::after {
    left: auto;
    right: 8px;
}

/* Sheen Effect */
.fc-sheen {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.film-card-3d:hover .fc-sheen {
    left: 150%;
}

/* Featured Card Glow */
.fc-featured {
    box-shadow:
        0 0 40px rgba(0, 141, 216, 0.6),
        0 0 80px rgba(0, 141, 216, 0.3),
        inset 0 0 30px rgba(0, 141, 216, 0.1);
}

.fc-featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    opacity: 0.6;
    animation: fcGlowPulse 3s ease-in-out infinite;
}

@keyframes fcGlowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Card Positioning & Animations */
.film-card-3d:nth-child(1) {
    top: 18%;
    left: 8%;
    animation:
        fcFloat1 9s ease-in-out infinite,
        fcBreathe 4s ease-in-out infinite;
}

.film-card-3d:nth-child(2) {
    top: 62%;
    left: 5%;
    animation:
        fcFloat2 9s ease-in-out infinite,
        fcBreathe 4.5s ease-in-out infinite 0.5s;
}

.film-card-3d:nth-child(3) {
    top: 12%;
    right: 10%;
    left: auto;
    animation:
        fcFloat3 9s ease-in-out infinite,
        fcBreathe 3.8s ease-in-out infinite 1s;
}

.film-card-3d:nth-child(4) {
    top: 58%;
    right: 6%;
    left: auto;
    animation:
        fcFloat4 9s ease-in-out infinite,
        fcBreathe 4.2s ease-in-out infinite 1.5s;
}

.film-card-3d:nth-child(5) {
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 190px;
    animation:
        fcFloatFeatured 9s ease-in-out infinite,
        fcBreathe 5s ease-in-out infinite 0.2s;
}

.film-card-3d:nth-child(6) {
    top: 78%;
    left: 32%;
    animation:
        fcFloat6 9s ease-in-out infinite,
        fcBreathe 4.3s ease-in-out infinite 0.8s;
}

/* Float Animations with Z-depth */
@keyframes fcFloat1 {
    0%, 100% {
        transform: translateZ(-200px) rotateY(-8deg) rotateX(3deg) translateY(0px);
    }
    33% {
        transform: translateZ(-180px) rotateY(-6deg) rotateX(5deg) translateY(-15px);
    }
    66% {
        transform: translateZ(-220px) rotateY(-10deg) rotateX(2deg) translateY(10px);
    }
}

@keyframes fcFloat2 {
    0%, 100% {
        transform: translateZ(-300px) rotateY(5deg) rotateX(-2deg) translateY(0px);
    }
    50% {
        transform: translateZ(-280px) rotateY(7deg) rotateX(-4deg) translateY(-20px);
    }
}

@keyframes fcFloat3 {
    0%, 100% {
        transform: translateZ(-250px) rotateY(10deg) rotateX(4deg) translateY(0px);
    }
    40% {
        transform: translateZ(-230px) rotateY(8deg) rotateX(2deg) translateY(-12px);
    }
    70% {
        transform: translateZ(-270px) rotateY(12deg) rotateX(5deg) translateY(8px);
    }
}

@keyframes fcFloat4 {
    0%, 100% {
        transform: translateZ(-350px) rotateY(-6deg) rotateX(-3deg) translateY(0px);
    }
    55% {
        transform: translateZ(-320px) rotateY(-4deg) rotateX(-1deg) translateY(-18px);
    }
}

@keyframes fcFloatFeatured {
    0%, 100% {
        transform: translateX(-50%) translateZ(-80px) rotateY(0deg) rotateX(2deg) translateY(0px);
    }
    30% {
        transform: translateX(-50%) translateZ(-40px) rotateY(-2deg) rotateX(3deg) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateZ(-60px) rotateY(2deg) rotateX(1deg) translateY(5px);
    }
}

@keyframes fcFloat6 {
    0%, 100% {
        transform: translateZ(-400px) rotateY(3deg) rotateX(-5deg) translateY(0px);
    }
    45% {
        transform: translateZ(-380px) rotateY(5deg) rotateX(-3deg) translateY(-14px);
    }
}

@keyframes fcBreathe {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.05); }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: particleDriftUp linear infinite;
}

@keyframes particleDriftUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        opacity: 0;
        transform: translateY(-20vh) translateX(30px);
    }
}

/* Hero Vignette */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 45;
    background: radial-gradient(
        ellipse 70% 60% at 50% 50%,
        transparent 0%,
        rgba(10, 14, 39, 0.4) 70%,
        rgba(10, 14, 39, 0.85) 100%
    );
}

/* Hero Bottom Fade - Smooth transition to next section */
.hero-cinematic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(30, 35, 48, 0.3) 30%,
        rgba(30, 35, 48, 0.7) 60%,
        var(--dark-bg) 100%
    );
    pointer-events: none;
    z-index: 48;
}

/* Hero Content */
.hero-content-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 55;
    pointer-events: none;
    width: 90%;
    max-width: 900px;
}

/* Blur backdrop behind content */
.hero-content-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    background: radial-gradient(
        ellipse 50% 40% at 50% 50%,
        rgba(10, 14, 39, 0.7) 0%,
        rgba(10, 14, 39, 0.4) 40%,
        transparent 70%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: radial-gradient(
        ellipse 50% 45% at 50% 50%,
        black 0%,
        black 30%,
        transparent 70%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 50% 45% at 50% 50%,
        black 0%,
        black 30%,
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}

/* Hero Badge */
.hero-badge-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 141, 216, 0.1);
    border: 1px solid rgba(0, 141, 216, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #33a3e0;
    margin-bottom: 2rem;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-badge-3d .aperture-icon {
    font-size: 1.25rem;
    color: var(--primary);
}

.hero-headline-3d {
    font-family: 'Kastore', 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(0, 141, 216, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headlineFloat3d 6s ease-in-out infinite;
}

.gradient-text-3d {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(0, 141, 216, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes headlineFloat3d {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero-sub-3d {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta-3d {
    pointer-events: auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 141, 216, 0.3);
    text-decoration: none;
}

.cta-btn-3d .btn-icon {
    transition: transform 0.3s ease;
}

.cta-btn-3d:hover .btn-icon {
    transform: translateX(5px);
}

.cta-btn-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 141, 216, 0.5);
    color: #fff;
}

.cta-btn-3d:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn-secondary-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-light);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn-secondary-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn-secondary-3d:hover {
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-btn-secondary-3d:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Info Bar */
.hero-info-bar {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    z-index: 60;
    text-transform: uppercase;
}

.hib-specs {
    display: flex;
    gap: 25px;
}

.hib-specs span {
    opacity: 0.7;
}

.hib-brand {
    opacity: 0.7;
}

/* Scroll Indicator for Cinematic Hero */
.hero-cinematic .scroll-indicator {
    z-index: 60;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-grain,
    .film-card-3d,
    .camera-rig-3d,
    .hero-headline-3d,
    .rec-dot-anim,
    .hero-particle {
        animation: none !important;
    }

    .film-card-3d {
        transform: translateZ(-100px) !important;
    }

    .film-card-3d:nth-child(5) {
        transform: translateX(-50%) translateZ(-50px) !important;
    }

    .fc-sheen {
        display: none;
    }
}

/* Responsive Cinematic Hero */
@media (max-width: 1024px) {
    .film-card-3d {
        width: 220px;
        height: 140px;
    }

    .film-card-3d:nth-child(5) {
        width: 260px;
        height: 165px;
    }

    .vf-bracket {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero-rec {
        top: 100px;
        left: 20px;
        font-size: 12px;
    }

    .hero-timecode {
        top: 100px;
        right: 20px;
        font-size: 11px;
    }

    .film-card-3d {
        width: 180px;
        height: 115px;
    }

    .film-card-3d:nth-child(5) {
        width: 220px;
        height: 140px;
    }

    .film-card-3d:nth-child(2),
    .film-card-3d:nth-child(6) {
        display: none;
    }

    .vf-bracket {
        width: 30px;
        height: 30px;
    }

    .vf-grid {
        opacity: 0.08;
    }

    .hero-info-bar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .hib-specs {
        gap: 15px;
    }

    .hero-cta-3d {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .cta-btn-3d,
    .cta-btn-secondary-3d {
        width: 100%;
        justify-content: center;
    }

    .hero-badge-3d {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .film-card-3d {
        width: 150px;
        height: 95px;
    }

    .film-card-3d:nth-child(5) {
        width: 200px;
        height: 125px;
    }

    .hero-headline-3d {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .hero-sub-3d {
        font-size: 0.95rem;
    }
}

/* ============================================
   3D HOLOGRAPHIC PORTFOLIO SECTION
   ============================================ */

.portfolio-3d {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--dark-bg) 0%,
        #0a0e27 30%,
        #0a0e27 70%,
        var(--dark-bg) 100%
    );
    min-height: 100vh;
    overflow: hidden;
    padding: 100px 0 120px;
}

/* Portfolio Grain */
.portfolio-grain {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: heroGrainShift 0.5s steps(10) infinite;
}

/* Portfolio Vignette */
.portfolio-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(
        ellipse 80% 60% at 50% 50%,
        transparent 0%,
        rgba(10, 14, 39, 0.5) 70%,
        rgba(10, 14, 39, 0.9) 100%
    );
}

.portfolio-3d .container {
    position: relative;
    z-index: 10;
}

.portfolio-3d .section-header {
    margin-bottom: 3rem;
}

/* 3D Scene - Disabled 3D transforms to fix Safari click issues */
.portfolio-scene {
    position: relative;
    width: 100%;
    height: 600px;
    /* perspective disabled for Safari compatibility */
}

.portfolio-camera {
    position: relative;
    width: 100%;
    height: 100%;
    /* 3D transforms disabled for Safari click compatibility */
}

.portfolio-cards-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

/* Holographic Video Card - Base */
.holo-card {
    position: absolute;
    border-radius: 12px;
    cursor: pointer;
    transform-style: flat;
    -webkit-transform-style: flat;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 10;
    /* Explicit touch/click handling for Safari */
    -webkit-tap-highlight-color: rgba(0, 141, 216, 0.3);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

/* Horizontal 16:9 cards */
.holo-card.holo-horizontal {
    width: 280px;
    height: 158px;
}

/* Vertical 9:16 cards */
.holo-card.holo-vertical {
    width: 160px;
    height: 284px;
}

.holo-card:hover {
    z-index: 100;
}

/* Card positions - 7 card layout: 2 vertical left, 3 horizontal center, 2 vertical right */

/* Position 1: Left vertical top (Finelli) */
.holo-card.holo-pos-1 {
    top: 8%;
    left: -1%;
    animation: holoFloat1 8s ease-in-out infinite;
}

/* Position 2: Left vertical bottom (Sulgen Recap) */
.holo-card.holo-pos-2 {
    bottom: 8%;
    left: 8%;
    animation: holoFloat2 8.5s ease-in-out infinite 0.5s;
}

/* Position 3: Center horizontal top-left */
.holo-card.holo-pos-3 {
    top: 5%;
    left: 50%;
    transform: translateX(-120%);
    animation: holoFloat3 9s ease-in-out infinite 0.3s;
}

/* Position 4: Center horizontal (featured) */
.holo-card.holo-pos-4 {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: holoFloat4 10s ease-in-out infinite 1s;
}

/* Featured card sizes */
.holo-card.holo-pos-4.holo-horizontal {
    width: 380px;
    height: 214px;
}

.holo-card.holo-pos-4.holo-vertical {
    width: 200px;
    height: 356px;
}

/* Position 5: Center horizontal top-right */
.holo-card.holo-pos-5 {
    top: 5%;
    left: 50%;
    transform: translateX(20%);
    animation: holoFloat5 9s ease-in-out infinite 0.6s;
}

/* Position 6: Right vertical top (Jaxon) */
.holo-card.holo-pos-6 {
    top: 8%;
    right: -1%;
    left: auto;
    animation: holoFloat6 8s ease-in-out infinite 1.2s;
}

/* Position 7: Right vertical bottom (Switzerland Chur) */
.holo-card.holo-pos-7 {
    bottom: 8%;
    right: 8%;
    left: auto;
    animation: holoFloat7 8.5s ease-in-out infinite 1.5s;
}

/* Float animations - simplified for Safari click compatibility */
@keyframes holoFloat1 {
    0%, 100% { transform: translateY(0) scale(0.95); }
    50% { transform: translateY(-10px) scale(0.95); }
}

@keyframes holoFloat2 {
    0%, 100% { transform: translateY(0) scale(0.92); }
    50% { transform: translateY(-12px) scale(0.92); }
}

@keyframes holoFloat3 {
    0%, 100% { transform: translateX(-120%) translateY(0) scale(0.95); }
    50% { transform: translateX(-120%) translateY(-10px) scale(0.95); }
}

@keyframes holoFloat4 {
    0%, 100% { transform: translateX(-50%) translateY(-50%); }
    50% { transform: translateX(-50%) translateY(-52%); }
}

@keyframes holoFloat5 {
    0%, 100% { transform: translateX(20%) translateY(0) scale(0.95); }
    50% { transform: translateX(20%) translateY(-10px) scale(0.95); }
}

@keyframes holoFloat6 {
    0%, 100% { transform: translateY(0) scale(0.95); }
    50% { transform: translateY(-10px) scale(0.95); }
}

@keyframes holoFloat7 {
    0%, 100% { transform: translateY(0) scale(0.92); }
    50% { transform: translateY(-12px) scale(0.92); }
}

/* Card Inner */
.holo-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1530 0%, #0a0e27 100%);
    border: 1px solid rgba(0, 141, 216, 0.3);
    pointer-events: none;
}

.holo-card-inner * {
    pointer-events: none;
}

/* Holographic effect overlay */
.holo-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: screen;
}

/* Scan lines */
.holo-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 141, 216, 0.03) 2px,
        rgba(0, 141, 216, 0.03) 4px
    );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Color shift / chromatic aberration */
.holo-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 141, 216, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 200, 255, 0.1) 100%
    );
    animation: holoShift 4s ease-in-out infinite;
}

@keyframes holoShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Glitch flicker - disabled to prevent visual glitches */
.holo-glitch {
    display: none;
}

/* Video/Thumbnail */
.holo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.1) brightness(0.9);
    transition: filter 0.4s ease;
    pointer-events: none;
}

.holo-card:hover .holo-video {
    filter: saturate(1) contrast(1) brightness(1);
}

.holo-card:hover .holo-effect,
.holo-card:hover .holo-glitch {
    opacity: 0 !important;
    animation: none;
}

.holo-card:hover .holo-effect::before,
.holo-card:hover .holo-effect::after {
    opacity: 0;
}

/* Card glow on hover */
.holo-card:hover .holo-card-inner {
    box-shadow:
        0 0 30px rgba(0, 141, 216, 0.5),
        0 0 60px rgba(0, 141, 216, 0.3),
        inset 0 0 20px rgba(0, 141, 216, 0.1);
    border-color: var(--primary);
}

/* Play button overlay */
.holo-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(0, 141, 216, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
}

.holo-play svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 4px;
}

.holo-card:hover .holo-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Card title - attached to bottom of card */
.holo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 8px 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    z-index: 15;
    border-radius: 0 0 12px 12px;
}

.holo-title h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.holo-title span {
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.holo-title .holo-location {
    display: block;
    font-size: 0.55rem;
    color: var(--gray);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* Featured card (center) */
.holo-card.featured .holo-card-inner {
    border: 2px solid var(--primary);
    box-shadow:
        0 0 40px rgba(0, 141, 216, 0.4),
        0 0 80px rgba(0, 141, 216, 0.2);
}

/* Portfolio hint */
.portfolio-hint {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 2rem;
    opacity: 0.7;
}

/* ============================================
   VIDEO MODAL
   ============================================ */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: #0a0e27;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 141, 216, 0.3);
    box-shadow: 0 0 60px rgba(0, 141, 216, 0.3);
}

.video-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-video {
    width: 100%;
    background: #000;
}

/* Horizontal 16:9 modal */
.modal-content.modal-horizontal {
    max-width: 900px;
}

.modal-content.modal-horizontal .modal-video {
    aspect-ratio: 16 / 9;
}

/* Vertical 9:16 modal */
.modal-content.modal-vertical {
    max-width: 400px;
}

.modal-content.modal-vertical .modal-video {
    aspect-ratio: 9 / 16;
    max-height: 70vh;
}

.modal-video iframe,
.modal-video video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

.modal-info {
    padding: 20px 25px;
    background: linear-gradient(0deg, #0a0e27 0%, #0d1230 100%);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
}

.modal-category {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive 3D Portfolio */
@media (max-width: 1200px) {
    .holo-card.holo-horizontal {
        width: 220px;
        height: 124px;
    }

    .holo-card.holo-vertical {
        width: 120px;
        height: 213px;
    }

    .holo-card.holo-pos-4.holo-horizontal {
        width: 280px;
        height: 158px;
    }

    .holo-card.holo-pos-4.holo-vertical {
        width: 150px;
        height: 267px;
    }
}

@media (max-width: 992px) {
    .holo-card.holo-horizontal {
        width: 180px;
        height: 101px;
    }

    .holo-card.holo-vertical {
        width: 100px;
        height: 178px;
    }

    .holo-card.holo-pos-4.holo-horizontal {
        width: 240px;
        height: 135px;
    }

    .holo-card.holo-pos-4.holo-vertical {
        width: 130px;
        height: 231px;
    }

    /* Hide bottom vertical cards on tablets */
    .holo-card.holo-pos-2,
    .holo-card.holo-pos-7 {
        display: none;
    }
}

@media (max-width: 768px) {
    .portfolio-scene {
        height: 500px;
    }

    .holo-card.holo-horizontal {
        width: 150px;
        height: 84px;
    }

    .holo-card.holo-vertical {
        width: 85px;
        height: 151px;
    }

    .holo-card.holo-pos-4.holo-horizontal {
        width: 200px;
        height: 113px;
    }

    .holo-card.holo-pos-4.holo-vertical {
        width: 110px;
        height: 196px;
    }

    /* Show more cards on mobile - only hide bottom positions */
    .holo-card.holo-pos-2,
    .holo-card.holo-pos-7 {
        display: none;
    }

    .portfolio-camera {
        animation: none;
    }

    .modal-content.modal-horizontal,
    .modal-content.modal-vertical {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .portfolio-scene {
        height: 400px;
    }

    .holo-card.holo-horizontal {
        width: 120px;
        height: 68px;
    }

    .holo-card.holo-vertical {
        width: 70px;
        height: 124px;
    }

    .holo-card.holo-pos-4.holo-horizontal {
        width: 160px;
        height: 90px;
    }

    .holo-card.holo-pos-4.holo-vertical {
        width: 90px;
        height: 160px;
    }

    /* Show more cards on small mobile - only hide bottom positions */
    .holo-card.holo-pos-2,
    .holo-card.holo-pos-7 {
        display: none;
    }

    .holo-title h4 {
        font-size: 0.6rem;
    }

    .holo-title span {
        font-size: 0.5rem;
    }

    .holo-title {
        padding: 6px 5px 5px;
    }

    .holo-play {
        width: 32px;
        height: 32px;
    }

    .holo-play svg {
        width: 12px;
        height: 12px;
    }
}

/* Reduced motion - Applied globally for better performance */
/* Disable heavy animations and overlays for all devices */

/* Hide heavy overlays that cause grey effect and lag */
.viewfinder-overlay,
.hero-vignette,
.portfolio-vignette {
    display: none !important;
}

/* Disable hero film card animations */
.film-card-3d {
    animation: none !important;
}

.camera-rig-3d {
    animation: none !important;
}

/* Disable holographic logo animations */
.holo-logo {
    animation: none !important;
}

/* Disable portfolio card floating animations */
.holo-card {
    animation: none !important;
}

.portfolio-camera {
    animation: none !important;
}

/* Disable holographic effects completely */
.holo-effect,
.holo-effect::before,
.holo-effect::after,
.holo-glitch {
    display: none !important;
}

/* Disable hero particles */
.hero-particle {
    animation: none !important;
    display: none !important;
}

/* Disable grain completely - causes grey overlay and lag */
.hero-grain,
.portfolio-grain,
.film-grain {
    display: none !important;
}

/* Disable headline float */
.hero-headline-3d {
    animation: none !important;
}

/* Disable process circle animation */
.progress-circle {
    animation: none !important;
}

/* Brand carousel - keep animation for visibility */
/* .carousel-track animation enabled */

/* Simple hover - no animations, keep positioning */
.holo-card {
    transition: none !important;
    animation: none !important;
}

.holo-card:hover {
    z-index: 100;
}

.holo-card:hover .holo-card-inner {
    box-shadow: 0 0 15px rgba(0, 141, 216, 0.3) !important;
}

.holo-card:hover .holo-play {
    opacity: 1;
}

/* Reduced motion preference - extra safety */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
