/**
 * Sandlynk Premium Homepage
 * Design moderno, tecnológico e profissional
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    --primary-300: #a5b4fc;
    --primary-400: #818cf8;
    --primary-500: #6366f1;
    --primary-600: #4f46e5;
    --primary-700: #4338ca;
    --primary-800: #3730a3;
    --primary-900: #312e81;
    
    --accent-400: #a78bfa;
    --accent-500: #8b5cf6;
    --accent-600: #7c3aed;
    
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    
    --dark-900: #0f0f23;
    --dark-800: #13132b;
    --dark-700: #1a1a3e;
    --dark-600: #252550;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   GLOBAL RESET FOR HOMEPAGE
   ========================================== */
.homepage-premium {
    background: var(--dark-900);
    color: white;
    overflow-x: hidden;
}

.homepage-premium * {
    box-sizing: border-box;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-animated::before {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 250%;
    height: 250%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    animation: rotateGradient 30s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 24s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 23s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 25s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(0);
    }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ==========================================
   PREMIUM HEADER
   ========================================== */
.header-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header-premium.scrolled {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.header-premium .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-premium img {
    height: 40px;
    width: auto;
}

.logo-premium span {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links-premium {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links-premium a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-links-premium a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-glass {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-glow {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-glow::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: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    color: white;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.mobile-menu-content .btn-glass,
.mobile-menu-content .btn-glow {
    text-align: center;
    margin-top: 8px;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: block;
        pointer-events: none;
    }
    
    .mobile-menu.active {
        pointer-events: all;
    }
    
    .nav-actions-premium .btn-glass,
    .nav-actions-premium .btn-glow {
        display: none;
    }
}

/* ==========================================
   HERO SECTION PREMIUM
   ========================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-premium {
    position: relative;
}

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 14px;
    color: var(--primary-300);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge-premium svg {
    width: 16px;
    height: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title-premium {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-title-premium .gradient-text {
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--cyan-400) 50%, var(--accent-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-actions-premium {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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: 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats-premium {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat-premium {
    position: relative;
}

.stat-premium::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-premium:last-child::after {
    display: none;
}

.stat-value-premium {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-premium {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual-premium {
    position: relative;
    animation: fadeInRight 1s ease 0.4s backwards;
}

.upload-card-3d {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.upload-card-3d:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.upload-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls span:nth-child(1) { background: #ff5f57; }
.window-controls span:nth-child(2) { background: #febc2e; }
.window-controls span:nth-child(3) { background: #28c840; }

.upload-card-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.upload-zone-premium {
    border: 2px dashed rgba(99, 102, 241, 0.4);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(99, 102, 241, 0.05);
}

.upload-zone-premium:hover {
    border-color: var(--primary-400);
    background: rgba(99, 102, 241, 0.1);
}

.upload-zone-premium svg {
    width: 56px;
    height: 56px;
    color: var(--primary-400);
    margin-bottom: 20px;
}

.upload-zone-premium h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: white;
}

.upload-zone-premium p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.floating-badge-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.floating-badge-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.floating-badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge-text strong {
    font-size: 14px;
    color: #0f172a;
}

.floating-badge-text span {
    font-size: 12px;
    color: #64748b;
}

.floating-badge-1 {
    top: 20%;
    left: -60px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 30%;
    right: -40px;
    animation-delay: 1s;
}

.floating-badge-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Glow Lines Effect */
.glow-line {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
    opacity: 0.5;
    animation: glow-move 8s linear infinite;
}

@keyframes glow-move {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

.glow-line-1 { top: 20%; animation-delay: 0s; }
.glow-line-2 { top: 40%; animation-delay: 2s; }
.glow-line-3 { top: 60%; animation-delay: 4s; }

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orb-float 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-500);
    top: 10%;
    left: 10%;
}

.gradient-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-500);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.gradient-orb-3 {
    width: 350px;
    height: 350px;
    background: var(--cyan-500);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Text Shimmer Effect */
.shimmer-text {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.1) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ==========================================
   GUEST UPLOAD STYLES
   ========================================== */
.homepage-premium .guest-upload-zone {
    cursor: pointer;
}

.homepage-premium .guest-upload-zone.dragover {
    border-color: var(--primary-400);
    background: rgba(99, 102, 241, 0.15);
}

.homepage-premium .guest-file-preview {
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.homepage-premium .guest-files-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.homepage-premium .guest-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.homepage-premium .guest-file-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-400);
}

.homepage-premium .guest-files-summary {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.homepage-premium .guest-upload-progress {
    padding: 20px;
}

.homepage-premium .progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.homepage-premium .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.homepage-premium .progress-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.homepage-premium .guest-upload-success {
    padding: 24px;
    text-align: center;
}

.homepage-premium .guest-upload-success .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.4),
        0 0 60px rgba(16, 185, 129, 0.2);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.4), 0 0 60px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.6), 0 0 80px rgba(16, 185, 129, 0.3); }
}

