/* Variables - Light Theme */
:root {
    /* Primary Colors - Purple/Violet */
    --primary-color: #8b5cf6;
    --primary-hover: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    
    /* Secondary Colors - Teal/Cyan */
    --secondary-color: #14b8a6;
    --secondary-hover: #0d9488;
    --secondary-light: #2dd4bf;
    --secondary-dark: #0f766e;
    
    /* Accent Colors */
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    
    /* Extended Color Palette */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Modern Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Extended Accent Colors */
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-indigo: #6366f1;
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* Background Colors */
    --background: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    --background-card: #ffffff;
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(228,100%,74%,0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189,100%,56%,0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(355,100%,93%,0.3) 0px, transparent 50%);
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 20px 25px -5px rgba(139, 92, 246, 0.25);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-depth: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(139, 92, 246, 0.1);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Common Values */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
    /* Primary Colors */
    --primary-color: #a78bfa;
    --primary-hover: #8b5cf6;
    --primary-light: #c4b5fd;
    --primary-dark: #7c3aed;
    
    /* Secondary Colors */
    --secondary-color: #2dd4bf;
    --secondary-hover: #14b8a6;
    --secondary-light: #5eead4;
    --secondary-dark: #0d9488;
    
    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Background Colors */
    --background: #0f172a;
    --background-secondary: #1e293b;
    --background-tertiary: #334155;
    --background-card: #1e293b;
    
    /* Border Colors */
    --border-color: #334155;
    --border-light: #475569;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-colored: 0 20px 25px -5px rgba(167, 139, 250, 0.25);
}

/* Auto Dark Theme Detection */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        /* Primary Colors */
        --primary-color: #a78bfa;
        --primary-hover: #8b5cf6;
        --primary-light: #c4b5fd;
        --primary-dark: #7c3aed;
        
        /* Secondary Colors */
        --secondary-color: #2dd4bf;
        --secondary-hover: #14b8a6;
        --secondary-light: #5eead4;
        --secondary-dark: #0d9488;
        
        /* Text Colors */
        --text-primary: #f1f5f9;
        --text-secondary: #cbd5e1;
        --text-muted: #94a3b8;
        
        /* Background Colors */
        --background: #0f172a;
        --background-secondary: #1e293b;
        --background-tertiary: #334155;
        --background-card: #1e293b;
        
        /* Border Colors */
        --border-color: #334155;
        --border-light: #475569;
        
        /* Shadows */
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        --shadow-colored: 0 20px 25px -5px rgba(167, 139, 250, 0.25);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
[dir="rtl"] {
    font-family: 'Tajawal', 'Inter', sans-serif;
}

[dir="rtl"] .header-content,
[dir="rtl"] .hero-content,
[dir="rtl"] .plan-features,
[dir="rtl"] .footer-content {
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-glass);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    opacity: 0.98;
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.language-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background);
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.language-selector select:hover {
    border-color: var(--primary-color);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .mobile-menu {
    background: rgba(15, 23, 42, 0.95);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.mobile-nav a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.mobile-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu .language-selector {
    margin-bottom: 1rem;
}

.mobile-menu .language-selector select {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius);
    min-width: 200px;
    text-align: center;
}

.mobile-menu .theme-toggle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 2.5rem 0;
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    animation: heroFadeIn 1.5s ease-out 0.3s forwards;
}

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

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    animation: heroVideoFadeIn 2s ease-out forwards;
}

@keyframes heroVideoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.hero-video.active {
    opacity: 1;
}

/* Fallback Background */
.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
}

[data-theme="dark"] .hero-fallback-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7) 0%, rgba(236, 72, 153, 0.6) 100%);
}

/* Video Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(236, 72, 153, 0.3) 100%),
        rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    animation: heroOverlayFadeIn 1.5s ease-out 0.5s forwards;
}

@keyframes heroOverlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: heroContentSlideIn 1.2s ease-out 0.6s forwards;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-20px);
    animation: heroBadgeSlideIn 0.8s ease-out 0.9s forwards;
}

@keyframes heroBadgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-icon {
    font-size: 1rem;
    animation: badgeIconPulse 2s ease-in-out 2s infinite;
}

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

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTitleSlideIn 1s ease-out 1.1s forwards;
}

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

.hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(15px);
    animation: heroSubtitleSlideIn 0.8s ease-out 1.3s forwards;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: scale(0.9);
    animation: heroStatsZoomIn 0.8s ease-out 1.5s forwards;
}

@keyframes heroStatsZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: statSlideIn 0.6s ease-out forwards;
}

.stat:nth-child(1) { animation-delay: 1.7s; }
.stat:nth-child(2) { animation-delay: 1.8s; }
.stat:nth-child(3) { animation-delay: 1.9s; }

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    margin-bottom: 0.25rem;
    position: relative;
    overflow: hidden;
}

.stat-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: statNumberShine 2s ease-in-out 2s infinite;
}

@keyframes statNumberShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(25px);
    animation: heroActionsSlideIn 0.8s ease-out 2.1s forwards;
}

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

/* Hero Trial Button */
.hero-trial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-20px);
    animation: heroButtonSlideIn 0.6s ease-out 2.3s forwards;
}

