/* ====================================
   MOTIVI Entertainment - Design System
   ==================================== */

/* CSS Custom Properties */
:root {
    /* Colors - Premium Dark Theme with Gold Accents */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-bg-card: rgba(255, 255, 255, 0.03);

    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-text-muted: #aaaaaa;

    --color-accent: #c9a962;
    --color-accent-light: #e5d4a1;
    --color-accent-dark: #8a7343;

    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(201, 169, 98, 0.2);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Film Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}


/* ====================================
   Language Toggle
   ==================================== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    margin-left: auto;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.lang-btn:hover {
    color: var(--color-text-primary);
}

.lang-btn.active {
    color: var(--color-accent);
    background: rgba(201, 169, 98, 0.1);
}

.lang-divider {
    color: var(--color-text-muted);
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md) var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: transform var(--transition-base);
    filter: brightness(0) invert(1);
    object-fit: cover;
    object-position: top center;
    clip-path: inset(0 0 25% 0);
    margin-bottom: -10px;
    transform: translateY(4px);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-base);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.6) 50%,
            rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: var(--space-xl);
}

.hero-logo {
    width: 280px;
    max-width: 80%;
    height: auto;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s ease 0.3s both;
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: var(--font-size-4xl);
    color: var(--color-text-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-2xl);
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta:hover {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-glow);
}

.cta-icon {
    font-size: var(--font-size-xs);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-text-secondary);
    border-bottom: 2px solid var(--color-text-secondary);
    transform: rotate(45deg);
    opacity: 0.5;
}

/* ====================================
   Sections Common Styles
   ==================================== */
.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    font-weight: 300;
}

/* ====================================
   Page Hero (for subpages)
   ==================================== */
.page-hero {
    padding: calc(var(--space-5xl) + 80px) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-size: var(--font-size-5xl);
    font-weight: 500;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Specific */
.contact-page {
    padding-top: var(--space-3xl);
}

.contact-page .contact-wrapper {
    max-width: 1000px;
}

/* ====================================
   Showreel Section
   ==================================== */
.showreel {
    background: var(--color-bg-secondary);
}

.showreel-video {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showreel-video video {
    width: 100%;
    display: block;
    background: var(--color-bg-tertiary);
}

/* ====================================
   Portfolio Section
   ==================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    text-align: left;
}

/* Hide items beyond first 2 by default */
.portfolio-grid:not(.expanded) .portfolio-item:nth-child(n+3) {
    display: none;
}

/* Expand/Collapse Button */
.portfolio-content {
    text-align: center;
}

.portfolio-expand-btn {
    display: inline-block;
    margin-top: var(--space-2xl);
    padding: var(--space-md) var(--space-2xl);
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    border-radius: var(--radius-sm);
}

.portfolio-expand-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-primary);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-bg-tertiary);
}

.portfolio-item.large {
    grid-column: span 1;
}

.portfolio-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover video {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.5) 40%,
            rgba(10, 10, 10, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.portfolio-title {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.portfolio-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.portfolio-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: var(--color-accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-base);
}

.portfolio-play span {
    color: var(--color-bg-primary);
    font-size: var(--font-size-xl);
    margin-left: 4px;
}

.portfolio-item:hover .portfolio-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-play:hover {
    background: var(--color-accent-light);
    box-shadow: var(--shadow-glow);
}

/* ====================================
   Services Section
   ==================================== */
/* Services Section - Premium Spotlight & Glass */
.services {
    position: relative;
    background: var(--color-bg-secondary);
    overflow: hidden;
    /* For the background orbs */
}

/* Background animated orbs/glows */
.services::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 20s infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 25s infinite alternate-reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 50px);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle base */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    /* Fast transform for 3D tilt */
    backdrop-filter: blur(10px);

    /* Variables for spotlight (set by JS) */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* The Spotlight Glow */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(201, 169, 98, 0.15),
            transparent 40%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

