/* ============================================
   FLIXIOS – Creative Media Studio
   Premium Multi-Page Website Styles
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --color-bg: #050505;
    --color-bg-elevated: #0a0a0a;
    --color-bg-card: #0f0f0f;
    --color-white: #ffffff;
    --color-white-90: rgba(255, 255, 255, 0.9);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-50: rgba(255, 255, 255, 0.5);
    --color-white-30: rgba(255, 255, 255, 0.3);
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-05: rgba(255, 255, 255, 0.05);
    --color-accent: #c9a962;
    --color-accent-light: #d4b978;
    --color-accent-dark: #a68b4b;
    --color-accent-glow: rgba(201, 169, 98, 0.3);
    --color-accent-10: rgba(201, 169, 98, 0.1);
    
    /* Typography */
    --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;
    
    /* Layout */
    --container-max: 1400px;
    --container-padding: 24px;
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Z-index */
    --z-cursor: 9999;
    --z-loader: 9998;
    --z-transition: 9997;
    --z-mobile-menu: 1000;
    --z-nav: 999;
    --z-modal: 900;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 64px;
    }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: var(--z-cursor);
    mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
    .cursor {
        display: block;
    }
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.cursor-outline {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-white-50);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor.hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
}

.cursor.click .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: var(--z-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    pointer-events: none;
}

.page-transition.active {
    pointer-events: all;
}

.transition-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-white);
    opacity: 0;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-xl);
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-white-10);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto var(--space-lg);
}

.loader-progress {
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    animation: loaderProgress 2s var(--ease-out-expo) forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

.loader-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white-50);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg) var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: var(--z-nav);
    transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    padding: var(--space-md) var(--container-padding);
}

@media (min-width: 768px) {
    .nav {
        padding: var(--space-xl) 48px;
    }
    
    .nav.scrolled {
        padding: var(--space-md) 48px;
    }
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
}

.nav-logo-sub {
    font-family: var(--font-primary);
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-white-50);
    text-transform: uppercase;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-white-70);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white);
    border: 1px solid var(--color-white-30);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
}

.nav-cta svg {
    transition: transform 0.3s ease;
}

.nav-cta:hover svg {
    transform: translate(2px, -2px);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5.5px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: var(--z-mobile-menu);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 400;
    color: var(--color-white-50);
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
    transition: color 0.3s ease, opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover,
.mobile-link.active {
    color: var(--color-white);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-white-50);
    opacity: 0;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transition: opacity 0.6s ease 0.4s;
}

.mobile-menu-footer a:hover {
    color: var(--color-accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translate(3px, -3px);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    box-shadow: 0 0 40px var(--color-accent-glow);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white-30);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white-70);
    padding: 16px 24px;
}

.btn-ghost:hover {
    color: var(--color-white);
}

.btn-text {
    background: transparent;
    color: var(--color-accent);
    padding: 8px 0;
}

.btn-text:hover {
    color: var(--color-accent-light);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.8125rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 0.875rem;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-title-sm {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-white-50);
    max-width: 500px;
}

.section-header {
    margin-bottom: var(--space-4xl);
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-5xl) 0;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--color-white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-white-05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--container-padding);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-white-70);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-label-line {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.hero-title-line {
    display: block;
}

.hero-title-word {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1s var(--ease-out-expo) forwards;
}

.hero-title-word[data-delay="0"] { animation-delay: 0.4s; }
.hero-title-word[data-delay="1"] { animation-delay: 0.5s; }
.hero-title-word[data-delay="2"] { animation-delay: 0.6s; }
.hero-title-word[data-delay="3"] { animation-delay: 0.7s; }

.hero-title-word.highlight {
    color: var(--color-accent);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-white-70);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-brand {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-brand-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-scroll-text {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white-50);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-white-10);
    position: relative;
    overflow: hidden;
}

.hero-scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(-100%); }
    50% { transform: translateY(200%); }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 40px;
    right: var(--container-padding);
    display: none;
    flex-direction: column;
    gap: var(--space-xl);
    text-align: right;
    z-index: 2;
}

@media (min-width: 1200px) {
    .hero-stats {
        display: flex;
        right: 64px;
    }
}

.hero-stat {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) forwards;
}

.hero-stat:nth-child(1) { animation-delay: 1.1s; }
.hero-stat:nth-child(2) { animation-delay: 1.2s; }
.hero-stat:nth-child(3) { animation-delay: 1.3s; }

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
}

.hero-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-white-50);
}

/* ============================================
   SHOWREEL SECTION
   ============================================ */
.showreel {
    padding: var(--space-4xl) 0;
}

.showreel-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 0 var(--container-padding);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .showreel-header {
        padding: 0 48px;
    }
}