.homepage-premium .guest-upload-success .success-icon svg,
.homepage-premium .guest-upload-success .success-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

/* Success Title - Destacado */
.homepage-premium .guest-upload-success .success-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
    animation: successGlow 2s ease-in-out infinite;
}

@keyframes successGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.homepage-premium .guest-upload-success p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 16px !important;
}

.homepage-premium .upload-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    margin-top: 20px;
}

.homepage-premium .upload-link span {
    flex: 1;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 14px;
    color: var(--primary-300);
}

/* Botão Enviar Outro Arquivo - Premium */
.homepage-premium .btn-new-upload {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
    padding: 14px 28px !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 14px !important;
    color: white !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.homepage-premium .btn-new-upload::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.homepage-premium .btn-new-upload:hover::before {
    left: 100%;
}

.homepage-premium .btn-new-upload:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25) !important;
}

.homepage-premium .btn-new-upload i,
.homepage-premium .btn-new-upload svg {
    width: 20px !important;
    height: 20px !important;
    color: var(--primary-400) !important;
}

/* Guest Modal - Premium Override */
.homepage-premium .guest-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(15, 15, 35, 0.6) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    padding: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.homepage-premium .guest-modal-overlay.active {
    display: flex !important;
}

.homepage-premium .guest-modal {
    position: relative !important;
    background: linear-gradient(165deg, rgba(30, 30, 60, 0.95) 0%, rgba(15, 15, 35, 0.98) 100%) !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 28px !important;
    width: 100% !important;
    max-width: 520px !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: none !important;
}

.homepage-premium .guest-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-500), var(--accent-500), transparent);
    opacity: 0.8;
}

.homepage-premium .guest-modal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.homepage-premium .guest-modal-header {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 28px 32px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 1 !important;
    background: transparent !important;
}

.homepage-premium .guest-modal-header h3 {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
}

.homepage-premium .guest-modal-header h3 svg {
    width: 28px !important;
    height: 28px !important;
    color: var(--primary-400) !important;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5)) !important;
}

.homepage-premium .guest-modal-close {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease !important;
}

.homepage-premium .guest-modal-close:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: rgba(239, 68, 68, 0.3) !important;
    color: #ef4444 !important;
    transform: rotate(90deg) !important;
}

.homepage-premium .guest-modal-close svg {
    width: 20px !important;
    height: 20px !important;
    color: inherit !important;
}

.homepage-premium .guest-modal-body {
    position: relative !important;
    padding: 32px !important;
    z-index: 1 !important;
    background: transparent !important;
    overflow: hidden !important;
}

/* Guest File Info Container */
.homepage-premium .guest-file-info {
    display: block !important;
    margin-bottom: 28px !important;
    padding: 0 !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    overflow: hidden !important;
}

/* Single File Display */
.homepage-premium .modal-file-single {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px !important;
}

.homepage-premium .modal-file-single .file-icon {
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(99, 102, 241, 0.15) !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
}

.homepage-premium .modal-file-single .file-icon i,
.homepage-premium .modal-file-single .file-icon svg {
    width: 26px !important;
    height: 26px !important;
    color: var(--primary-400) !important;
}