/* The Border Glow (follows mouse) */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(500px circle at var(--mouse-x) var(--mouse-y),
            rgba(201, 169, 98, 0.4),
            transparent 40%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    /* Keep slight lift with tilt variables */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    margin-bottom: var(--space-lg);
    color: var(--color-accent);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-accent);
    transition: all var(--transition-base);
    filter: drop-shadow(0 0 5px rgba(201, 169, 98, 0.2));
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) translateZ(20px);
    /* Parallax effect */
    filter: drop-shadow(0 0 15px rgba(201, 169, 98, 0.6));
}

.service-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ====================================
   Clients Section
   ==================================== */
.clients {
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.clients-marquee {
    overflow: hidden;
    margin-top: var(--space-3xl);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 40s linear infinite;
    width: max-content;
    padding: var(--space-xl) 0;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 180px;
    padding: 0 var(--space-lg);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.client-text {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.client-logo:hover .client-text {
    color: var(--color-accent);
    transform: scale(1.05);
}

.client-logo img {
    width: auto;
    height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: all var(--transition-fast);
}

/* Don't invert logos that have white elements (like ZDF) */
.client-logo.no-invert img {
    filter: none;
    opacity: 0.8;
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ====================================
   About Section
   ==================================== */
.about {
    background: var(--color-bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-intro {
    font-size: var(--font-size-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    line-height: 1.7;
}

.about-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    aspect-ratio: 4 / 5;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* Accolades Section - Premium Redesign */
.accolades-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.accolade-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.accolade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 169, 98, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.accolade-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.accolade-card:hover::before {
    opacity: 1;
}

.accolade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.accolade-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.accolade-icon {
    font-size: var(--font-size-lg);
    opacity: 0.7;
}

.accolade-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: transform var(--transition-slow);
}

/* Specific handling for the white background award image */
.accolade-image-wrapper.white-bg {
    background: #ffffff;
    padding: var(--space-md);
    /* Make it look like a framed photo/object */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.accolade-image-wrapper.transparent-bg {
    background: transparent;
    /* Soft glow behind the book */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.accolade-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Subtle zoom on hover */
.accolade-card:hover .accolade-img {
    transform: scale(1.08);
}

.accolade-content {
    margin-top: auto;
}

.accolade-title {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.accolade-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* ====================================
   Portfolio Tabs
   ==================================== */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.portfolio-tab-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-base);
}

.portfolio-tab-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-text-primary);
}

.portfolio-tab-btn.active {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border-color: var(--color-accent);
    font-weight: 600;
}

.portfolio-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.portfolio-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   Contact Page
   ==================================== */
.contact-page {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

/* Background Atmosphere (matches services) */
.contact-page::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 20s infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Contact Cards (Spotlight + Glass) */
.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.1s ease, box-shadow 0.3s ease;

    /* Variables for spotlight */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
            rgba(201, 169, 98, 0.1),
            transparent 40%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateX(5px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    color: var(--color-accent);
}

.contact-icon svg {
    stroke: var(--color-accent);
}

.contact-item h4 {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.contact-item a,
.contact-item p {
    color: var(--color-text-primary);
    font-size: var(--font-size-md);
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--color-accent);
}

/* Contact Form - Premium Look */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-xl);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-sm) 0;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: var(--font-size-md);
    transition: all var(--transition-base);
}

.contact-form label {
    position: absolute;
    top: var(--space-sm);
    left: 0;
    color: var(--color-text-muted);
    font-size: var(--font-size-md);
    pointer-events: none;
    transition: all var(--transition-base);
}

/* Floating Label Logic */
.contact-form input:focus~label,
.contact-form input:valid~label,
.contact-form textarea:focus~label,
.contact-form textarea:valid~label {
    top: -20px;
    font-size: var(--font-size-xs);
    color: var(--color-accent);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--color-accent);
    outline: none;
    background: linear-gradient(to bottom, transparent 95%, rgba(201, 169, 98, 0.1) 100%);
}

.submit-btn {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border: none;
    padding: var(--space-md);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: var(--radius-sm);
    /* Sharp/Small radius for premium feel */
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.3);
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* ====================================
   Lightbox
   ==================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-primary);
    font-size: var(--font-size-xl);
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-primary);
}