.showreel-wrapper {
    position: relative;
    overflow: hidden;
}

.showreel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.showreel-container.visible {
    opacity: 1;
    transform: scale(1);
}

.showreel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showreel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.showreel-container:hover .showreel-overlay {
    opacity: 0;
}

.showreel-play {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-white);
    transition: transform 0.3s ease;
}

.showreel-play:hover {
    transform: scale(1.1);
}

.showreel-play svg {
    width: 80px;
    height: 80px;
}

.showreel-play span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.showreel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--container-padding);
}

@media (min-width: 768px) {
    .showreel-info {
        padding: var(--space-lg) 48px;
    }
}

.showreel-title {
    font-size: 0.875rem;
    color: var(--color-white-70);
}

.showreel-duration {
    font-size: 0.75rem;
    color: var(--color-white-50);
}

/* ============================================
   SERVICES PREVIEW SECTION
   ============================================ */
.services-preview {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-white-05);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent-10) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-number {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    position: relative;
}

.service-card-icon {
    margin-bottom: var(--space-xl);
    color: var(--color-white);
    position: relative;
    perspective: 500px;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.6s var(--ease-out-expo), filter 0.6s ease;
    transform-style: preserve-3d;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-3px) rotateY(5deg);
    }
}

.service-card:hover .service-card-icon svg {
    transform: rotateY(15deg) rotateX(-10deg) scale(1.15);
    filter: drop-shadow(0 10px 25px var(--color-accent-glow));
    animation: none;
}

/* 3D Icon Container */
.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, var(--color-accent-10) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.service-card:hover .service-card-icon::before {
    opacity: 1;
}

.service-card-content {
    flex: 1;
    position: relative;
}

.service-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.service-card-content p {
    font-size: 0.9375rem;
    color: var(--color-white-50);
    line-height: 1.7;
}

.service-card-arrow {
    margin-top: var(--space-xl);
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.services-cta {
    margin-top: var(--space-3xl);
    text-align: center;
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */
.featured-work {
    padding: var(--space-5xl) 0;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.work-item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.work-item.large {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
    .work-item.large {
        aspect-ratio: 21 / 9;
    }
}

.work-item-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.work-item-media img,
.work-item-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.work-item-media video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.work-item:hover .work-item-media img,
.work-item:hover .work-item-media video {
    transform: scale(1.05);
}

.work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.work-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl);
    z-index: 1;
}

.work-item-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.work-item-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.work-item-description {
    font-size: 0.875rem;
    color: var(--color-white-50);
}

.work-cta {
    margin-top: var(--space-3xl);
    text-align: center;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 20px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--color-white-10);
}

@media (min-width: 768px) {
    .process-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-step {
    position: relative;
    padding-left: 60px;
    padding-bottom: var(--space-3xl);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:last-child {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .process-step {
        padding-left: 0;
        width: 50%;
        padding-right: var(--space-3xl);
    }
    
    .process-step:nth-child(even) {
        margin-left: 50%;
        padding-left: var(--space-3xl);
        padding-right: 0;
    }
}

.process-step-dot {
    position: absolute;
    left: 12px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

@media (min-width: 768px) {
    .process-step-dot {
        left: auto;
        right: -8px;
    }
    
    .process-step:nth-child(even) .process-step-dot {
        right: auto;
        left: -8px;
    }
}

.process-step-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.process-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.process-step-content p {
    font-size: 0.9375rem;
    color: var(--color-white-50);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-5xl) 0;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.testimonial {
    flex: 0 0 100%;
    padding: var(--space-2xl);
    text-align: center;
    opacity: 0.3;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: -var(--space-xl);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-name {
    display: block;
    font-weight: 500;
}

.testimonial-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-white-50);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-white-30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    background: var(--color-white-30);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
}

#ctaCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.cta-title span {
    display: block;
}

.cta-title .highlight {
    color: var(--color-accent);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--color-white-70);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-white-05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-white-50);
}

.footer-uxi {
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-white-50);
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.footer-column a svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-accent);
}

.footer-column a:hover svg {
    opacity: 1;
    stroke: var(--color-accent);
}

.footer-contact-link {
    display: flex !important;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-white-05);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--color-white-50);
}

.footer-uxi-badge {
    font-size: 0.75rem;
    color: var(--color-white-30);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--color-white-10);
    border-radius: 100px;
    background: var(--color-white-05);
}

.footer-uxi-badge strong {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--color-white-50);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 180px 0 var(--space-4xl);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.06) 0%, transparent 60%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-header-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.page-header-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-white-70);
    line-height: 1.7;
}

/* ============================================
   WORK PAGE STYLES
   ============================================ */
.work-filter-section {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-white-05);
}