.homepage-premium .modal-file-single .file-details {
    flex: 1 !important;
    min-width: 0 !important;
}

.homepage-premium .modal-file-single .file-name {
    display: block !important;
    font-weight: 600 !important;
    color: white !important;
    font-size: 15px !important;
    margin-bottom: 4px !important;
    word-break: break-all !important;
}

.homepage-premium .modal-file-single .file-size {
    display: block !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Multiple Files Display */
.homepage-premium .modal-files-multiple {
    display: block !important;
    background: transparent !important;
}

.homepage-premium .modal-files-multiple .files-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    background: rgba(99, 102, 241, 0.12) !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.15) !important;
}

.homepage-premium .modal-files-multiple .files-header i,
.homepage-premium .modal-files-multiple .files-header svg {
    width: 20px !important;
    height: 20px !important;
    color: var(--primary-400) !important;
}

.homepage-premium .modal-files-multiple .files-header span {
    font-weight: 600 !important;
    color: white !important;
    font-size: 14px !important;
}

.homepage-premium .modal-files-multiple .files-header .total-size {
    margin-left: auto !important;
    font-weight: 500 !important;
    color: var(--primary-300) !important;
    font-size: 13px !important;
}

.homepage-premium .modal-files-multiple .files-list {
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
}

.homepage-premium .modal-files-multiple .file-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: background 0.2s ease !important;
    background: transparent !important;
}

.homepage-premium .modal-files-multiple .file-row:last-child {
    border-bottom: none !important;
}

.homepage-premium .modal-files-multiple .file-row:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.homepage-premium .modal-files-multiple .file-row i,
.homepage-premium .modal-files-multiple .file-row svg {
    width: 16px !important;
    height: 16px !important;
    color: var(--primary-400) !important;
    flex-shrink: 0 !important;
}

.homepage-premium .modal-files-multiple .file-row .name {
    flex: 1 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.homepage-premium .modal-files-multiple .file-row .size {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    flex-shrink: 0 !important;
}

/* Custom scrollbar for files list */
.homepage-premium .modal-files-multiple .files-list::-webkit-scrollbar {
    width: 6px !important;
}

.homepage-premium .modal-files-multiple .files-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 3px !important;
}

.homepage-premium .modal-files-multiple .files-list::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.4) !important;
    border-radius: 3px !important;
}

.homepage-premium .modal-files-multiple .files-list::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.6) !important;
}

.homepage-premium .guest-modal-body .form-group {
    margin-bottom: 24px !important;
}

.homepage-premium .guest-modal-body .form-group label,
.homepage-premium .guest-modal-body label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 12px !important;
}

.homepage-premium .guest-modal-body .form-group label svg,
.homepage-premium .guest-modal-body label svg {
    width: 18px !important;
    height: 18px !important;
    color: var(--primary-400) !important;
}

.homepage-premium .guest-modal-body .form-group label .required,
.homepage-premium .guest-modal-body label .required {
    color: #f472b6 !important;
    font-weight: 400 !important;
}

.homepage-premium .guest-modal-body .form-group input,
.homepage-premium .guest-modal-body input[type="email"],
.homepage-premium .guest-modal-body input[type="text"] {
    width: 100% !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    color: white !important;
    font-size: 15px !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
}

.homepage-premium .guest-modal-body .form-group input:focus,
.homepage-premium .guest-modal-body input[type="email"]:focus,
.homepage-premium .guest-modal-body input[type="text"]:focus {
    outline: none !important;
    border-color: var(--primary-500) !important;
    background: rgba(99, 102, 241, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15) !important;
}

.homepage-premium .guest-modal-body .form-group input::placeholder,
.homepage-premium .guest-modal-body input::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.homepage-premium .guest-modal-body .form-group small,
.homepage-premium .guest-modal-body small {
    display: block !important;
    margin-top: 10px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.homepage-premium .guest-modal-body .guest-info-box,
.homepage-premium .guest-info-box {
    display: flex !important;
    gap: 14px !important;
    padding: 18px 20px !important;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%) !important;
    border: 1px solid rgba(34, 211, 238, 0.2) !important;
    border-radius: 14px !important;
    margin-bottom: 28px !important;
    position: relative !important;
    overflow: hidden !important;
}

