/* Base Styles - Fun & Vibrant ZuCasa */
:root {
    /* Primary Colors - Fun & Energetic */
    --primary: #A855F7;      /* Electric Purple */
    --primary-dark: #9333EA;
    --primary-light: #C084FC;
    --secondary: #EC4899;     /* Vibrant Pink */
    --accent: #FB923C;        /* Warm Orange */
    --success: #34D399;       /* Success Green */
    --sky: #60A5FA;          /* Sky Blue */
    
    /* Dark Theme */
    --dark: #0F0A1F;         /* Deep Background */
    --surface: #1A1525;      /* Card/Surface */
    --gray-900: #1E1B2E;
    --gray-800: #2D2A3D;
    --gray-700: #4A4560;
    --gray-600: #6B6880;
    --gray-500: #9B96AA;
    --gray-400: #B8B4C4;
    --gray-300: #D1CED9;
    --gray-200: #E4E2E8;
    --gray-100: #F5F4F7;
    --white: #FEFEFE;
    
    /* Gradients - Celebration Vibes */
    --gradient-primary: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #FB923C 100%);
    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #FB923C 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(168, 85, 247, 0.1);
    --shadow-md: 0 4px 12px rgba(168, 85, 247, 0.15);
    --shadow-lg: 0 10px 24px rgba(168, 85, 247, 0.2);
    --shadow-xl: 0 20px 40px rgba(168, 85, 247, 0.25);
    --glow: 0 0 20px rgba(168, 85, 247, 0.4);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-200);
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 10, 31, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    z-index: 1000;
    height: 72px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-svg {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-emoji {
    font-size: 24px;
    animation: bounce 2s infinite;
}

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

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

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(168, 85, 247, 0.2);
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-secondary {
    background: rgba(168, 85, 247, 0.1);
    color: var(--white);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('../attached_assets/stock_images/sage_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 10, 31, 0.4) 0%,
        rgba(15, 10, 31, 0.3) 50%,
        rgba(15, 10, 31, 0.5) 100%
    );
    z-index: 1;
}

.animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(168, 85, 247, 0.08) 0%,
        rgba(236, 72, 153, 0.08) 25%,
        rgba(251, 146, 60, 0.05) 50%,
        rgba(168, 85, 247, 0.05) 100%
    );
    animation: gradient-shift 15s ease infinite;
    z-index: 2;
}

@keyframes gradient-shift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5%, -5%) rotate(120deg); }
    66% { transform: translate(-10%, 0) rotate(240deg); }
}

.floating-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.emoji {
    position: absolute;
    font-size: 48px;
    opacity: 0.15;
    animation: float-emoji 20s infinite ease-in-out;
}

.emoji-1 { top: 15%; left: 10%; animation-delay: 0s; }
.emoji-2 { top: 25%; right: 15%; animation-delay: 3s; }
.emoji-3 { bottom: 30%; left: 20%; animation-delay: 6s; }
.emoji-4 { top: 50%; right: 10%; animation-delay: 9s; }
.emoji-5 { bottom: 15%; right: 30%; animation-delay: 12s; }
.emoji-6 { top: 35%; left: 40%; animation-delay: 15s; }

@keyframes float-emoji {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(10deg); }
    50% { transform: translate(-20px, 40px) rotate(-10deg); }
    75% { transform: translate(-40px, -20px) rotate(5deg); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.5);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