.work-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-white-50);
    background: transparent;
    border: 1px solid var(--color-white-10);
    border-radius: 100px;
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.work-gallery {
    padding: var(--space-4xl) 0;
}

.work-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .work-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .work-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.project-card-link {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
}

.project-card.large .project-card-link {
    aspect-ratio: 16 / 9;
}

.project-card.tall .project-card-link {
    aspect-ratio: 3 / 4;
}

.project-card.wide .project-card-link {
    aspect-ratio: 21 / 9;
}

@media (min-width: 768px) {
    .project-card.large {
        grid-column: span 2;
    }
    
    .project-card.wide {
        grid-column: span 2;
    }
}

@media (min-width: 1200px) {
    .project-card.large {
        grid-column: span 2;
    }
}

.project-card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-card-media img,
.project-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.project-card-media video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.project-card:hover .project-card-media img,
.project-card:hover .project-card-media video {
    transform: scale(1.05);
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.project-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.project-category {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.project-year {
    font-size: 0.6875rem;
    color: var(--color-white-50);
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.project-description {
    font-size: 0.875rem;
    color: var(--color-white-50);
}

.project-card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    z-index: 1;
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-view {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-white-30);
    border-radius: 30px;
}

.work-load-more {
    text-align: center;
    margin-top: var(--space-3xl);
}

.work-cta {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
    text-align: center;
}

.work-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.work-cta-content p {
    font-size: 1.125rem;
    color: var(--color-white-50);
    margin-bottom: var(--space-2xl);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.services-detail {
    padding: var(--space-4xl) 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid var(--color-white-05);
}

.service-detail-item:last-child {
    border-bottom: none;
}

@media (min-width: 992px) {
    .service-detail-item {
        grid-template-columns: 80px 1fr 1fr;
        align-items: start;
    }
    
    .service-detail-item.reversed {
        grid-template-columns: 1fr 1fr 80px;
    }
    
    .service-detail-item.reversed .service-detail-header {
        order: 3;
    }
    
    .service-detail-item.reversed .service-detail-visual {
        order: 1;
    }
    
    .service-detail-item.reversed .service-detail-content {
        order: 2;
    }
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-detail-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--color-accent);
    line-height: 1;
}

.service-detail-icon {
    color: var(--color-white);
    perspective: 500px;
}

.service-detail-icon svg {
    width: 64px;
    height: 64px;
    animation: iconFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translateY(-5px) rotateY(10deg) rotateX(-5deg);
    }
    50% {
        transform: translateY(0) rotateY(0deg) rotateX(0deg);
    }
    75% {
        transform: translateY(-5px) rotateY(-10deg) rotateX(5deg);
    }
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
}

.service-detail-intro {
    font-size: 1.125rem;
    color: var(--color-white-70);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 600px) {
    .service-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-feature h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.service-feature p {
    font-size: 0.875rem;
    color: var(--color-white-50);
}

.service-detail-visual {
    position: relative;
}

.service-visual-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.service-visual-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Pricing Section */
.pricing-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-white-05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--color-accent);
    transform: scale(1.02);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

.pricing-card-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-white-05);
}

.pricing-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.pricing-card-header p {
    font-size: 0.875rem;
    color: var(--color-white-50);
}

.pricing-card-features {
    flex: 1;
    margin-bottom: var(--space-xl);
}

.pricing-card-features ul li {
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-white-70);
    position: relative;
    padding-left: var(--space-lg);
}

.pricing-card-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.pricing-card .btn {
    width: 100%;
}

/* Tools Section */
.tools-section {
    padding: var(--space-4xl) 0;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.tool-item {
    padding: var(--space-md) var(--space-xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-white-05);
    border-radius: 100px;
}

.tool-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white-70);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-intro {
    padding: var(--space-4xl) 0;
}

.about-intro.uxi-intro {
    border-bottom: 1px solid var(--color-white-10);
}

.about-intro.flixios-intro {
    padding-bottom: var(--space-3xl);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .about-intro-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-intro-content.reversed {
        direction: rtl;
    }
    
    .about-intro-content.reversed > * {
        direction: ltr;
    }
}

.uxi-badge-large {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 100px;
    margin-bottom: var(--space-xl);
}

.flixios-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: var(--color-accent);
    border-radius: 100px;
    margin-bottom: var(--space-xl);
}

.flixios-logo-container {
    margin-bottom: var(--space-xl);
}

.flixios-logo-img {
    max-width: 200px;
    height: auto;
}

.flixios-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    padding: var(--space-4xl);
    min-height: 400px;
    border: 1px solid var(--color-white-10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.flixios-about-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
    filter: drop-shadow(0 10px 30px rgba(201, 169, 98, 0.2));
}

.uxi-brands,
.flixios-services-list {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-white-05);
    border-radius: 12px;
    border-left: 3px solid var(--color-accent);
}