@keyframes heroButtonSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-trial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-trial-btn:hover::before {
    left: 100%;
}

.hero-trial-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.hero-trial-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.btn-main {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.btn-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Plans Button */
.hero-plans-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    min-width: 150px;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    animation: heroPlansButtonSlideIn 0.6s ease-out 2.5s forwards;
}

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

.hero-plans-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-plans-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Plans Section */
.plans {
    padding: 2rem 0;
    background: var(--background-secondary);
    position: relative;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
}

/* Plans Showcase */
.plans-showcase {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Plan Comparison Header */
.plans-comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
}

[data-theme="dark"] .plans-comparison-header {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    align-self: center;
}

.comparison-plan {
    text-align: center;
    position: relative;
}

.comparison-plan.featured {
    background: var(--gradient-mesh);
    border-radius: var(--radius);
    padding: 1rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.plan-header-compact h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-price-highlight {
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

/* Enhanced Trial Buttons dans comparison-header */
.plan-header-compact .enhanced-trial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 0.75rem;
}

.plan-header-compact .enhanced-trial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.plan-header-compact .enhanced-trial-btn:hover::before {
    left: 100%;
}

.plan-header-compact .enhanced-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.plan-header-compact .enhanced-trial-btn.standard {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.plan-header-compact .enhanced-trial-btn.standard:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.plan-header-compact .enhanced-trial-btn.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.plan-header-compact .enhanced-trial-btn.premium:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.plan-header-compact .btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.plan-header-compact .enhanced-trial-btn:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.plan-header-compact .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    flex: 1;
}

.plan-header-compact .btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.plan-header-compact .btn-subtext {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-colored);
}

/* Features Comparison */
.features-comparison {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
}