.lightbox-content {
    width: 90%;
    max-width: 1200px;
}

.lightbox-content video {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ====================================
   Animations
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Reveal Animation Classes */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--transition-slower);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--transition-slower);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================
   WOW EFFECTS - Hero Section
   ==================================== */

/* Ken Burns Effect on Hero Video */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-1%, -1%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-video {
    animation: kenBurns 25s ease-in-out infinite;
    animation-delay: 2s;
    animation-fill-mode: backwards;
    will-change: transform;
}

/* Disable Ken Burns on mobile to fix iOS autoplay */
@media (max-width: 768px) {
    .hero-video {
        animation: none !important;
        will-change: auto !important;
        transform: none !important;
    }
}

/* Logo Reveal with Glow */
@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: blur(10px);
    }

    50% {
        opacity: 1;
        transform: scale(1.02) translateY(0);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(201, 169, 98, 0.6)) drop-shadow(0 0 60px rgba(201, 169, 98, 0.3));
    }
}

.hero-logo {
    animation: logoReveal 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards,
        logoGlow 4s ease-in-out 1.5s infinite;
    opacity: 0;
}

/* Text Character Reveal Animation */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-60deg);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.hero-tagline {
    animation: none;
    opacity: 1;
}

.hero-tagline .char {
    display: inline-block;
    opacity: 0;
    animation: textReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-tagline .char.space {
    width: 0.3em;
}

/* Enhanced CTA Button with Shimmer and Pulse */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.3),
            0 0 40px rgba(201, 169, 98, 0.1),
            inset 0 0 0 1px rgba(201, 169, 98, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.5),
            0 0 60px rgba(201, 169, 98, 0.2),
            0 0 80px rgba(201, 169, 98, 0.1),
            inset 0 0 0 1px rgba(201, 169, 98, 0.8);
    }
}

@keyframes ctaReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-cta {
    position: relative;
    overflow: hidden;
    animation: ctaReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.8s forwards,
        pulseGlow 3s ease-in-out 2.6s infinite;
    opacity: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 169, 98, 0.1) 25%,
            rgba(201, 169, 98, 0.3) 50%,
            rgba(201, 169, 98, 0.1) 75%,
            transparent 100%);
    background-size: 200% auto;
    background-color: transparent;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shimmer 3s ease-in-out 2.6s infinite;
}

.hero-cta:hover {
    animation: none;
    background: var(--color-accent);
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.5),
        0 0 80px rgba(201, 169, 98, 0.3);
}

.hero-cta:hover::before {
    animation: shimmer 1s ease-in-out infinite;
}

/* Parallax Container */
.hero.parallax-active .hero-video-container {
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.1s linear;
}

.hero.parallax-active .hero-content {
    transform: translateY(calc(var(--parallax-content-offset, 0) * -0.5));
    transition: transform 0.1s linear;
}

/* Enhanced Scroll Reveal Animations */
@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes revealScale {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* On mobile: cards only fade in (no transform) to prevent snap-back jitter */
@media (max-width: 768px) {

    .portfolio-item.reveal,
    .service-card.reveal,
    .preview-item.reveal {
        transform: none;
        transition: opacity 0.6s ease;
    }

    .portfolio-item.reveal.active,
    .service-card.reveal.active,
    .preview-item.reveal.active {
        transform: none;
    }
}

/* Staggered reveal for grid items - using transition only to avoid snap-back on mobile */

/* Golden accent line animation for sections */
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: var(--space-lg) auto 0;
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title.reveal.active::after {
    width: 100px;
}

/* Stat Number Counter Animation */
@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat.reveal.active .stat-number {
    animation: countUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.large {
        grid-column: span 2;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        display: flex;
        flex-direction: column-reverse;
        gap: var(--space-2xl);
    }

    .about-image {
        order: unset;
    }

    .about-image-placeholder {
        aspect-ratio: 3 / 4;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-image-placeholder img {
        object-fit: contain;
        object-position: center;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-4xl: 2rem;
        --font-size-5xl: 2.5rem;
    }

    .navbar {
        padding: var(--space-md) var(--space-lg);
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(25, 25, 25, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-2xl);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        border-left: 1px solid rgba(200, 170, 110, 0.2);
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200, 170, 110, 0.3), transparent);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-menu a {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.85);
        padding: var(--space-md) var(--space-xl);
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, var(--color-accent), transparent);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--color-accent);
        transform: translateX(10px);
    }

    .nav-menu a:hover::before {
        width: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: 18px !important;
        width: 24px !important;
        padding: 0 !important;
        z-index: 1001;
        position: relative;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #ffffff !important;
        border-radius: 1px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-logo {
        width: 200px;
    }

    .hero-tagline {
        font-size: var(--font-size-base);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .hero-cta {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--font-size-xs);
    }
}