.btn-emoji {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-hero-primary:hover .btn-emoji {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    background: rgba(168, 85, 247, 0.1);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-emoji {
    font-size: 40px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Photo Showcase Section */
.photo-showcase {
    padding: 100px 0;
    background: var(--dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.photo-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.photo-card.large {
    grid-column: span 2;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 32px 20px 20px;
    transform: translateY(0);
    transition: all 0.4s;
}

.photo-card:hover .photo-overlay {
    background: linear-gradient(to top, rgba(168, 85, 247, 0.95) 0%, rgba(236, 72, 153, 0.8) 50%, transparent 100%);
}

.photo-tag {
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Why Watch Alone Section */
.why-watch-alone {
    padding: 100px 0;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.fun-way {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.card-emoji {
    font-size: 48px;
}

.card-header h3 {
    font-size: 24px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    font-size: 16px;
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--gray-300);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.bad-item::before {
    content: "😴";
    flex-shrink: 0;
    font-size: 20px;
}

.good-item::before {
    content: "✨";
    flex-shrink: 0;
    font-size: 20px;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: var(--dark);
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.browser-mockup {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.browser-header {
    background: var(--gray-900);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.browser-url {
    flex: 1;
    text-align: center;
    color: var(--gray-400);
    font-size: 15px;
    font-weight: 600;
}

.demo-content {
    position: relative;
}

.watch-party-mockup {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 550px;
}

.video-container {
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-placeholder {
    flex: 1;
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #FB923C 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-indicator {
    font-size: 72px;
    color: white;
    opacity: 0.8;
    animation: pulse-scale 2s infinite;
}

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

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    color: white;
}

.viewer-count,
.sync-status {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.video-controls {
    background: rgba(0, 0, 0, 0.95);
    padding: 16px 24px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.3s;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.control-btn {
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 18px;
}

.control-btn:hover {
    transform: scale(1.2);
}

.time-display {
    color: #ccc;
    font-size: 14px;
    margin: 0 auto;
}

/* Chat Sidebar */
.chat-sidebar {
    background: var(--gray-900);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(168, 85, 247, 0.2);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.video-tile {
    aspect-ratio: 1;
    background: var(--dark);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.video-avatar {
    font-size: 28px;
}

.video-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-300);
}

.chat-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.chat-title {
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 200px;
}

.chat-message {
    margin-bottom: 12px;
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

.username {
    font-weight: 700;
    margin-right: 6px;
    color: var(--primary-light);
}

.message {
    color: var(--gray-300);
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.reaction-bar {
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    background: var(--dark);
    flex-wrap: wrap;
}

.reaction {
    background: var(--surface);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.reaction:hover {
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.demo-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-primary-large {
    padding: 20px 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}

.demo-note {
    margin-top: 16px;
    color: var(--gray-400);
    font-size: 15px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--surface);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 40px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 16px;
    line-height: 1.6;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: var(--dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(168, 85, 247, 0.4);
}

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

.avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.avatar-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid transparent;
    background: var(--gradient-primary);
    padding: 3px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card:hover .avatar-photo {
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.testimonial-role {
    color: var(--gray-400);
    font-size: 14px;
}

.testimonial-text {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 48px;
}

.btn-cta-large {
    padding: 24px 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 22px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 36px rgba(168, 85, 247, 0.4);
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.5);
}

.cta-features {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--gray-300);
    font-weight: 600;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 16px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .photo-card.large {
        grid-column: span 1;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .watch-party-mockup {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Corporate Page Styles */

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-big {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0;
}

.stat-desc {
    color: var(--gray-400);
    font-size: 16px;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
}

.solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 80px;
}

.solution-block.reverse {
    direction: rtl;
}

.solution-block.reverse > * {
    direction: ltr;
}

.solution-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--white);
}

.solution-desc {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.7;
}

.solution-features {
    list-style: none;
    margin: 24px 0 32px 0;
}

.solution-features li {
    padding: 12px 0;
    color: var(--gray-300);
    font-size: 16px;
}

.btn-solution {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-solution:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.visual-icon {
    font-size: 80px;
}

.visual-placeholder p {
    color: var(--gray-500);
    font-size: 18px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-400);
    font-size: 16px;
}

/* Sustainability Section */
.sustainability-section {
    padding: 100px 0;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
}

.sustainability-text h2 {
    margin-top: 16px;
    margin-bottom: 24px;
}

.sustainability-text p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.7;
}

.sustainability-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.eco-stat {
    padding: 32px;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(52, 211, 153, 0.3);
    text-align: center;
}

.eco-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--success);
    margin-bottom: 8px;
}

.eco-label {
    font-size: 16px;
    color: var(--gray-400);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: var(--surface);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--gray-900);
    border-radius: var(--radius-md);
    border: 1px solid rgba(168, 85, 247, 0.1);
    color: var(--gray-500);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-section .testimonial-card {
    background: var(--gray-900);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.testimonials-section .testimonial-text {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 14px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
    padding: 24px;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

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

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--gray-500);
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 48px auto 0;
}

.contact-form {
    background: var(--gray-900);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

/* Responsive Corporate Styles */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .solution-block.reverse {
        direction: ltr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-logos {
        grid-template-columns: 1fr;
    }
}