.homepage-premium .guest-modal-body .guest-info-box::before,
.homepage-premium .guest-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--cyan-400), var(--primary-400));
}

.homepage-premium .guest-modal-body .guest-info-box svg,
.homepage-premium .guest-info-box svg {
    width: 22px !important;
    height: 22px !important;
    color: var(--cyan-400) !important;
    flex-shrink: 0 !important;
    margin-top: 1px !important;
}

.homepage-premium .guest-modal-body .guest-info-box p,
.homepage-premium .guest-info-box p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.homepage-premium .guest-modal-body .guest-info-box p strong,
.homepage-premium .guest-info-box p strong {
    color: var(--cyan-400) !important;
    font-weight: 600 !important;
}

.homepage-premium .guest-modal-actions {
    display: flex !important;
    gap: 14px !important;
    justify-content: flex-end !important;
}

.homepage-premium .guest-modal-actions .btn {
    padding: 14px 28px !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    border: none !important;
}

.homepage-premium .guest-modal-actions .btn-ghost {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.homepage-premium .guest-modal-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.homepage-premium .guest-modal-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%) !important;
    color: white !important;
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.homepage-premium .guest-modal-actions .btn-primary::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: 0.5s;
}

.homepage-premium .guest-modal-actions .btn-primary:hover::before {
    left: 100%;
}

.homepage-premium .guest-modal-actions .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 
        0 8px 30px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.homepage-premium .guest-modal-actions .btn-primary svg {
    width: 20px !important;
    height: 20px !important;
}

/* ==========================================
   USER MENU PREMIUM
   ========================================== */
.user-menu-premium {
    position: relative;
}

