/* ULTRA DELUXE™ - Liquid Glass Professional Aesthetic */

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

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #f472b6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Glass Colors */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.1);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dark: #1f2937;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    
    /* Typography */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Typography */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 1) 0%, 
        rgba(30, 41, 59, 0.98) 25%,
        rgba(15, 23, 42, 0.95) 50%,
        rgba(30, 41, 59, 0.98) 75%,
        rgba(15, 23, 42, 1) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 35%);
    pointer-events: none;
    z-index: -1;
}

/* Animated Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1a1a3a 25%, 
        #2a1f3d 50%, 
        #1a1a3a 75%, 
        #0f0f23 100%);
}

.liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    animation: liquidFlow 20s ease-in-out infinite;
}

.glass-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particleFloat 30s linear infinite;
}

@keyframes liquidFlow {
    0%, 100% { transform: translateX(0) translateY(0) scale(1); }
    33% { transform: translateX(-20px) translateY(10px) scale(1.05); }
    66% { transform: translateX(20px) translateY(-10px) scale(0.95); }
}

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

@keyframes ultraShimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes deluxeGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.1);
    }
}

/* Section Transitions */
section {
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%);
    opacity: 0.7;
}

section:last-of-type::after {
    display: none;
}

/* Glass Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 
        0 8px 32px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
}

/* Navigation - Dock Style (Direct Copy from index.html) */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    width: auto;
    backdrop-filter: none;
}

.nav-left {
    display: none;
}

.nav-center {
    display: flex;
    justify-content: center;
    width: auto;
}

.nav-right {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    border: 0.3mm solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.8rem 0.8rem 0.8rem 5rem;
    backdrop-filter: 
        blur(20px) 
        saturate(1.8) 
        contrast(1.25) 
        brightness(1.15)
        hue-rotate(-2deg);
    position: relative;
    align-items: center;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Liquid glass animations */
    animation: liquidBreathing 8s ease-in-out infinite, 
               liquidRipple 6s ease-in-out infinite;
    
    /* Lens distortion morphing effect */
    transform: perspective(1000px) rotateX(0deg);
    filter: 
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.1))
        contrast(1.1);
}

/* Liquid lens refraction effect */
.nav-menu::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    border-radius: 52px;
    z-index: -1;
}

/* Internal light caustics */
.nav-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        transparent 70%);
    border-radius: 50px;
    pointer-events: none;
}

.nav-brand {
    position: absolute;
    left: 0.5rem;
    top: 57%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-brand img {
    width: 5rem;
    height: 5rem;
}

.logo-icon img {
    display: block;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    object-fit: cover;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    display: none;
}

.nav-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    user-select: none;
    pointer-events: none;
    margin: 0 0.8rem;
    font-size: 1.2rem;
    opacity: 0.8;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.3),
        0 0 4px rgba(255, 255, 255, 0.2);
    position: relative;
}

.search-dock {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 0.8rem;
    backdrop-filter: 
        blur(20px) 
        saturate(1.8) 
        contrast(1.25) 
        brightness(1.15)
        hue-rotate(-2deg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 25px rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(0deg);
    filter: 
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.1))
        contrast(1.1);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: white;
    transform: scale(1.1);
}

.search-dock:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Liquid Glass Animation Keyframes */
@keyframes liquidBreathing {
    0%, 100% {
        backdrop-filter: 
            blur(20px) 
            saturate(1.8) 
            contrast(1.25) 
            brightness(1.15)
            hue-rotate(-2deg);
        border-radius: 50px;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1),
            0 0 30px rgba(255, 255, 255, 0.08);
    }
    25% {
        backdrop-filter: 
            blur(22px) 
            saturate(1.9) 
            contrast(1.3) 
            brightness(1.2)
            hue-rotate(-1deg);
        border-radius: 48px 52px 48px 52px;
        box-shadow: 
            0 10px 35px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(255, 255, 255, 0.15),
            0 0 35px rgba(255, 255, 255, 0.1);
    }
    50% {
        backdrop-filter: 
            blur(24px) 
            saturate(2.0) 
            contrast(1.35) 
            brightness(1.25)
            hue-rotate(0deg);
        border-radius: 45px 55px 45px 55px;
        box-shadow: 
            0 12px 38px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 255, 255, 0.2),
            0 0 40px rgba(255, 255, 255, 0.12);
    }
    75% {
        backdrop-filter: 
            blur(22px) 
            saturate(1.9) 
            contrast(1.3) 
            brightness(1.2)
            hue-rotate(-1deg);
        border-radius: 52px 48px 52px 48px;
        box-shadow: 
            0 10px 35px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(255, 255, 255, 0.15),
            0 0 35px rgba(255, 255, 255, 0.1);
    }
}