/* ====================================
   Utilities
   ==================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ====================================
   WOW - Magnetic Effect
   ==================================== */
[data-magnetic] {
    display: inline-block;
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ====================================
   WOW - Lenis Smooth Scroll
   ==================================== */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* ====================================
   Subpage Styles (TV & Streaming / Corporate Content)
   ==================================== */
.subpage-content {
    padding: var(--space-4xl) 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block.with-image {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .content-block.with-image {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .content-image {
        order: -1;
        /* Image first on mobile */
    }
}

.content-block.centered {
    text-align: center;
}

.content-block p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-size: var(--font-size-xl);
}

.lead-text {
    font-size: var(--font-size-2xl);
    line-height: 1.8;
    color: var(--color-text-primary);
    font-weight: 400;
}



/* Projects List */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.project-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.project-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.project-item h3 {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.project-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 300;
    margin: 0;
}

/* ====================================
   Corporate Content Page Styles
   ==================================== */

/* Corporate Hero Section */
.corporate-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.corporate-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.corporate-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 0.95) 100%);
}

.corporate-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--space-xl);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-xl);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease both;
}

.corporate-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.corporate-hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.corporate-hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-hover);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-base);
}

.corporate-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 300;
}

/* Trust Bar */
.trust-bar {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.trust-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    opacity: 0.7;
    transition: all var(--transition-base);
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Logo with white background - don't invert */
.trust-logo.no-invert img {
    filter: none;
    background: transparent;
}

/* Green screen logo - uses blend mode to hide green background */
.trust-logo.greenscreen img,
.client-logo.greenscreen img {
    filter: none;
    mix-blend-mode: screen;
    opacity: 0.85;
}

/* PAS Section - Premium Design */
.pas-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg,
            var(--color-bg-primary) 0%,
            var(--color-bg-secondary) 50%,
            var(--color-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.pas-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 15s infinite alternate;
    pointer-events: none;
}

.pas-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: floatOrb 20s infinite alternate-reverse;
    pointer-events: none;
}