.user-menu-btn-premium {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.user-menu-btn-premium:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar-premium {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.user-name-premium {
    font-size: 14px;
    font-weight: 500;
}

.user-menu-btn-premium svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.user-dropdown-premium {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, var(--dark-700), var(--dark-800));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 220px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-dropdown-premium.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-item-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dropdown-item-premium svg {
    width: 18px;
    height: 18px;
}

.dropdown-item-premium.text-danger {
    color: #ef4444;
}

.dropdown-item-premium.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

.dropdown-divider-premium {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.mobile-user-info-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.mobile-user-info-premium .user-avatar-premium {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.mobile-user-info-premium .user-name-premium {
    display: block;
    font-weight: 600;
}

.mobile-user-info-premium .user-plan-premium {
    display: block;
    font-size: 12px;
    color: var(--primary-400);
    text-transform: uppercase;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   TRUSTED BY SECTION
   ========================================== */
.trusted-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.trusted-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0.5;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   FEATURES SECTION PREMIUM
   ========================================== */
.features-premium {
    padding: 140px 0;
    position: relative;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-title-premium {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card-premium {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-premium:hover::before {
    opacity: 1;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.feature-icon-premium {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.feature-icon-premium svg {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-card-premium h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.feature-card-premium p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ==========================================
   HOW IT WORKS PREMIUM
   ========================================== */
.how-it-works-premium {
    padding: 140px 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    position: relative;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.steps-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.steps-premium::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--cyan-500));
    z-index: 0;
}

.step-premium {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-number-premium {
    width: 100px;
    height: 100px;
    background: var(--dark-800);
    border: 3px solid var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.step-number-premium span {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--accent-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.step-premium p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ==========================================
   PRICING PREMIUM
   ========================================== */
.pricing-premium {
    padding: 140px 0;
    position: relative;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   SECURITY SECTION
   ========================================== */
.security-section {
    padding: 140px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.security-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

.security-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.security-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.security-feature p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.security-visual {
    position: relative;
}

.security-shield {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-ring 3s ease-in-out infinite;
}

.security-shield::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
}

.security-shield::after {
    content: '';
    position: absolute;
    inset: 50px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
}

.security-shield svg {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    color: white;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ==========================================
   FAQ PREMIUM
   ========================================== */
.faq-premium {
    padding: 140px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-grid-premium {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question-premium {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question-premium svg {
    width: 20px;
    height: 20px;
    color: var(--primary-400);
    transition: transform 0.3s ease;
}

.faq-item-premium.active .faq-question-premium svg {
    transform: rotate(180deg);
}

.faq-answer-premium {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium.active .faq-answer-premium {
    padding: 0 28px 24px;
    max-height: 300px;
}

.faq-answer-premium p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ==========================================
   CTA PREMIUM
   ========================================== */
.cta-premium {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-600) 100%);
    opacity: 0.15;
    border-radius: 48px;
    margin: 0 40px;
}

.cta-premium h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-premium p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* ==========================================
   FOOTER PREMIUM
   ========================================== */
.footer-premium {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid-premium {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-premium p {
    color: rgba(255, 255, 255, 0.5);
    margin: 20px 0;
    max-width: 300px;
    line-height: 1.7;
}

.footer-social-premium {
    display: flex;
    gap: 12px;
}

.footer-social-premium a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social-premium a:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}

.footer-links-premium h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links-premium ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-premium li {
    margin-bottom: 14px;
}

.footer-links-premium a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links-premium a:hover {
    color: var(--primary-400);
}

.footer-bottom-premium {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ==========================================
   PLAN CARDS PREMIUM STYLING
   ========================================== */
.pricing-premium .plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-premium .plan-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-premium .plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-premium .plan-card:hover::before {
    opacity: 1;
}

.pricing-premium .plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.pricing-premium .plan-card.popular {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.02);
}

.pricing-premium .plan-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-premium .popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    color: white;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
}

.pricing-premium .plan-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-premium .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.pricing-premium .plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-premium .price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-premium .price-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-premium .price-decimal {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-premium .price-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-premium .plan-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.pricing-premium .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-premium .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.pricing-premium .plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-premium .plan-action .btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-premium .plan-action .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-premium .plan-action .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-premium .plan-action .btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.pricing-premium .plan-action .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.pricing-premium .plan-action .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Enterprise Card */
.pricing-premium .enterprise-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    margin-top: 32px;
}

.pricing-premium .enterprise-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pricing-premium .enterprise-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.pricing-premium .enterprise-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.pricing-premium .enterprise-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.pricing-premium .enterprise-info p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
}

.pricing-premium .enterprise-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-premium .enterprise-card .btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-premium .enterprise-card .btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content-premium {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-subtitle-premium {
        margin: 0 auto 40px;
    }
    
    .hero-actions-premium {
        justify-content: center;
    }
    
    .hero-stats-premium {
        justify-content: center;
    }
    
    .hero-visual-premium {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-badge-1,
    .floating-badge-2,
    .floating-badge-3 {
        display: none;
    }
    
    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-premium .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-premium .enterprise-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .pricing-premium .enterprise-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-premium .nav {
        padding: 0 20px;
    }
    
    .nav-links-premium {
        display: none;
    }
    
    .hero-premium {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title-premium {
        font-size: 2.5rem;
    }
    
    .hero-actions-premium {
        flex-direction: column;
    }
    
    .hero-stats-premium {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .stat-premium::after {
        display: none;
    }
    
    .features-container,
    .how-it-works-container,
    .pricing-container,
    .security-container,
    .faq-container,
    .cta-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .section-title-premium {
        font-size: 2rem;
    }
    
    .features-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .steps-premium {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-premium::before {
        display: none;
    }
    
    .step-premium {
        max-width: 100%;
    }
    
    .footer-grid-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-premium h2 {
        font-size: 2rem;
    }
    
    .pricing-premium .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-premium .plan-card.popular {
        transform: none;
    }
    
    .pricing-premium .plan-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .pricing-premium .enterprise-card {
        padding: 24px;
    }
    
    .pricing-premium .enterprise-info p {
        max-width: 100%;
    }
}