@keyframes liquidRipple {
    0%, 100% {
        transform: perspective(1000px) rotateX(0deg) scale(1);
    }
    16.66% {
        transform: perspective(1000px) rotateX(0.3deg) scale(1.002);
    }
    33.33% {
        transform: perspective(1000px) rotateX(-0.2deg) scale(1.001);
    }
    50% {
        transform: perspective(1000px) rotateX(0.4deg) scale(1.003);
    }
    66.66% {
        transform: perspective(1000px) rotateX(-0.1deg) scale(1.001);
    }
    83.33% {
        transform: perspective(1000px) rotateX(0.2deg) scale(1.002);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding);
    padding-top: 8rem;
    background: transparent;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .title-line {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-title .logo-icon {
    flex-shrink: 0;
    height: 5rem;
    top: 1.2rem;
    right: -1.5rem;
    position: relative;
}

.hero-title .ultra {
    color: var(--text-primary);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    font-weight: 950;
    letter-spacing: 0.05em;
    position: relative;
}

.hero-title .deluxe {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: deluxeGlow 4s ease-in-out infinite;
}

.hero-title .trademark {
    font-size: 0.6em;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: auto;
}

.studios-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.studio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    position: relative;
}

.studio-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.studio-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    flex-shrink: 0;
    overflow: hidden;
}

.studio-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.studio-info {
    flex: 1;
    position: relative;
}

.studio-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.studio-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0;
}

.price-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: transparent;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: sticky;
    top: 100px;
}

.profile-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.profile-image {
    position: relative;
    margin-bottom: 20px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-image:hover img {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    bottom: 5px;
    right: 20px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-title {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 8px;
}

.profile-note {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-style: italic;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.profile-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.profile-link i {
    color: #3b82f6;
    width: 16px;
    text-align: center;
}

/* Mission Content */
.mission-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mission-header i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.mission-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.mission-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #3b82f6;
    text-decoration: none;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.learn-more-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.value-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-icon.innovation {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
}

.value-icon.passion {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}

.value-icon.accessibility {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.value-icon.security {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
}

.value-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-card {
        position: static;
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        gap: 1.5rem;
    }
    
    .mission-card,
    .profile-card {
        padding: 20px;
    }
    
    .value-item {
        padding: 15px;
    }
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
    background: transparent;
}

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

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-card.featured {
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.product-card.coming-soon {
    opacity: 0.8;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border-radius: 1rem;
    color: white;
    font-size: 1.5rem;
}

.product-badge {
    padding: 0.25rem 0.75rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.coming-soon-badge {
    background: linear-gradient(45deg, var(--warning), #fbbf24);
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.feature-tag i {
    color: var(--primary-light);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1rem;
}

/* Studios Section */
.studios-section {
    padding: var(--section-padding);
    background: transparent;
}

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

.studio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.studio-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.studio-card.featured {
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.studio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.studio-logo-large {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
}

.studio-logo-large img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.studio-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.studio-badge.budget {
    background: linear-gradient(45deg, var(--success), #34d399);
    color: white;
}

.studio-badge.mid-range {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
}

.studio-badge.premium {
    background: linear-gradient(45deg, var(--secondary), #ec4899);
    color: white;
}

.studio-badge.creative {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
}

.studio-badge.gaming {
    background: linear-gradient(45deg, #8b5cf6, #a78bfa);
    color: white;
}

.studio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.studio-tagline {
    color: var(--primary-light);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.studio-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.studio-features {
    margin-bottom: 2rem;
}

.studio-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border: none;
    background: none;
}

.studio-features .feature-item:hover {
    transform: none;
    background: none;
}

.studio-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.studio-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.studio-pricing .price-range {
    font-weight: 700;
    color: var(--primary-light);
    font-size: 1.125rem;
}

.studio-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.studio-btn:hover {
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Dashboard Section */
.dashboard-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.9) 50%, 
        rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(20px);
    position: relative;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.card-header i {
    color: #3b82f6;
    font-size: 1.5rem;
}

/* Stats Card */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-change {
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 8px;
}

.stat-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.stat-change.neutral {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.1);
}

/* Projects Card */
.projects-list {
    margin-bottom: 25px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.project-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.project-info {
    flex: 1;
}

.project-name {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 4px;
}

.project-studio {
    color: #94a3b8;
    font-size: 0.85rem;
}

.project-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-status.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.project-status.in-progress {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.project-status.planning {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.view-all-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Performance Card */
.performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.studio-logo-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.studio-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.studio-indicator.singlepage {
    background: #10b981;
}

.studio-indicator.vision {
    background: #3b82f6;
}

.studio-indicator.loop {
    background: #8b5cf6;
}

.performance-details {
    flex: 1;
}

.studio-name {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 4px;
}

.performance-metric {
    color: #94a3b8;
    font-size: 0.85rem;
}

.performance-trend {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Connect Card */
.connect-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connect-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.connect-option:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.connect-option i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

/* Footer */
.glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    flex: 1;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    flex-shrink: 0;
}

.footer-brand .logo-icon img {
    width: 4rem;
    height: 4rem;
    object-fit: cover;

}

.footer-brand .ultra {
    color: var(--text-primary);
}

.footer-brand .deluxe {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .trademark {
    font-size: 0.6em;
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-dark);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.4rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom-content p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-bottom-content i {
    color: var(--danger);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-card {
        position: static;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .hero-visual {
        height: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .title-line {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding-top: 6rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--glass-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline-color: var(--primary-light);
}