/* ============================================
   QHDTV PREMIUM - Premium Streaming TV
   Main Stylesheet
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a78bfa;
    --gold: #d4af37;
    --gold-light: #f5e6b8;
    --gold-dark: #b8941e;
    --dark: #0a0a1a;
    --dark-2: #111127;
    --dark-3: #1a1a35;
    --dark-4: #252545;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --green: #22c55e;
    --green-dark: #16a34a;
    --red: #ef4444;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --gradient-1: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-2: linear-gradient(135deg, #d4af37 0%, #f5e6b8 50%, #d4af37 100%);
    --gradient-3: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37, #f5e6b8, #d4af37);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(124, 58, 237, 0.7), 0 0 50px rgba(124, 58, 237, 0.3); }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
}

.loader-logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    display: block;
    letter-spacing: 6px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-3);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: loaderProgress 1.5s ease-in-out forwards;
}

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

/* ===== URGENCY TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #7c3aed, #ec4899, #7c3aed);
    background-size: 200% 100%;
    animation: topBarGradient 3s ease infinite;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

@keyframes topBarGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar-flash {
    font-size: 1.2rem;
    animation: flashPulse 1s ease-in-out infinite;
}

@keyframes flashPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.highlight-count {
    color: #fde047;
    font-weight: 800;
    font-size: 1.1rem;
}

.countdown-inline {
    font-weight: 800;
    font-family: 'Courier New', monospace;
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.top-bar-btn {
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.top-bar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    top: 0;
}

/* When top bar is visible, header sits below it */
.header:not(.scrolled) {
    top: 48px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    position: relative;
}

.logo-qhdtv {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.logo-premium {
    font-size: 0.7rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-badge {
    position: absolute;
    top: -8px;
    right: -30px;
    font-size: 0.5rem;
    font-weight: 800;
    background: var(--gold);
    color: var(--dark);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    position: relative;
    padding: 4px 0;
}

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

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

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

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

/* Hero backgrounds using CSS gradients as placeholders */
/* Replace these with actual images: background-image: url('../images/hero-movies.jpg'); */
.hero-bg-movies {
    background: linear-gradient(135deg, #1a0533 0%, #0d1b2a 30%, #1b2838 60%, #0a1628 100%);
}

.hero-bg-football {
    background: linear-gradient(135deg, #0d2818 0%, #1a3a2a 30%, #0f2d1f 60%, #0a1e14 100%);
}

.hero-bg-entertainment {
    background: linear-gradient(135deg, #2d0a3e 0%, #1a0d2e 30%, #0d1b3a 60%, #1a0533 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 26, 0.7) 0%,
        rgba(10, 10, 26, 0.4) 40%,
        rgba(10, 10, 26, 0.6) 70%,
        rgba(10, 10, 26, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: inline;
}

.hero-stat-plus, .hero-stat-pct {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Slider controls */
.hero-slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Hero animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--dark-2);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--gold);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));
    font-size: 1.6rem;
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== CONTENT SHOWCASE ===== */
.content-showcase {
    padding: 100px 0;
    background: var(--dark-2);
}

.content-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.content-category-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.content-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
}

.category-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Category backgrounds - replace with real images */
.category-football {
    background: linear-gradient(135deg, #0d3320, #1a5c3a, #0d3320);
}

.category-movies {
    background: linear-gradient(135deg, #1a0533, #3d1a6e, #1a0533);
}

.category-kids {
    background: linear-gradient(135deg, #2d1b69, #4a2c8a, #2d1b69);
}

.category-documentary {
    background: linear-gradient(135deg, #0a2540, #1a3a5c, #0a2540);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-end;
}

.league-badge, .platform-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-info h3 i {
    color: var(--gold);
}

.category-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Leagues Marquee */
.leagues-marquee {
    overflow: hidden;
    padding: 20px 0;
    background: rgba(124, 58, 237, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-300);
    opacity: 0.7;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== DEVICES SECTION ===== */
.devices-section {
    padding: 100px 0;
    background: var(--dark);
}

.devices-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.devices-text p {
    color: var(--gray-400);
    margin-top: 16px;
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.device-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.device-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-300);
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.device-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.device-item i {
    font-size: 1.3rem;
    color: var(--primary-light);
    width: 20px;
    text-align: center;
}

/* Device Mockups */
.devices-visual {
    display: flex;
    justify-content: center;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.mockup-tv {
    width: 380px;
    margin: 0 auto;
}

.mockup-screen {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a0533, #0d1b3a, #1a2840);
    border: 3px solid #333;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    text-align: center;
}

.mockup-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    border: 2px solid rgba(124, 58, 237, 0.6);
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--white);
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(124, 58, 237, 0.5); }
}

.mockup-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.mockup-quality {
    display: inline-block;
    font-size: 0.6rem;
    padding: 2px 8px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 4px;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: 1px;
}

.mockup-stand {
    width: 80px;
    height: 30px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #444, #222);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.mockup-phone {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 130px;
    background: #222;
    border-radius: 12px;
    border: 2px solid #444;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mockup-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0533, #0d1b3a);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.mockup-play-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    border: 1px solid rgba(124, 58, 237, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--white);
}

.mockup-tablet {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 120px;
    height: 85px;
    background: #222;
    border-radius: 8px;
    border: 2px solid #444;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mockup-tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d2818, #1a3a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

/* ===== LIMITED OFFER ===== */
.limited-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(124, 58, 237, 0.05), transparent, rgba(212, 175, 55, 0.05), transparent);
    animation: rotateBg 20s linear infinite;
}

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

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

.offer-badge-wrapper {
    margin-bottom: 20px;
}

.offer-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--red), #dc2626);
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-badge.pulse {
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
}

.offer-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

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

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    background: var(--dark-3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    min-width: 80px;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-top: -20px;
}

.offer-spots {
    max-width: 500px;
    margin: 0 auto 32px;
}

.spots-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-3);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.spots-filled {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--red));
    border-radius: 10px;
    transition: width 1s ease;
}