[data-theme="dark"] .features-comparison {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row:hover {
    background: rgba(139, 92, 246, 0.05);
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-icon {
    font-size: 1.25rem;
    background: var(--gradient-secondary);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

.feature-value.premium {
    color: var(--primary-color);
}

.check-icon {
    background: var(--gradient-secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.check-icon.premium {
    background: var(--gradient-primary);
}

.feature-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    background: linear-gradient(135deg, #f6f9fc 0%, #e9ecef 100%);
    padding: 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.plan-card.featured .plan-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.plan-card.featured .plan-header h3 {
    color: white;
}

.plan-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-card.featured .plan-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

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

.plan-badge-corner {
    position: absolute;
    top: 20px;
    right: -30px;
    padding: 0.4rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    transform-origin: center;
    z-index: 10;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.plan-badge-corner.best-value {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #7c2d12;
}

.plan-badge-corner.recommended {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 1.5rem;
}

.pricing-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.pricing-column {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

[data-theme="dark"] .pricing-column {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-depth);
}

.pricing-column.premium {
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
}

.pricing-column h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--background-secondary);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.price-option:hover {
    border-color: var(--primary-color);
    background: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.price-option.popular {
    border: 2px solid var(--primary-color);
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.03);
}

.price-option.popular:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.price-option .duration {
    font-weight: 600;
    font-size: 0.9rem;
}

.price-option.popular .duration {
    color: white;
}

.price-option .price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.price-option.popular .price {
    color: white;
}

.price-option .savings {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.popular-tag {
    position: absolute;
    top: -8px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

/* Plans Actions */
.plans-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.action-column {
    display: flex;
    justify-content: center;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    border: 2px solid transparent;
}

.plan-button.standard {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.plan-button.standard:hover {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-button.premium {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-colored);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.plan-button.premium:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.plan-button:hover::before {
    left: 100%;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    text-align: center;
}

[data-theme="dark"] .payment-method {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-depth);
    border-color: rgba(139, 92, 246, 0.4);
}

.payment-method.featured {
    border: 2px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    transform: scale(1.03);
}

.payment-method.featured:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.payment-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.payment-icon.card {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #003087, #009cde);
}

.payment-icon.western {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
}

.payment-icon.crypto {
    background: linear-gradient(135deg, #f0b90b, #f3ba2f);
}

.payment-icon.bank {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.payment-method:hover .payment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.payment-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-colored);
    animation: pulse 2s infinite;
}

.payment-method h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-method p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.payment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.payment-features li {
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
}

.payment-features li::before {
    content: "";
    display: inline-block;
    margin-right: 0.5rem;
}

.payment-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-mesh);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.payment-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(139,92,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23payment)"/></svg>');
    pointer-events: none;
}

.contact-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.payment-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .payment-contact-btn {
    color: var(--text-primary);
}

.payment-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Guarantee Banner */
.guarantee-banner {
    background: var(--gradient-mesh);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shield" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(139,92,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23shield)"/></svg>');
    pointer-events: none;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:before {
    content: '🎯';
    position: absolute;
    right: 1.5rem;
    opacity: 0.1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover:before {
    transform: translateX(-5px) scale(1.2);
    opacity: 0.2;
}

.whatsapp-button.trial {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    min-width: 260px;
    justify-content: center;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-button.trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.whatsapp-button.trial::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button.trial:hover::before {
    left: 100%;
}

.whatsapp-button.trial:hover::after {
    width: 300px;
    height: 300px;
}

.whatsapp-button.trial svg {
    transition: transform 0.3s ease;
}

.whatsapp-button.trial:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-button.trial:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-button.trial svg {
    transition: transform 0.3s ease;
}

.whatsapp-button.trial:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Movies Section */
.movies {
    padding: 2rem 0;
    background: var(--background);
}

/* Content Overview */
.content-overview {
    margin-bottom: 1.5rem;
}

.content-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: var(--gradient-mesh);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .content-stat {
    background: rgba(255, 255, 255, 0.05);
}

.content-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .content-stat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-stat .stat-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.content-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.content-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Content Categories */
.content-categories {
    margin-bottom: 1.5rem;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .category-card {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-depth);
    border-color: rgba(139, 92, 246, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
}

.category-icon {
    font-size: 2.5rem;
    background: var(--gradient-secondary);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
}

.category-badge {
    padding: 0.3rem 0.8rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-content {
    padding: 1rem 1.5rem 1.5rem;
}

.category-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.category-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
}

.category-list li:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Content Features */
.content-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.feature-item .feature-icon {
    font-size: 1.5rem;
    background: var(--gradient-accent);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-item:hover span {
    color: white;
}

/* Movies Showcase */
.movies-showcase {
    margin-bottom: 1.5rem;
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

/* Movies Tabs */
.movies-tabs {
    max-width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tab-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.tab-button:hover::before {
    left: 0;
}

.tab-button:hover {
    color: white;
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-colored);
}

.tab-button.active::before {
    left: 0;
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: block;
}

/* Movies Slider */
.movies-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.movies-slider {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.movies-slider::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-secondary);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
}

/* Movie Cards */
.movie-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background: var(--background-card);
    animation: scaleIn 0.5s ease-out;
    flex: 0 0 160px;
    min-width: 160px;
    border: 1px solid var(--border-color);
}

.movie-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.movie-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

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

.movie-info {
    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.7) 70%, transparent 100%);
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.movie-card:hover .movie-info {
    transform: translateY(0);
}

.movie-title {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.movie-year {
    font-size: 0.75rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.movie-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: #fbbf24;
    font-weight: 600;
}

.movie-rating::before {
    content: "⭐";
    font-size: 0.7rem;
}

.movie-overview {
    font-size: 0.7rem;
    opacity: 0.9;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading States */
.loading-movies {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
    gap: 1rem;
}

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

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

/* Error States */
.movies-error {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.error-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.movies-error h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.movies-error p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.retry-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.retry-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Fallback Movies Styles */
.fallback-notice {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.fallback-notice p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.fallback-movie {
    border: 2px dashed var(--border-color) !important;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.05) 0%, 
        rgba(var(--primary-rgb), 0.1) 100%);
}

.movie-placeholder {
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.1) 0%, 
        rgba(var(--primary-rgb), 0.2) 100%);
    border-radius: var(--radius) var(--radius) 0 0;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.placeholder-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-details {
    font-size: 0.8rem !important;
    color: var(--text-secondary) !important;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius);
    margin: 0.5rem 0;
    font-family: monospace;
}

/* Content CTA */
.content-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    color: white;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.content-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="film" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23film)"/></svg>');
    pointer-events: none;
}

.cta-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cta-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.content-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.content-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
    padding: 2rem 0;
    background: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    animation: slideInLeft 0.5s ease-out;
}

.faq-item:nth-child(even) {
    animation: slideInRight 0.5s ease-out;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    padding-top: 0.5rem;
}

/* Devices Section */
.devices {
    padding: 2rem 0;
    background: var(--background);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

/* Devices Showcase */
.devices-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.devices-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.device-group {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .device-group {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.device-group:hover::before {
    left: 100%;
}

.device-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-depth);
    border-color: rgba(139, 92, 246, 0.3);
}

.device-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.device-main-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
}

.device-group h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.device-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.device-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--background-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.device-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Platform-specific colors */
.device-tag.ios {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    border-color: transparent;
}

.device-tag.android {
    background: linear-gradient(135deg, #3DDC84, #4285F4);
    color: white;
    border-color: transparent;
}

.device-tag.windows {
    background: linear-gradient(135deg, #0078D4, #106EBE);
    color: white;
    border-color: transparent;
}

.device-tag.mac {
    background: linear-gradient(135deg, #6C757D, #495057);
    color: white;
    border-color: transparent;
}

.device-tag.linux {
    background: linear-gradient(135deg, #FCC624, #E4A853);
    color: #333;
    border-color: transparent;
}

.device-tag.web {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    border-color: transparent;
}

/* Device Features */
.devices-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: var(--gradient-mesh);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .device-feature {
    background: rgba(255, 255, 255, 0.05);
}

.device-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .device-feature:hover {
    background: rgba(255, 255, 255, 0.1);
}

.device-feature .feature-icon {
    font-size: 1.5rem;
    background: var(--gradient-secondary);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.device-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Why Us Section */
.why-us {
    padding: 2rem 0;
    background: var(--background-secondary);
}

/* Advantages Showcase */
.advantages-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out;
}

[data-theme="dark"] .advantage-card {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-depth);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Card Variants */
.advantage-card.primary:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.advantage-card.secondary:hover {
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.advantage-card.accent:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.advantage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
    position: relative;
}

.advantage-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.advantage-card.secondary .advantage-icon {
    background: var(--gradient-secondary);
}

.advantage-card.accent .advantage-icon {
    background: var(--gradient-accent);
}

.advantage-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

.advantage-card.secondary .advantage-pulse {
    background: var(--gradient-secondary);
}

.advantage-card.accent .advantage-pulse {
    background: var(--gradient-accent);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.advantage-badge {
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-colored);
}

.advantage-card.secondary .advantage-badge {
    background: var(--gradient-secondary);
}

.advantage-card.accent .advantage-badge {
    background: var(--gradient-accent);
}

.advantage-content {
    padding: 1rem 1.5rem 1.5rem;
}

.advantage-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.advantage-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advantage-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-points li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.advantage-points li:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Statistics Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--gradient-mesh);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-item {
    background: rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2rem;
    background: var(--gradient-secondary);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

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

/* Trial CTA */
.trial-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    color: white;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.trial-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/><circle cx="15" cy="15" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
}

.trial-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trial-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.trial-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.trial-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--background-tertiary) 0%, var(--background-secondary) 100%);
    color: var(--text-primary);
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer h3,
.footer h4 {
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25d366;
    color: white !important;
    border-radius: var(--radius);
    transition: background 0.3s ease;
}

.whatsapp-link:hover {
    background: #1fb855;
}

.footer-social {
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.facebook:hover {
    background: #166fe5;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.twitter:hover {
    background: #0d8bd9;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.whatsapp:hover {
    background: #1fb855;
}

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

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    min-width: 60px;
    justify-content: center;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float {
    background: #25d366;
    color: white;
    width: auto;
    height: 60px;
    padding: 0 20px 0 20px;
    border-radius: 30px;
    min-width: 60px;
}

.whatsapp-float-content {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.whatsapp-float-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}



/* Enhanced Animations */
.plan-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.movie-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.movie-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Global Animation Settings */
:root {
    --animation-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(
        90deg, 
        transparent, 
        var(--primary-color), 
        transparent
    );
    margin: 1rem 0;
    position: relative;
    opacity: 0.6;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Particles Background */
.particles-bg {
    position: relative;
    overflow: hidden;
}

.particles-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Enhanced Transitions */
* {
    transition: background-color var(--transition), 
                color var(--transition), 
                border-color var(--transition),
                transform var(--transition),
                box-shadow var(--transition);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Responsive Design */
/* Enhanced Trial Buttons Section - Nouveaux styles pour les boutons d'essai améliorés */
.trial-buttons-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .trial-buttons-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: var(--border-color);
}

.trial-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
    pointer-events: none;
}

.trial-section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.trial-section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.enhanced-trial-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.trial-option {
    background: var(--background-card);
    border-radius: var(--radius);
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .trial-option {
    background: var(--background-card);
    border-color: var(--border-color);
}

.trial-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.trial-option:hover::before {
    opacity: 1;
}

.trial-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trial-option.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-colored);
}

.trial-option.featured::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 1;
}

.trial-option-header {
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
}

.trial-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
}

.trial-badge.standard {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.trial-badge.premium {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.popular-label {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-sm);
    animation: pulse 2s infinite;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.trial-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enhanced-trial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.enhanced-trial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.enhanced-trial-btn:hover::before {
    left: 100%;
}

.enhanced-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.enhanced-trial-btn.standard {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.enhanced-trial-btn.standard:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.enhanced-trial-btn.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.enhanced-trial-btn.premium:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.enhanced-trial-btn:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-text {
    font-size: var(--font-size-base);
    font-weight: 600;
}

.btn-subtext {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    font-weight: 400;
}

.trial-guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: var(--space-md);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .trial-guarantee {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.1);
}

.guarantee-icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.guarantee-text strong {
    display: block;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* =================================================================
   MOBILE RESPONSIVE - COMPLETE REBUILD
   ================================================================= */

@media screen and (max-width: 768px) {
    /* BASE MOBILE SETUP */
    * {
        box-sizing: border-box;
    }
    
    html {
        font-size: 16px; /* Prevent iOS zoom */
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        font-size: 16px;
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }
    
    /* =================================================================
       HEADER MOBILE
       ================================================================= */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: auto;
        padding: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
    }
    
    [data-theme="dark"] .header {
        background: rgba(15, 23, 42, 0.95);
    }
    
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
        margin: 0;
    }
    
    .nav {
        display: none !important;
    }
    
    .header-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .language-selector select {
        padding: 0.5rem;
        font-size: 0.9rem;
        border-radius: 6px;
        min-width: 80px;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 3px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    /* MOBILE MENU OVERLAY */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 2rem 1rem;
    }
    
    [data-theme="dark"] .mobile-menu {
        background: rgba(15, 23, 42, 0.98);
    }
    
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav {
        width: 100%;
        max-width: 280px;
        margin-bottom: 2rem;
    }
    
    .mobile-nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        margin-bottom: 0.75rem;
        background: var(--background-card);
        border: 2px solid var(--border-color);
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-nav a:hover,
    .mobile-nav a:active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .mobile-controls {
        width: 100%;
        max-width: 280px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu .language-selector {
        width: 100%;
    }
    
    .mobile-menu .language-selector select {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
        border-radius: 12px;
        border: 2px solid var(--border-color);
        background: var(--background-card);
    }
    
    .mobile-menu .theme-toggle {
        width: 100%;
        height: 50px;
        border-radius: 12px;
        font-size: 1.2rem;
        border: 2px solid var(--border-color);
    }
    
    /* =================================================================
       HERO SECTION MOBILE
       ================================================================= */
    
    /* Adjustment for fixed header */
    body {
        padding-top: 60px; /* Height of fixed header */
    }
    
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: 1.5rem;
        margin: 0;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: white;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat {
        text-align: center;
        padding: 0.75rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
        font-weight: 800;
        color: #fbbf24;
        margin-bottom: 0.25rem;
        display: block;
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    }
    
    .stat-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .hero-trial-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        text-decoration: none;
        border-radius: 15px;
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    
    .hero-plans-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        color: white;
        text-decoration: none;
        border-radius: 15px;
        font-weight: 600;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .btn-icon {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .btn-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-main {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
    }
    
    .btn-sub {
        font-size: 0.8rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    /* =================================================================
       SECTIONS MOBILE
       ================================================================= */
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 1rem;
        color: var(--text-secondary);
    }
    
    /* =================================================================
       PLANS SECTION MOBILE
       ================================================================= */
    
    .plans {
        padding: 3rem 0;
    }
    
    .plans-showcase {
        padding: 0;
        background: none;
    }
    
    /* =================================================================
       FOOTER MOBILE
       ================================================================= */
    
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        display: block;
        text-align: center;
    }
    
    .footer-content > div {
        margin-bottom: 2rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .footer-brand p {
        font-size: 1rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--background-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .footer-links a:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .footer-contact a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: var(--gradient-primary);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
    
    .footer-contact a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }
    
    .social-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-btn:hover {
        transform: translateY(-3px) scale(1.1);
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        text-align: center;
        font-size: 0.9rem;
        color: var(--text-secondary);
    }
    
    /* =================================================================
       FLOATING BUTTONS MOBILE
       ================================================================= */
    
    .floating-buttons {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }
    
    /* =================================================================
       RESPONSIVE PLANS (continuation)
       ================================================================= */
    
    .plans-comparison-header {
        display: block;
        background: var(--background-card);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .comparison-feature {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .comparison-feature h4 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .comparison-plan {
        background: var(--background-secondary);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 2px solid var(--border-color);
        text-align: center;
        position: relative;
    }
    
    .comparison-plan.featured {
        border-color: var(--primary-color);
        background: var(--background);
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    }
    
    .plan-header-compact h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    
    .plan-price-highlight {
        margin-bottom: 1rem;
    }
    
    .price-main {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-color);
    }
    
    .price-period {
        font-size: 1rem;
        color: var(--text-secondary);
        font-weight: 500;
    }
    
    .plan-desc {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    /* Enhanced Trial Buttons Mobile */
    .plan-header-compact .enhanced-trial-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
        border-radius: 12px;
    }
    
    .plan-header-compact .btn-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    .plan-header-compact .btn-text {
        font-size: 0.9rem;
    }
    
    .plan-header-compact .btn-subtext {
        font-size: 0.75rem;
    }
    
    /* Features Comparison Mobile */
    .features-comparison {
        background: var(--background-card);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .feature-row {
        display: block;
        padding: 1.5rem;
        margin-bottom: 1rem;
        background: var(--background-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-light);
        text-align: center;
    }
    
    .feature-name {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        background: var(--gradient-primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .feature-value {
        display: block;
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
    }
    
    .feature-value.standard {
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
        border: 2px solid rgba(20, 184, 166, 0.2);
        color: var(--secondary-color);
    }
    
    .feature-value.premium {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
        border: 2px solid rgba(139, 92, 246, 0.2);
        color: var(--primary-color);
    }
    
    /* =================================================================
       MOVIES SECTION MOBILE
       ================================================================= */
    
    .movies {
        padding: 3rem 0;
    }
    
    .movies-showcase {
        background: var(--background-card);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .tab-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        background: var(--background-secondary);
        border-radius: 12px;
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-button {
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        background: transparent;
        border: none;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .tab-button.active {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
    
    .movies-slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .movies-slider {
        display: flex;
        gap: 1rem;
        padding: 1rem 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .movies-slider::-webkit-scrollbar {
        display: none;
    }
    
    .movie-card {
        flex: 0 0 140px;
        min-width: 140px;
        border-radius: 12px;
        background: var(--background-card);
        border: 1px solid var(--border-color);
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .movie-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .movie-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .movie-info {
        padding: 1rem 0.8rem;
        position: relative;
        background: var(--background-card);
    }
    
    .movie-title {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        color: var(--text-primary);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .movie-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .movie-year,
    .movie-rating {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        border-radius: 10px;
        background: var(--background-secondary);
        color: var(--text-secondary);
    }
    
    .movie-overview {
        font-size: 0.7rem;
        line-height: 1.3;
        color: var(--text-secondary);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slider-btn {
        display: none; /* Hide on mobile - use touch scroll */
    }
    
    /* =================================================================
       CONTENT STATS MOBILE
       ================================================================= */
    
    .content-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        background: var(--background-card);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
    }
    
    .content-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--background-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-light);
    }
    
    .content-stat .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: var(--gradient-primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .content-stat .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .content-stat .stat-label {
        font-size: 0.85rem;
        color: var(--text-secondary);
        font-weight: 500;
    }
    
    .plans-comparison-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
        background: var(--background-card);
        border-radius: 16px;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
    }
    
    .comparison-feature {
        text-align: center;
        margin-bottom: 1rem;
        order: -1;
    }
    
    .comparison-feature h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .comparison-plan {
        background: var(--background-secondary);
        border-radius: 12px;
        padding: 1.5rem;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .comparison-plan.featured {
        border-color: var(--primary-color);
        background: var(--background);
        position: relative;
        transform: scale(1.02);
    }
    
    .plan-header-compact h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .plan-price-highlight {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .price-main {
        font-size: 2rem;
        font-weight: 800;
    }
    
    .price-period {
        font-size: 1rem;
    }
    
    .plan-desc {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Features Comparison Mobile */
    .features-comparison {
        background: var(--background-card);
        border-radius: 16px;
        padding: 1rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
    }
    
    .feature-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
        background: var(--background);
        border-radius: 12px;
        border: 1px solid var(--border-light);
    }
    
    .feature-name {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
        background: var(--gradient-primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .feature-value {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .feature-value.standard {
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
        border: 2px solid rgba(20, 184, 166, 0.2);
        color: var(--secondary-color);
    }
    
    .feature-value.premium {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
        border: 2px solid rgba(139, 92, 246, 0.2);
        color: var(--primary-color);
    }
    
    .feature-badge {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        background: var(--gradient-accent);
        color: white;
        font-weight: 600;
    }
    
    /* Pricing Section Mobile */
    .pricing-section {
        margin: 2rem 0;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
        font-weight: 700;
    }
    
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-column {
        background: var(--background-card);
        border-radius: 16px;
        padding: 1.5rem;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .pricing-column.premium {
        border-color: var(--primary-color);
        background: var(--background);
        position: relative;
    }
    
    .pricing-column h4 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .pricing-options {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .price-option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
        background: var(--background-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
    }
    
    .price-option:hover {
        background: var(--primary-light);
        color: white;
        transform: translateX(5px);
    }
    
    .price-option.popular {
        background: var(--gradient-primary);
        color: white;
        border: none;
        position: relative;
        transform: scale(1.02);
    }
    
    .price-option .duration {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .price-option .price {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-color);
    }
    
    .price-option.popular .price {
        color: white;
    }
    
    .savings {
        font-size: 0.75rem;
        background: var(--gradient-accent);
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 20px;
        font-weight: 600;
        margin-left: 0.5rem;
    }
    
    .popular-tag {
        position: absolute;
        top: -8px;
        right: 1rem;
        background: var(--gradient-secondary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .plans-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .plan-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: auto;
        width: 100%;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .guarantee-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .guarantee-text h4 {
        font-size: 1.125rem;
    }
    
    .guarantee-text p {
        font-size: 0.85rem;
    }
    
    .content-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1.2rem;
    }
    
    .content-stat {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .content-stat .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .content-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .content-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    .category-header {
        padding: 1.2rem 1.2rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .category-icon {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .category-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
        align-self: flex-end;
    }
    
    .category-content {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .category-content h3 {
        font-size: 1.125rem;
    }
    
    .category-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .content-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.2rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .content-cta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .content-cta-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Movies Section Mobile */
    .movies {
        padding: 2rem 0;
    }
    
    .content-overview {
        margin-bottom: 2rem;
    }
    
    .content-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .content-stat {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .content-stat .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
        margin: 0 auto;
    }
    
    .content-stat .stat-number {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .content-stat .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .content-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .feature-item {
        padding: 1rem;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feature-item .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .feature-item span {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .movies-showcase {
        background: var(--background-card);
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border: 1px solid var(--border-color);
    }
    
    .tab-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        background: var(--background-secondary);
        border-radius: 12px;
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-button {
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
    }
    
    .movies-slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .movies-slider {
        display: flex;
        gap: 1rem;
        padding: 1rem 0;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .movies-slider::-webkit-scrollbar {
        display: none;
    }
    
    .movie-card {
        flex: 0 0 150px;
        min-width: 150px;
        border-radius: 12px;
    }
    
    .movie-card img {
        height: 225px;
        border-radius: 12px 12px 0 0;
    }
    
    .movie-info {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .movie-title {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .movie-meta {
        gap: 0.4rem;
        margin-bottom: 0.25rem;
    }
    
    .movie-year,
    .movie-rating {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
    
    .movie-overview {
        font-size: 0.65rem;
        -webkit-line-clamp: 2;
    }
    
    .movie-info {
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }
    
    .movie-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .movie-meta {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .movie-year,
    .movie-rating {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .movie-overview {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .slider-btn {
        display: none; /* Hide slider buttons on mobile, use touch scroll */
    }
    
    .loading-movies {
        padding: 2rem 1rem;
        gap: 1rem;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    
    .movies-error {
        padding: 2rem 1rem;
        border-radius: 12px;
    }
    
    .movies-error h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .movies-error p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .retry-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Content CTA Mobile */
    .content-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        opacity: 0.9;
    }
    
    .content-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        border-radius: 12px;
    }
    
    .main-advantages {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .advantage-card {
        margin-bottom: 1rem;
    }
    
    .advantage-header {
        padding: 1.2rem 1.2rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .advantage-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        align-self: flex-end;
    }
    
    .advantage-content {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .advantage-content h3 {
        font-size: 1.25rem;
    }
    
    .advantage-content p {
        font-size: 0.9rem;
    }
    
    .advantage-points li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .trial-cta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .trial-button {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .devices-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .device-group {
        padding: 1.2rem;
    }
    
    .device-group-header {
        gap: 0.75rem;
    }
    
    .device-main-icon {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .device-group h3 {
        font-size: 1.125rem;
    }
    
    .device-tags {
        gap: 0.4rem;
    }
    
    .device-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .devices-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.2rem;
    }
    
    .device-feature {
        padding: 0.8rem;
    }
    
    .device-feature .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }
    
    .device-feature span {
        font-size: 0.85rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-brand p {
        font-size: 1rem;
        opacity: 0.8;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 1rem;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-contact a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        background: var(--gradient-primary);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .footer-contact a:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    }
    
    .social-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
        font-size: 0.9rem;
    }
    
    /* Floating Buttons Mobile */
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }
    
    .pricing-options {
        padding: 1.25rem;
    }
    
    .pricing-options-grid {
        gap: 0.5rem;
    }
    
    .price-item {
        padding: 0.75rem 1rem;
    }
    
    .price-item.featured-price {
        transform: scale(1.02);
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .duration {
        font-size: 0.9rem;
    }
    
    .plan-features {
        padding: 1.25rem;
    }
    
    .plan-features li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .plan-actions {
        padding: 1.25rem;
    }
    
    .whatsapp-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-button.trial {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        min-width: 220px;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .header-controls {
        gap: 0.5rem;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Payment Methods Mobile */
    .payment-title {
        font-size: 1.25rem;
    }
    
    .payment-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .payment-method {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .payment-method.featured {
        transform: scale(1);
        margin-bottom: 1.2rem;
    }
    
    .payment-method.featured:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    .payment-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .payment-icon {
        width: 45px;
        height: 45px;
    }
    
    .payment-badge {
        position: static;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .payment-method h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .payment-method p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .payment-features {
        text-align: left;
    }
    
    .payment-features li {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }
    
    .payment-contact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .contact-info h4 {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .payment-contact-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    /* Responsive pour les boutons d'essai améliorés */
    .trial-buttons-section {
        padding: var(--space-md);
        margin: var(--space-md) 0;
    }
    
    .trial-section-title {
        font-size: var(--font-size-2xl);
    }
    
    .enhanced-trial-buttons {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .trial-option {
        padding: var(--space-md);
    }
    
    .enhanced-trial-btn {
        padding: 1rem;
        font-size: var(--font-size-sm);
    }
    
    /* Responsive pour les boutons dans comparison-header */
    .plan-header-compact .enhanced-trial-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        gap: 0.6rem;
        margin-top: 0.6rem;
    }
    
    .plan-header-compact .btn-icon-wrapper {
        width: 24px;
        height: 24px;
    }
    
    .plan-header-compact .btn-text {
        font-size: 0.85rem;
    }
    
    .plan-header-compact .btn-subtext {
        font-size: 0.7rem;
    }
    
    .btn-content {
        align-items: center;
        text-align: center;
    }
    
    .trial-guarantee {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .guarantee-text strong {
        font-size: var(--font-size-base);
    }
}

/* Extra Small Mobile Devices */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .stat {
        padding: 0.75rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .content-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .movie-card {
        flex: 0 0 130px;
        min-width: 130px;
    }
    
    .movie-card img {
        height: 195px;
    }
    
    .tab-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        padding: 0.75rem;
        min-width: 55px;
    }
    
    .whatsapp-float-text {
        display: none;
    }
    
    .floating-buttons {
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .pricing-column {
        padding: 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0.5rem;
    }
} 