.uxi-brands h4,
.flixios-services-list h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.uxi-brands ul,
.flixios-services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uxi-brands li,
.flixios-services-list li {
    font-size: 0.9375rem;
    color: var(--color-white-70);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-white-05);
}

.uxi-brands li:last-child,
.flixios-services-list li:last-child {
    border-bottom: none;
}

.uxi-brands li strong {
    color: var(--color-white);
}

.about-intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: var(--space-xl);
}

.about-intro-text p {
    font-size: 1rem;
    color: var(--color-white-70);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-image-frame {
    border-radius: 16px;
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Stats */
.about-stats {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-elevated);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-accent);
}

.stat-label {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-white-50);
}

/* Values */
.about-values {
    padding: var(--space-5xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid var(--color-white-05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-white-10);
    transform: translateY(-4px);
}

.value-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--color-white-50);
    line-height: 1.7;
}

/* Team */
.about-team {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-member {
    text-align: center;
}

.team-member-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.team-member-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.team-member:hover .team-member-image img {
    filter: grayscale(0%);
}

.team-member-info h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.team-member-info span {
    font-size: 0.875rem;
    color: var(--color-accent);
}

/* UXI Tech */
.about-uxi {
    padding: var(--space-5xl) 0;
}

.uxi-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.uxi-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent-10);
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xl);
}

.uxi-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
}

.uxi-content p {
    font-size: 1rem;
    color: var(--color-white-70);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.uxi-link {
    margin-top: var(--space-xl);
}

/* Timeline */
.about-timeline {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--color-white-10);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 80px;
    }
}

.timeline-item {
    display: flex;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    flex: 0 0 60px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent);
    text-align: right;
    padding-right: var(--space-lg);
}

@media (min-width: 768px) {
    .timeline-year {
        flex: 0 0 80px;
    }
}

.timeline-content {
    flex: 1;
    padding-left: var(--space-xl);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--color-white-50);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
    min-height: 100vh;
    padding: 140px 0 var(--space-4xl);
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#contactCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-info-content {
    max-width: 500px;
}

.contact-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.contact-description {
    font-size: 1rem;
    color: var(--color-white-70);
    margin-bottom: var(--space-3xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white-50);
    margin-bottom: var(--space-xs);
}

.contact-detail-value {
    font-size: 1.125rem;
    font-weight: 400;
}

a.contact-detail-value:hover {
    color: var(--color-accent);
}

.contact-social-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white-50);
    margin-bottom: var(--space-md);
}

.contact-social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-white-10);
    border-radius: 50%;
    color: var(--color-white-70);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-white-05);
    border-radius: 24px;
    padding: var(--space-2xl);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: var(--space-3xl);
    }
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 600px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group.full-width {
        grid-column: span 2;
    }
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white-70);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    color: var(--color-white);
    background: var(--color-bg);
    border: 1px solid var(--color-white-10);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-white-30);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

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

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

.form-submit {
    grid-column: 1 / -1;
}

.form-submit .btn {
    width: 100%;
}

.form-note {
    grid-column: 1 / -1;
    font-size: 0.8125rem;
    color: var(--color-white-50);
    text-align: center;
}

/* Form Success Message */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-4xl) var(--space-2xl);
    min-height: 400px;
}

.form-success svg {
    margin-bottom: var(--space-xl);
    animation: successPulse 2s ease-in-out infinite;
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.form-success p {
    font-size: 1rem;
    color: var(--color-white-70);
    max-width: 300px;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-elevated);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-white-05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--color-white-70);
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   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: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

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

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s var(--ease-out-expo);
}

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

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--color-white-30);
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.video-modal-close:hover {
    background: var(--color-white);
    color: var(--color-bg);
    border-color: var(--color-white);
}

.video-modal-content {
    position: relative;
    background: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
}

.video-modal-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.video-mute-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-white-20);
    border-radius: 30px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.video-mute-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-mute-btn .mute-icon,
.video-mute-btn .unmute-icon {
    width: 20px;
    height: 20px;
}

.video-mute-btn .unmute-icon {
    display: none;
}

.video-mute-btn.sound-on .mute-icon {
    display: none;
}

.video-mute-btn.sound-on .unmute-icon {
    display: block;
}

/* Work item view button */
.work-item {
    cursor: pointer;
}

.work-item-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    z-index: 1;
}

.work-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-expo);
    z-index: 2;
}

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

.work-item-view {
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-white-30);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 30px;
    transform: translateY(10px);
    transition: transform 0.3s var(--ease-out-expo);
}

.work-item:hover .work-item-view {
    transform: translateY(0);
}

/* Project card clickable */
.project-card {
    cursor: pointer;
}

.project-card-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* Visually Hidden */
.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;
}