.pas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.pas-card {
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.pas-card:hover {
    transform: translateY(-8px);
}

/* Problem Card */
.pas-problem {
    --card-glow-color: rgba(239, 68, 68, 0.8);
    background: linear-gradient(145deg,
            rgba(239, 68, 68, 0.08) 0%,
            rgba(239, 68, 68, 0.02) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow:
        0 0 30px rgba(239, 68, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pas-problem:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow:
        0 0 60px rgba(239, 68, 68, 0.2),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pas-problem .pas-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.5));
}

/* Agitate Card */
.pas-agitate {
    --card-glow-color: rgba(251, 191, 36, 0.8);
    background: linear-gradient(145deg,
            rgba(251, 191, 36, 0.08) 0%,
            rgba(251, 191, 36, 0.02) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow:
        0 0 30px rgba(251, 191, 36, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pas-agitate:hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow:
        0 0 60px rgba(251, 191, 36, 0.2),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pas-agitate .pas-icon {
    color: #fbbf24;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

/* Solution Card */
.pas-solution {
    --card-glow-color: rgba(34, 197, 94, 0.8);
    background: linear-gradient(145deg,
            rgba(34, 197, 94, 0.08) 0%,
            rgba(34, 197, 94, 0.02) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow:
        0 0 30px rgba(34, 197, 94, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pas-solution:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow:
        0 0 60px rgba(34, 197, 94, 0.2),
        0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pas-solution .pas-icon {
    color: #22c55e;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
}

.pas-icon {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.pas-icon svg {
    width: 56px;
    height: 56px;
    transition: all 0.4s ease;
}

.pas-card:hover .pas-icon svg {
    transform: scale(1.15);
}

.pas-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.pas-card p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Featured Service Card */
.service-card.featured {
    border: 2px solid var(--color-accent);
    position: relative;
    background: rgba(201, 169, 98, 0.05);
}

.service-card.featured::before {
    content: "Beliebteste Wahl";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-bg-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Services Section Override for Corporate Page */
.services-section {
    background: var(--color-bg-secondary);
}

/* Portfolio Preview */
.portfolio-preview {
    background: var(--color-bg-primary);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.preview-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-bg-tertiary);
}

.preview-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.preview-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.preview-item:hover video {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.4) 50%,
            rgba(10, 10, 10, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--space-xl);
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.preview-category {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.preview-title {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-base);
}

.preview-play span {
    color: var(--color-bg-primary);
    font-size: var(--font-size-lg);
    margin-left: 3px;
}

.preview-item:hover .preview-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.preview-play:hover {
    background: var(--color-accent-light);
    box-shadow: var(--shadow-glow);
}

.preview-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Hidden preview items - expand/collapse */
.preview-item.preview-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.preview-grid.expanded .preview-item.preview-hidden {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#toggleProjects {
    cursor: pointer;
    transition: all var(--transition-base);
}

#toggleProjects:hover {
    background: var(--color-accent);
    color: var(--color-bg-primary);
    border-color: var(--color-accent);
}

/* Final CTA */
.final-cta {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg,
            var(--color-bg-secondary) 0%,
            var(--color-bg-tertiary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.final-cta-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    font-weight: 300;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.final-cta .btn {
    position: relative;
    margin-bottom: var(--space-lg);
}

.cta-subtext {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    position: relative;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: var(--space-md);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--color-border);
        z-index: 999;
        text-align: center;
    }

    .sticky-cta .btn {
        width: 100%;
        max-width: 400px;
    }

    /* Add padding to footer for sticky CTA */
    .footer {
        padding-bottom: 80px;
    }

    /* Mobile responsive adjustments */
    .corporate-hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .pas-grid {
        grid-template-columns: 1fr;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .corporate-hero-content h1 {
        font-size: 2.2rem;
    }

    .final-cta h2 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 1024px) {
    .pas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-logos {
        gap: var(--space-xl);
    }
}

/* ====================================
   TV & STREAMING PAGE STYLES
   ==================================== */

/* TV Hero Section */
.tv-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tv-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tv-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 0.95) 100%);
}

.tv-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--space-xl);
    animation: fadeInUp 0.8s ease both;
}

.tv-hero-content h1 {
    font-size: var(--font-size-6xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tv-hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    font-weight: 300;
    margin-bottom: var(--space-2xl);
}

.tv-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Broadcaster Bar */
.broadcaster-bar {
    background: var(--color-bg-secondary);
}

.broadcaster-logos {
    gap: var(--space-3xl);
}

/* TV Intro Section */
.tv-intro {
    background: var(--color-bg-primary);
}

.tv-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: center;
}

.tv-intro-text {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.tv-intro-text .section-title {
    margin-bottom: var(--space-xl);
}

.tv-intro-text .lead-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.tv-intro-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.tv-intro-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tv-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.tv-intro-image:hover img {
    transform: scale(1.03);
}

/* TV Projects Section */
.tv-projects {
    background: var(--color-bg-secondary);
}

.project-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.project-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.project-card-badge.true-crime {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.project-card-badge.doku {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.project-card-badge.reportage {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.project-card-meta {
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.project-card-producer {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* TV Page Responsive */
@media (max-width: 1024px) {
    .tv-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .tv-intro-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .project-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tv-hero-content h1 {
        font-size: var(--font-size-4xl);
    }

    .tv-hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .project-cards-grid {
        grid-template-columns: 1fr;
    }

    .broadcaster-logos {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    /* Enhanced Mobile Client Logos */
    .clients-track {
        gap: 40px;
    }

    .client-logo {
        height: 80px;
        min-width: 140px;
        padding: 0 var(--space-md);
    }

    .client-logo img {
        height: 50px;
        max-width: 120px;
    }

    /* Mobile Hero Improvements */
    .hero {
        min-height: 100svh;
        padding-top: 80px;
    }

    .hero-logo {
        width: 180px;
    }

    .hero-tagline {
        font-size: var(--font-size-sm);
        padding: 0 var(--space-md);
    }

    .hero-cta {
        padding: var(--space-sm) var(--space-xl);
        font-size: var(--font-size-xs);
    }

    /* Mobile Section Titles */
    .section-title {
        font-size: var(--font-size-2xl);
    }

    .section-subtitle {
        font-size: var(--font-size-sm);
        padding: 0 var(--space-sm);
    }

    /* Mobile Service Cards */
    .service-card {
        padding: var(--space-xl);
    }

    .service-card h3 {
        font-size: var(--font-size-lg);
    }

    /* Mobile About Section */
    .about-intro {
        font-size: var(--font-size-base);
    }

    .about-text .section-title {
        text-align: center;
    }

    /* Mobile Accolades */
    .accolades-container {
        grid-template-columns: 1fr;
    }

    .accolade-image-wrapper {
        height: 160px;
    }

    /* Mobile Footer */
    .footer-brand {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Mobile Lang Toggle */
    .lang-toggle {
        position: absolute;
        right: 90px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile Contact Page */
    .page-hero {
        padding: var(--space-3xl) 0 var(--space-xl);
    }

    .page-title {
        font-size: var(--font-size-3xl);
    }

    .page-subtitle {
        font-size: var(--font-size-base);
    }

    /* Mobile Lightbox */
    .lightbox-close {
        top: var(--space-md);
        right: var(--space-md);
        width: 40px;
        height: 40px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    :root {
        --font-size-4xl: 1.75rem;
        --font-size-5xl: 2rem;
        --font-size-3xl: 1.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .hero-logo {
        width: 150px;
    }

    .hero-tagline {
        font-size: var(--font-size-xs);
    }

    /* Smaller client logos on very small screens */
    .clients-track {
        gap: 30px;
    }

    .client-logo {
        height: 60px;
        min-width: 100px;
    }

    .client-logo img {
        height: 40px;
        max-width: 100px;
    }

    .clients {
        padding: var(--space-2xl) 0;
    }

    /* Mobile Navigation Menu Full Width */
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    /* Mobile Portfolio */
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top,
                rgba(10, 10, 10, 0.9) 0%,
                rgba(10, 10, 10, 0.4) 50%,
                transparent 100%);
        padding: var(--space-lg);
    }

    .portfolio-title {
        font-size: var(--font-size-lg);
    }

    .portfolio-play {
        width: 50px;
        height: 50px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    /* Mobile Service Cards Extra Small */
    .service-card {
        padding: var(--space-lg);
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    /* Mobile Contact Form */
    .contact-form {
        padding: var(--space-lg);
    }

    .submit-btn {
        width: 100%;
        padding: var(--space-md);
    }

    /* Mobile Footer Extra Small */
    .footer {
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    .footer-logo {
        height: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ====================================
   Preview Grid (Corporate Content Page)
   ==================================== */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.preview-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.preview-item:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.preview-item.preview-hidden {
    display: none;
}

.preview-grid.expanded .preview-item.preview-hidden {
    display: block;
}

.preview-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Forces 1:1 square aspect ratio */
    overflow: hidden;
    cursor: pointer;
}

.preview-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-video-container:hover .preview-overlay {
    opacity: 1;
}

.preview-category {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.preview-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.preview-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    color: var(--color-bg-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-sm);
    transition: transform 0.3s ease, background 0.3s ease;
}

.preview-play:hover {
    transform: scale(1.1);
    background: var(--color-accent-light);
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}