.spots-text {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.spots-remaining {
    color: var(--red);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

/* Popular card */
.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-ribbon {
    position: absolute;
    top: 16px;
    right: -35px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 3;
}

/* VIP card */
.pricing-card.vip {
    border-color: var(--gold-dark);
}

.pricing-card.vip:hover {
    box-shadow: var(--shadow-gold);
}

.vip-ribbon {
    position: absolute;
    top: 16px;
    right: -35px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 3;
}

.pricing-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.08), transparent);
}

.pricing-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-card.vip .pricing-badge {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.pricing-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.pricing-card.vip .pricing-icon {
    color: var(--gold);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-top: 8px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.vip .price-amount {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 24px;
}

.pricing-bonus {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 8px;
}

.pricing-screens {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-screens i {
    color: var(--primary-light);
}

.pricing-card.vip .pricing-screens i {
    color: var(--gold);
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included i {
    color: var(--green);
    font-size: 0.85rem;
}

.pricing-features li.not-included {
    color: var(--gray-500);
}

.pricing-features li.not-included i {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.pricing-features li.highlight {
    font-weight: 600;
    color: var(--gold-light);
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-pricing:hover {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-popular {
    background: var(--gradient-1);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-popular:hover {
    background: var(--whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.btn-vip {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-vip:hover {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.pricing-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-guarantee i {
    color: var(--green);
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.payment-methods p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 2rem;
    color: var(--gray-400);
}

.payment-icons i {
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--white);
    transform: scale(1.15);
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--dark-2);
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 1.2rem;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    background: linear-gradient(145deg, var(--dark-3), var(--dark-4));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 30px;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.review-location {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.review-location i {
    margin-right: 4px;
}

.review-badge {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--green);
    margin-top: 2px;
}

.review-badge i {
    margin-right: 3px;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.review-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: var(--dark-3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.review-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--dark);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gray-500);
}

.steps-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--dark-2);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--gray-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05));
    position: relative;
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--gray-400);
}

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

.final-cta-trust i {
    color: var(--green);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-bottom: 16px;
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.footer-whatsapp i {
    font-size: 1.8rem;
    color: var(--whatsapp);
}

.footer-whatsapp strong {
    display: block;
    font-size: 0.85rem;
    color: var(--whatsapp);
}

.footer-whatsapp span {
    font-size: 0.9rem;
    color: var(--gray-300);
}

.footer-email {
    font-size: 0.9rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-email i {
    color: var(--primary-light);
}

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-keywords span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    color: var(--gray-500);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
}

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

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-3);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-content p i {
    font-size: 1.2rem;
    color: var(--gold);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .devices-content {
        grid-template-columns: 1fr;
    }

    .devices-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        min-width: calc(50% - 12px);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-content {
        font-size: 0.8rem;
        text-align: center;
    }

    .top-bar-btn {
        display: none;
    }

    .header:not(.scrolled) {
        top: 44px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .trust-items {
        flex-direction: column;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .content-categories {
        grid-template-columns: 1fr;
    }

    .device-list {
        grid-template-columns: 1fr;
    }

    .mockup-tv {
        width: 280px;
    }

    .mockup-screen {
        height: 160px;
    }

    .countdown-number {
        font-size: 1.8rem;
        padding: 6px 14px;
        min-width: 60px;
    }

    .offer-countdown {
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-width: calc(100% - 0px);
    }

    .final-cta-trust {
        flex-direction: column;
        gap: 12px;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .step-arrow {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .whatsapp-pulse {
        width: 52px;
        height: 52px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .pricing-card {
        margin: 0;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-aos-delay="500"] { transition-delay: 0.5s; }

/* ===== SELECTION ===== */
::selection {
    background: rgba(124, 58, 237, 0.3);
    color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--dark-4);
    border-radius: 10px;
}

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