/* ========== 8KIPTV.IO - ULTIMATE PREMIUM STYLESHEET ==========
   Theme: 8K IPTV Premium
   Author: 8KIPTV Team
   Version: 2.0
   Description: Complete, optimized, production-ready CSS with advanced animations
*/

/* ========== ROOT VARIABLES - EXPANDED MULTI-COLOR PALETTE ========== */
:root {
    /* Primary Deep Blues */
    --primary-dark: #0A1929;
    --primary-deep: #0B1A33;
    --primary-navy: #132F4C;
    --primary-rich: #1A2F4F;
    
    /* Vibrant Accents - Multi-color Spectrum */
    --accent-teal: #00C9B7;
    --accent-teal-dark: #00A89A;
    --accent-teal-light: #6FE6DA;
    --accent-gold: #FFB347;
    --accent-gold-dark: #F59E2E;
    --accent-gold-light: #FFD700;
    --accent-purple: #9D4EDD;
    --accent-purple-dark: #7B2CBF;
    --accent-purple-light: #C77DFF;
    --accent-pink: #FF6B9D;
    --accent-pink-dark: #E64980;
    --accent-coral: #FF8A5C;
    --accent-coral-dark: #E66A3D;
    --accent-blue: #4D9FFF;
    --accent-blue-dark: #1A75FF;
    --accent-cyan: #0FC2C0;
    --accent-green: #7CCF7C;
    
    /* Secondary Palette */
    --red-deep: #9B1D1D;
    --red-bright: #E31B23;
    --red-soft: #F9E6E6;
    --cream: #FDFAF7;
    
    /* Gradients - Multi-color Combinations */
    --gradient-1: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    --gradient-2: linear-gradient(135deg, #FFB347, #FF6B9D, #9D4EDD);
    --gradient-3: linear-gradient(135deg, #4D9FFF, #00C9B7, #7CCF7C);
    --gradient-4: linear-gradient(135deg, #9D4EDD, #FF6B9D, #FFB347);
    --gradient-5: linear-gradient(135deg, #FF8A5C, #FFB347, #FFD700);
    --gradient-6: linear-gradient(135deg, #0FC2C0, #4D9FFF, #9D4EDD);
    --gradient-7: linear-gradient(135deg, #FF6B9D, #FF8A5C, #FFB347);
    --gradient-8: linear-gradient(135deg, #7CCF7C, #0FC2C0, #00C9B7);
    --gradient-cta: linear-gradient(135deg, #FF6B9D, #FF8A5C, #FFB347);
    --gradient-special: linear-gradient(135deg, #00C9B7, #4D9FFF, #9D4EDD, #FF6B9D);
    
    /* Animated Gradients */
    --gradient-shift: linear-gradient(125deg, #00C9B7, #FF6B9D, #FFB347, #4D9FFF, #9D4EDD);
    
    /* Background Gradients */
    --bg-gradient-dark: linear-gradient(145deg, #0A1929, #132F4C, #1A2F4F);
    --bg-gradient-light: linear-gradient(145deg, #F8FAFC, #FFFFFF, #F1F5F9);
    --bg-gradient-mesh: radial-gradient(circle at 30% 30%, rgba(0,201,183,0.1), transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(255,107,157,0.1), transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(157,78,221,0.1), transparent 50%);
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-300: #94A3B8;
    --gray-400: #64748B;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1E293B;
    --gray-800: #0F172A;
    --gray-900: #020617;
    --charcoal: #1A1A1A;
    
    /* Semantic */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-blur: blur(10px);
    --glass-blur-heavy: blur(20px);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', var(--font-primary);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.2);
    --shadow-teal: 0 10px 30px rgba(0, 201, 183, 0.25);
    --shadow-gold: 0 10px 30px rgba(255, 179, 71, 0.25);
    --shadow-purple: 0 10px 30px rgba(157, 78, 221, 0.25);
    --shadow-pink: 0 10px 30px rgba(255, 107, 157, 0.25);
    --shadow-multi: 0 20px 40px rgba(0, 201, 183, 0.15), 0 20px 40px rgba(255, 107, 157, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Animations */
    --float-duration: 6s;
    --pulse-duration: 2s;
    --spin-duration: 20s;
    
    /* Z-index layers */
    --z-negative: -1;
    --z-elevate: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-drawer: 200;
    --z-modal: 300;
    --z-popover: 400;
    --z-toast: 500;
    --z-tooltip: 600;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-mesh);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--primary-deep);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: var(--z-elevate);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

.gradient-text-2 { background: var(--gradient-2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-3 { background: var(--gradient-3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-4 { background: var(--gradient-4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-5 { background: var(--gradient-5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.accent-teal { color: var(--accent-teal); }
.accent-gold { color: var(--accent-gold); }
.accent-purple { color: var(--accent-purple); }
.accent-pink { color: var(--accent-pink); }

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}

/* ========== ANIMATIONS ========== */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 201, 183, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 157, 0.5); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slide-in-left {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scale-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========== ANIMATED BACKGROUNDS ========== */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-shift);
    opacity: 0.1;
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.mesh-gradient {
    position: relative;
    background: linear-gradient(125deg, var(--primary-deep), var(--primary-navy));
}

.mesh-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 201, 183, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, rgba(157, 78, 221, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(255, 179, 71, 0.15) 0%, transparent 35%);
    z-index: 0;
    pointer-events: none;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-teal);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(100px) rotate(360deg); opacity: 0; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--gradient-1);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    box-shadow: var(--shadow-md);
}

.section-tag i {
    margin-right: 5px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: var(--radius-full);
    animation: width-pulse 3s ease infinite;
}

@keyframes width-pulse {
    0%, 100% { width: 80px; opacity: 1; }
    50% { width: 120px; opacity: 0.8; }
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-teal);
    border-right-color: var(--accent-purple);
    border-bottom-color: var(--accent-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-deep);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    z-index: 1001;
    transition: top 0.3s;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* ========== HEADER & NAVIGATION ========== */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-sticky);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-deep);
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease infinite;
}

.logo .accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    font-size: 0.75rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 2px 6px;
    border-radius: var(--radius-full);
    margin-left: 5px;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-teal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.action-icon {
    color: var(--gray-600);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.action-icon:hover {
    color: var(--accent-teal);
    transform: translateY(-2px) scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-deep);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover span {
    background: var(--accent-teal);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: var(--z-drawer);
    padding: var(--space-xl);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-bounce);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.mobile-logo .accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
    font-size: 2rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: transform var(--transition-fast);
    line-height: 1;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    color: var(--accent-teal);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-xs) 0;
    transition: all var(--transition-fast);
}

.mobile-nav-links a i {
    width: 24px;
    color: var(--accent-teal);
    transition: transform var(--transition-fast);
}

.mobile-nav-links a:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}

.mobile-nav-links a:hover i {
    transform: scale(1.1);
}

.mobile-nav-links a.active {
    color: var(--accent-teal);
    font-weight: 600;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.mobile-nav-contact a i {
    width: 20px;
    color: var(--accent-teal);
}

.mobile-nav-contact a:hover {
    color: var(--accent-teal);
}

.mobile-nav-social {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.mobile-nav-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    transition: all var(--transition-bounce);
}

.mobile-nav-social a:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-sm) 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: var(--z-dropdown);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-mobile-cta .container {
    display: flex;
    gap: var(--space-sm);
}

.sticky-mobile-cta .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    font-size: 1.125rem;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(5px) scale(1.1);
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-multi);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    position: relative;
}

.btn-outline:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-deep);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ============================================
   PREMIUM HERO SECTION - NO BOXES
   SMARTER8K.APP - FULLY RESPONSIVE
   NO BOXES ON DESKTOP OR MOBILE
   ============================================ */

/* Hero Main Container */
.hero {
    position: relative;
    background: linear-gradient(145deg, #0A1128 0%, #07102E 40%, #0A0F1F 100%);
    color: #FFFFFF;
    padding: 100px 0 140px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ========== ANIMATED GLOW ORBS ========== */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.glow-orb-1 {
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
    animation: floatOrb1 12s ease-in-out infinite;
}

.glow-orb-2 {
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(184, 76, 255, 0.3) 0%, transparent 70%);
    animation: floatOrb2 10s ease-in-out infinite;
}

.glow-orb-3 {
    top: 40%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    animation: floatOrb3 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(5%, 5%) scale(1.1); opacity: 0.7; }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-5%, -5%) scale(1.15); opacity: 0.7; }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(3%, -3%) scale(1.05); opacity: 0.5; }
}

/* ========== FLOATING PARTICLES ========== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 229, 255, 0.5) 1px, transparent 1px),
        radial-gradient(1.5px 1.5px at 60% 70%, rgba(184, 76, 255, 0.4) 1px, transparent 1px),
        radial-gradient(1px 1px at 85% 40%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(20px); }
}

/* ========== FLOATING ICONS ========== */
.floating-icon {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    font-size: 1.5rem;
    opacity: 0.12;
    color: #FFFFFF;
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 2rem; }
.icon-2 { top: 25%; right: 8%; animation-delay: 1s; font-size: 1.8rem; }
.icon-3 { bottom: 20%; left: 10%; animation-delay: 2s; font-size: 2.2rem; }
.icon-4 { top: 60%; right: 15%; animation-delay: 1.5s; font-size: 1.6rem; }
.icon-5 { bottom: 35%; right: 20%; animation-delay: 2.5s; font-size: 1.9rem; }
.icon-6 { top: 40%; left: 15%; animation-delay: 3s; font-size: 1.7rem; }
.icon-7 { bottom: 50%; left: 20%; animation-delay: 0.5s; font-size: 2rem; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.18; }
}

/* Container */
.hero .container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== PREMIUM BADGES - NO BOXES ========== */
.hero-badge-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge {
    background: transparent;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge:hover {
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.hero-badge i:first-child {
    font-size: 0.8rem;
}

.hero-badge:first-child i:first-child { color: #FFD700; }
.hero-badge:nth-child(2) i:first-child { color: #FFB347; }
.hero-badge:nth-child(3) i:first-child { color: #00E5FF; }

.verified-icon {
    color: #10B981;
    font-size: 0.7rem;
}

.rating-stars {
    display: inline-flex;
    gap: 2px;
    margin-left: 6px;
}

.rating-stars i {
    font-size: 0.65rem;
    color: #FFD700;
}

.live-badge {
    background: #EF4444;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 0.55rem;
    font-weight: 700;
    margin-left: 6px;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.trending-badge {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(184, 76, 255, 0.2));
}

/* ========== TITLE SECTION ========== */
.hero-title-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-2 {
    background: linear-gradient(135deg, #FFD700, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.decoration-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00E5FF, transparent);
}

.title-decoration i {
    color: #00E5FF;
    font-size: 1rem;
    animation: pulse 2s ease infinite;
}

/* ========== SUBTITLE ========== */
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle i {
    color: #00E5FF;
    margin-right: 8px;
}

.hero-subtitle strong {
    color: #00E5FF;
    font-weight: 600;
}

.guarantee-badge {
    display: inline-block;
    background: transparent;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-left: 8px;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.guarantee-badge i {
    margin-right: 4px;
    color: #10B981;
}

/* ========== PREMIUM STATS - NO BOXES EVER ========== */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.stat-icon i {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-plus {
    font-size: 1.2rem;
    color: #00E5FF;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.stat-trend {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-trend i {
    font-size: 0.65rem;
}

.stat-trend i.fa-arrow-up { color: #10B981; }
.stat-trend i.fa-plus-circle { color: #00E5FF; }
.stat-trend i.fa-star { color: #FFD700; }

/* ========== CTA BUTTONS ========== */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    color: #0A1128;
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
}

.btn-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
}

.btn-arrow {
    transition: transform 0.2s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.btn-outline-light:hover {
    border-color: #00E5FF;
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease infinite;
    margin-left: 4px;
}

/* ========== TRUST BADGE ROW - NO BOXES ========== */
.trust-badge-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    font-size: 0.85rem;
}

.trust-item i.fa-shield-alt { color: #10B981; }
.trust-item i.fa-bolt { color: #FFD700; }
.trust-item i.fa-headset { color: #00E5FF; }
.trust-item i.fa-lock { color: #B84CFF; }
.trust-item i.fa-sync-alt { color: #FF6B9D; }
.trust-item i.fa-tachometer-alt { color: #FFB347; }
.trust-item i.fa-shield-virus { color: #00E5FF; }
.trust-item i.fa-trophy { color: #FFD700; }

/* ========== CONTACT BAR - NO BOXES ========== */
.hero-contact {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

.contact-icon {
    width: 24px;
    text-align: center;
}

.contact-group a, .contact-group span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.contact-group a:hover {
    color: #00E5FF;
}

.status-badge {
    font-size: 0.65rem;
    color: #10B981;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.status-badge i {
    font-size: 0.45rem;
}

/* ========== CUSTOMER COUNTER ========== */
.customer-counter {
    text-align: center;
    margin-bottom: 24px;
}

.counter-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.counter-icon {
    width: 30px;
    height: 30px;
    background: transparent !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #00E5FF;
}

.counter-count {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: 8px;
}

.customer-counter p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.customer-counter p i {
    color: #FF6B9D;
    margin-right: 4px;
}

.customer-counter p strong {
    color: #00E5FF;
}

/* ========== FOOTER TRUST ========== */
.hero-footer-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-methods i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.payment-methods i:hover {
    color: #00E5FF;
}

.more-payments {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.ssl-badge i {
    color: #10B981;
}

/* ========== WAVE DIVIDER ========== */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== RESPONSIVE DESIGN - NO BOXES ON MOBILE ========== */
@media (max-width: 900px) {
    .hero-stats {
        gap: 28px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 120px;
        min-height: auto;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-icon {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 16px;
    }
    
    .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .trust-badge-row {
        gap: 16px;
    }
    
    .trust-item {
        font-size: 0.7rem;
    }
    
    .hero-contact {
        gap: 16px;
    }
    
    .contact-group a, .contact-group span {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .stat-trend {
        font-size: 0.55rem;
    }
    
    .stat-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 100px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-plus {
        font-size: 0.8rem;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .stat-trend {
        font-size: 0.5rem;
    }
    
    .hero-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
        gap: 4px;
    }
    
    .hero-badge i:first-child {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .trust-badge-row {
        gap: 10px;
    }
    
    .trust-item {
        font-size: 0.55rem;
        gap: 4px;
    }
    
    .trust-item i {
        font-size: 0.65rem;
    }
    
    .hero-contact {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-group {
        gap: 6px;
    }
    
    .contact-group a, .contact-group span {
        font-size: 0.7rem;
    }
    
    .title-decoration .decoration-line {
        width: 25px;
    }
    
    .counter-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .counter-count {
        font-size: 0.85rem;
    }
    
    .customer-counter p {
        font-size: 0.7rem;
    }
    
    .payment-methods {
        gap: 8px;
    }
    
    .payment-methods i {
        font-size: 1rem;
    }
    
    .ssl-badge {
        font-size: 0.6rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   TRUSTED BY SECTION - PREMIUM SAAS STYLE
   NO BOXES, CLEAN, MODERN, PROFESSIONAL
   ============================================ */

.trusted-by {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
    position: relative;
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.trusted-by .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TRUSTED HEADER ========== */
.trusted-header {
    text-align: center;
    margin-bottom: 48px;
}

.trusted-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.trusted-badge {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(184, 76, 255, 0.08));
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0A1128;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.trusted-badge i {
    color: #00E5FF;
    font-size: 0.85rem;
}

.trusted-by-text {
    font-size: 1.25rem;
    color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.heart-icon {
    display: inline-flex;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.heart-icon i {
    color: #FF6B9D;
    font-size: 1.3rem;
}

.counter-highlight {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
    font-weight: 800;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stars {
    display: inline-flex;
    gap: 5px;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.rating-score {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1E293B;
}

.rating-count {
    font-size: 0.85rem;
    color: #94A3B8;
}

/* ========== TRUSTED LOGOS - NO BOXES ========== */
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    padding: 20px 0;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.logo-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #B84CFF);
    transition: width 0.3s ease;
}

.logo-item:hover::after {
    width: 100%;
}

.logo-item:hover {
    transform: translateY(-2px);
}

.logo-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(184, 76, 255, 0.08));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-icon-wrapper {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    transform: scale(1.05);
}

.logo-icon-wrapper i {
    font-size: 1.3rem;
    color: #00E5FF;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-icon-wrapper i {
    color: #FFFFFF;
}

.logo-info {
    text-align: left;
}

.logo-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
}

.logo-subtext {
    display: block;
    font-size: 0.7rem;
    color: #94A3B8;
}

/* ========== TRUSTED COMPANIES BAR ========== */
.trusted-companies {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid #E2E8F0;
}

.companies-label {
    font-size: 0.8rem;
    color: #94A3B8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.companies-logos {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;
}

.company i {
    font-size: 0.9rem;
    color: #00E5FF;
    opacity: 0.6;
}

.company:hover {
    color: #00E5FF;
}

.company:hover i {
    opacity: 1;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
    .trusted-logos {
        gap: 24px;
    }
    
    .logo-item {
        flex: 0 0 calc(25% - 24px);
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .trusted-by {
        padding: 48px 0;
    }
    
    .trusted-header {
        margin-bottom: 36px;
    }
    
    .trusted-by-text {
        font-size: 1rem;
    }
    
    .counter-highlight {
        font-size: 1.1rem;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .logo-item {
        flex: 0 0 calc(33.33% - 20px);
        min-width: 120px;
    }
    
    .logo-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .logo-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    .logo-subtext {
        font-size: 0.65rem;
    }
    
    .trusted-companies {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .companies-logos {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 550px) {
    .trusted-logos {
        gap: 16px;
    }
    
    .logo-item {
        flex: 0 0 calc(50% - 16px);
        min-width: auto;
    }
    
    .logo-info {
        text-align: left;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 6px;
    }
    
    .trusted-badge {
        font-size: 0.7rem;
        padding: 4px 14px;
    }
    
    .companies-logos {
        gap: 16px;
    }
    
    .company {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .logo-item {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .logo-info {
        text-align: center;
    }
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: slide-in-up 0.6s ease backwards;
}

.feature-card:nth-child(1) { border-top-color: var(--accent-teal); animation-delay: 0.1s; }
.feature-card:nth-child(2) { border-top-color: var(--accent-pink); animation-delay: 0.2s; }
.feature-card:nth-child(3) { border-top-color: var(--accent-purple); animation-delay: 0.3s; }
.feature-card:nth-child(4) { border-top-color: var(--accent-gold); animation-delay: 0.4s; }
.feature-card:nth-child(5) { border-top-color: var(--accent-blue); animation-delay: 0.5s; }
.feature-card:nth-child(6) { border-top-color: var(--accent-coral); animation-delay: 0.6s; }
.feature-card:nth-child(7) { border-top-color: var(--accent-green); animation-delay: 0.7s; }
.feature-card:nth-child(8) { border-top-color: var(--accent-cyan); animation-delay: 0.8s; }

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover::after {
    transform: translateX(100%);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 2.5rem;
    color: var(--white);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-deep);
}

.feature-card p {
    color: var(--gray-500);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-top: auto;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-xs);
    color: var(--gray-600);
}

.feature-list li i {
    color: var(--accent-teal);
    font-size: 1rem;
}

/* ========== CHANNEL PREVIEW ========== */
.channel-preview {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.channel-highlights {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.channel-highlights span {
    background: var(--gray-50);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-deep);
    transition: all var(--transition-fast);
    cursor: default;
}

.channel-highlights span:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-1);
    color: var(--white);
}

.channel-highlights span:hover i {
    color: var(--white);
}

.channel-highlights i {
    color: var(--accent-teal);
    transition: color var(--transition-fast);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    border: 1px solid var(--gray-100);
    animation: fade-in 0.6s ease backwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-teal);
}

.category-header {
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

.category-header i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
    animation: float 3s ease infinite;
}

.category-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex: 1;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.channel-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.category-channels {
    padding: var(--space-md);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
}

.category-channels li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all var(--transition-fast);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
}

.category-channels li:hover {
    background: var(--gray-50);
    transform: translateX(5px);
}

.category-channels li i {
    color: var(--accent-teal);
    font-size: 0.75rem;
}

.category-link {
    display: block;
    padding: var(--space-md);
    text-align: center;
    background: var(--gray-50);
    color: var(--accent-teal);
    font-weight: 600;
    transition: all var(--transition-fast);
    border-top: 1px solid var(--gray-100);
    text-decoration: none;
}

.category-link i {
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.category-link:hover {
    background: var(--gradient-1);
    color: var(--white);
}

.category-link:hover i {
    transform: translateX(8px);
}

.channel-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========== PRICING SECTION ========== */
.pricing {
    padding: var(--space-3xl) 0;
    background: linear-gradient(145deg, var(--off-white), var(--white));
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slide-in-up 0.6s ease backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient-1) border-box;
    box-shadow: var(--shadow-2xl);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.875rem;
    transform: rotate(45deg);
    box-shadow: var(--shadow-lg);
    animation: badge-shine 3s infinite;
    z-index: 10;
}

@keyframes badge-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 201, 183, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2.5rem;
    transition: all var(--transition-bounce);
}

.pricing-card:nth-child(1) .plan-icon { color: var(--accent-teal); }
.pricing-card:nth-child(2) .plan-icon { color: var(--accent-pink); }
.pricing-card:nth-child(3) .plan-icon { color: var(--accent-purple); }
.pricing-card:nth-child(4) .plan-icon { color: var(--accent-gold); }

.pricing-card:hover .plan-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--gradient-1);
    color: var(--white);
}

.price-box {
    text-align: center;
    margin: var(--space-md) 0 var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 2px dashed var(--gray-200);
}

.old-price {
    font-size: 1rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: var(--space-xs);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.savings-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: var(--space-xs);
    animation: pulse 2s infinite;
}

.pricing-features {
    list-style: none;
    margin: var(--space-lg) 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-600);
}

.pricing-features li i {
    color: var(--success);
    font-size: 1rem;
}

.pricing-footer {
    margin-top: auto;
}

/* ========== PRICING TOGGLE ========== */
.premium-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray-600);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.toggle-label.active {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    transition: 0.4s;
    border-radius: 40px;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    box-shadow: var(--shadow-lg);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 32px;
    width: 32px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

input:checked + .toggle-slider:before {
    transform: translateX(40px);
}

.toggle-badge {
    background: var(--accent-gold);
    color: var(--primary-deep);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

/* ========== PRICING GUARANTEE ========== */
.pricing-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.guarantee-item i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.guarantee-item p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ========== PAYMENT METHODS ========== */
.pricing-payment-methods {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-payment-methods p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    font-size: 2rem;
    color: var(--gray-400);
    flex-wrap: wrap;
}

.payment-icons i {
    transition: all var(--transition-fast);
}

.payment-icons i:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--accent-teal);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(145deg, var(--white), var(--off-white));
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    animation: slide-in-up 0.6s ease backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 8rem;
    font-family: serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    filter: drop-shadow(0 2px 4px rgba(255, 179, 71, 0.3));
    animation: star-twinkle 2s infinite;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.testimonial-text {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
}

.testimonial-card:hover .author-avatar {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--primary-deep);
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.verified-badge {
    margin-left: auto;
    color: var(--success);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.testimonials-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: var(--space-3xl) 0;
    background: linear-gradient(145deg, var(--off-white), var(--white));
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
    color: var(--primary-deep);
    border: none;
}

.faq-question:hover {
    background: linear-gradient(145deg, var(--white), var(--gray-50));
}

.faq-question i:first-child {
    font-size: 1.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-question span {
    flex: 1;
    text-align: left;
}

.faq-question .arrow i {
    transition: transform var(--transition-bounce);
    color: var(--accent-teal);
}

.faq-question[aria-expanded="true"] .arrow i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 var(--space-lg);
    background: var(--gray-50);
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer[aria-hidden="false"] {
    max-height: 300px;
    padding: var(--space-md) var(--space-lg);
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent-teal);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
}

/* ========== CTA BANNER ========== */
.prefooter-cta {
    padding: var(--space-2xl) 0;
    background: linear-gradient(145deg, var(--primary-deep), var(--primary-navy));
}

.cta-banner {
    background: var(--gradient-1);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="10" cy="10" r="2" fill="white"/><circle cx="90" cy="90" r="2" fill="white"/><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    background-size: 30px 30px;
    animation: float 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.cta-trust span i {
    color: var(--white);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Minimal CSS - No extra spacing */
.footer {
    background: #0A0F1F;
    color: #94A3B8;
    padding: 48px 0 24px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(0,229,255,0.1);
}
.footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}
.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-col h4 i {
    color: #00E5FF;
    margin-right: 6px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #00E5FF;
}
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo .accent {
    color: #00E5FF;
}
.footer-logo .logo-badge {
    font-size: 0.7rem;
    background: rgba(0,229,255,0.15);
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 4px;
}
.footer-about p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: 0.2s;
}
.social-icon:hover {
    background: #00E5FF;
    color: #0A0F1F;
}
.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-trust span {
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.03);
    padding: 4px 10px;
    border-radius: 20px;
}
.channel-count {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.08);
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 6px;
}
.badge-new {
    font-size: 0.55rem;
    background: #FF6B9D;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 6px;
}
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact ul li i {
    width: 22px;
    color: #00E5FF;
}
.footer-payment {
    margin-top: 20px;
}
.footer-payment h4 {
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.payment-icons i {
    font-size: 1.5rem;
    color: #94A3B8;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: #94A3B8;
    text-decoration: none;
}
.footer-links a:hover {
    color: #00E5FF;
}
.footer-seo {
    font-size: 0.65rem;
    color: #4A5568;
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    line-height: 1.4;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-tooltip);
    transition: all var(--transition-bounce);
    animation: whatsapp-pulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #128C7E, #25D366);
    animation: none;
    border-color: var(--white);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 80px;
    background: var(--gray-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-deep);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: var(--z-tooltip);
    transition: all var(--transition-bounce);
    opacity: 0;
    visibility: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient-1) border-box;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-2xl);
    color: var(--white);
    background: var(--gradient-1);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-about {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header-actions .action-icon {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .sticky-mobile-cta {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-about {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
    
    .stat-item {
        min-width: 100px;
        padding: var(--space-sm);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 80px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .back-to-top {
        bottom: 80px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-banner {
        padding: var(--space-xl);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .premium-toggle {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-badge-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-badge-row {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .channel-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .channel-highlights span {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-guarantee {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-icons {
        gap: var(--space-md);
        font-size: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .hero-particles,
    .whatsapp-float,
    .back-to-top,
    .sticky-mobile-cta,
    .mobile-nav,
    .mobile-menu-toggle,
    .footer-social,
    .hero-wave {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Enhanced Hero Text Styling */
.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-lg);
    max-width: 750px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 0 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle strong {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 201, 183, 0.3);
}

/* Desktop-specific adjustments */
@media (min-width: 769px) {
    .hero-subtitle {
        font-size: 1.45rem;
        line-height: 1.8;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }
}



/* FAQ Arrow Position Fix */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
    color: var(--primary-deep);
    border: none;
    position: relative;
}

.faq-question i:first-child {
    font-size: 1.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 30px;
    text-align: center;
}

.faq-question span {
    flex: 1;
    text-align: left;
    padding-right: 40px;
}

.faq-question .arrow {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.faq-question .arrow i {
    transition: transform var(--transition-bounce);
    color: var(--accent-teal);
    font-size: 1rem;
}

.faq-question[aria-expanded="true"] .arrow i {
    transform: rotate(180deg);
}

/* FAQ Toggle Fix - JavaScript fix below */

/* Mobile Menu Toggle (3 dots) Fix */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 35px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 4px;
    background: var(--primary-deep);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    display: block;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-teal);
}

.mobile-menu-toggle span:nth-child(2) {
    width: 80%;
    margin: 0 auto;
}

/* Make dots bigger on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        width: 40px;
        height: 32px;
    }
    
    .mobile-menu-toggle span {
        height: 5px;
    }
}

/* Mobile Navigation Active State */
.mobile-nav-links a.active {
    color: var(--accent-teal);
    font-weight: 700;
    position: relative;
    background: linear-gradient(90deg, rgba(0,201,183,0.1) 0%, transparent 100%);
    padding-left: var(--space-md);
    border-left: 4px solid var(--accent-teal);
}

.mobile-nav-links a.active i {
    color: var(--accent-teal);
    transform: scale(1.1);
}

.mobile-nav-links a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-1);
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
}

/* Horizontal Scroll Fix */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: var(--z-elevate);
    width: 100%;
    overflow-x: hidden;
}

/* Fix for any overflowing elements */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    fill: var(--white);
    display: block;
}

/* Ensure no element causes horizontal scroll */
* {
    max-width: 100%;
}

img, svg, iframe, video {
    max-width: 100%;
    height: auto;
}

/* Fix for grid gaps causing overflow */
.features-grid,
.pricing-grid,
.testimonials-grid,
.categories-grid,
.footer-grid,
.stats-grid {
    width: 100%;
    overflow: hidden;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-wave svg {
        height: 50px;
    }
}

/* Mobile Menu Toggle - FIXED */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 35px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 4px;
    background: var(--primary-deep);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    display: block;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-teal);
}

.mobile-menu-toggle span:nth-child(2) {
    width: 80%;
    margin: 0 auto;
}

/* Make sure it displays on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
}



/* ========== STATS COUNTER - COMPLETE FIX ========== */
.stats-counter {
    padding: var(--space-2xl) 0;
    background: var(--bg-gradient-dark);
    position: relative;
    overflow: hidden;
    color: var(--white);
    width: 100%;
    display: block;
    clear: both;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

.stat-counter-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-bounce);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-counter-item i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    display: inline-block;
}

.counter-number {
    font-size: 1.9rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: center;
    letter-spacing: -0.3px;
}

.counter-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: center;
}

/* Desktop fix - 1025px and above */
@media (min-width: 1025px) {
    .stats-grid {
        gap: 8px;
        max-width: 1100px;
        padding: 0 5px;
    }
    
    .stat-counter-item {
        padding: 12px 0;
        min-height: auto;
    }
    
    .stat-counter-item i {
        font-size: 1.7rem;
        margin-bottom: 3px;
    }
    
    .counter-number {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
        margin-bottom: 1px;
    }
    
    .counter-label {
        font-size: 0.65rem;
        letter-spacing: 0.2px;
    }
}

/* Large Desktop - 1280px and above */
@media (min-width: 1280px) {
    .stats-grid {
        gap: 12px;
        max-width: 1200px;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .counter-label {
        font-size: 0.7rem;
    }
}

/* Extra Large Desktop - 1440px and above */
@media (min-width: 1440px) {
    .stats-grid {
        gap: 15px;
        max-width: 1300px;
    }
    
    .stat-counter-item i {
        font-size: 1.9rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 700px;
    }
    
    .stat-counter-item {
        padding: 20px 0;
    }
    
    .counter-number {
        font-size: 2rem;
        white-space: normal;
    }
    
    .counter-label {
        font-size: 0.8rem;
        white-space: normal;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-counter-item {
        padding: 18px 0;
    }
    
    .counter-number {
        font-size: 2rem;
        white-space: normal;
    }
    
    .counter-label {
        font-size: 0.8rem;
        white-space: normal;
    }
}

/* ========== FULL WIDTH HERO SECTION - NO WHITE SPACE ========== */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    background: var(--bg-gradient-dark);
    color: var(--white);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Fix background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-gradient-mesh);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* Fix particles positioning */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Center all content */
.hero-badge-wrapper {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge-row {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-contact {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

/* Fix wave to full width */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    line-height: 0;
    z-index: 5;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    fill: var(--white);
    display: block;
}

/* Ensure container content is centered */
@media (min-width: 769px) {
    .hero .container {
        display: flex;
        justify-content: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ========== HIDE SCROLLBAR BUT KEEP SCROLLING FUNCTIONALITY ========== */
/* For Chrome, Safari, Edge, Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
    display: none;
}

/* For Firefox */
html {
    scrollbar-width: none;
}

/* For IE/Edge */
html {
    -ms-overflow-style: none;
}

/* Ensure scrolling still works */
html, body {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100%;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

/* Fix any inner scroll issues */
.container,
.hero,
section {
    overflow: visible;
}

/* Prevent any hidden overflow that might create internal scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ========== FIX STACKING CONTEXT - HERO SECTION BACKGROUND ISSUE ========== */
html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    background: transparent;
}

/* Fix hero section - don't let it cover content */
.hero {
    position: relative;
    background: var(--bg-gradient-dark);
    color: var(--white);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    z-index: 1;
}

/* Ensure all sections stack properly */
section {
    position: relative;
    z-index: 1;
    background: var(--white); /* Give sections their own background */
}

.stats-counter,
.channel-preview,
.pricing,
.testimonials,
.faq,
.prefooter-cta {
    position: relative;
    z-index: 2;
    background: var(--white); /* Override for dark sections */
}

.stats-counter {
    background: var(--bg-gradient-dark); /* Keep dark background */
}

.prefooter-cta {
    background: linear-gradient(145deg, var(--primary-deep), var(--primary-navy));
}

/* Fix floating buttons */
.whatsapp-float,
.back-to-top,
.sticky-mobile-cta {
    z-index: 999;
}

/* Ensure proper stacking */
.hero-particles,
.particles {
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Fix any background bleed */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-gradient-mesh);
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}


/* ========== MOBILE NAVIGATION - SMALLER & STYLED ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;  /* Reduced from 100% */
    max-width: 320px;  /* Smaller max-width */
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: var(--z-drawer);
    padding: 1.5rem 1.2rem;
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-bounce);
    overflow-y: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.mobile-logo .accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
    font-size: 1.8rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
}

.mobile-nav-close:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.7rem 0.8rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    border-radius: var(--radius-lg);
}

.mobile-nav-links a i {
    width: 22px;
    color: var(--accent-teal);
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.mobile-nav-links a:hover {
    color: var(--white);
    background: var(--gradient-1);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.mobile-nav-links a:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.mobile-nav-links a.active {
    color: var(--white);
    background: var(--gradient-1);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    padding-left: 1rem;
}

.mobile-nav-links a.active i {
    color: var(--white);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-actions .btn {
    padding: 0.7rem !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-lg);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-600);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    padding: 0.5rem 0.5rem;
    border-radius: var(--radius-md);
}

.mobile-nav-contact a i {
    width: 20px;
    color: var(--accent-teal);
    font-size: 1rem;
}

.mobile-nav-contact a:hover {
    color: var(--accent-teal);
    background: var(--gray-50);
    padding-left: 1rem;
}

.mobile-nav-social {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.mobile-nav-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    transition: all var(--transition-bounce);
    font-size: 1.1rem;
    text-decoration: none;
}

.mobile-nav-social a:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-md);
}

/* Mobile menu toggle button styling */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 36px;
    height: 36px;
    background: var(--gradient-1);
    border: none;
    cursor: pointer;
    padding: 8px 6px;
    justify-content: space-between;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    display: block;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Make sure it displays on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* ========== IMPROVED PARTICLE ANIMATION - FULL HERO COVERAGE ========== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple), var(--accent-pink));
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle 10s infinite ease-in-out;
    filter: blur(1px);
    box-shadow: 0 0 15px rgba(0, 201, 183, 0.5);
}

/* Larger particles for more visibility */
.particle-large {
    width: 12px;
    height: 12px;
    opacity: 0.3;
    animation-duration: 15s;
    filter: blur(2px);
}

/* Slower particles for depth effect */
.particle-slow {
    animation-duration: 20s;
    opacity: 0.2;
    width: 10px;
    height: 10px;
}

/* Faster particles for foreground effect */
.particle-fast {
    animation-duration: 8s;
    opacity: 0.5;
    width: 4px;
    height: 4px;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: translateY(50vh) translateX(50px) rotate(180deg);
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Ensure particles cover full hero on mobile */
@media (max-width: 768px) {
    .particles {
        height: 100%;
    }
    
    .particle {
        width: 4px;
        height: 4px;
    }
    
    .particle-large {
        width: 8px;
        height: 8px;
    }
}

/* Ensure hero section has proper height for particles */
.hero {
    position: relative;
    background: var(--bg-gradient-dark);
    color: var(--white);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    isolation: isolate; /* Creates new stacking context */
}


/* ========== MOBILE HERO SECTION - UPDATED ========== */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px 0;
        text-align: left;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0;
    }
    
    .hero .container {
        padding: 0 20px;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }
    
    /* Badges - horizontal scroll */
    .hero-badge-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .hero-badge-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .hero-badge {
        flex: 0 0 auto;
        padding: 6px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Main title */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: left;
        letter-spacing: -0.5px;
    }
    
    .hero-title .gradient-text {
        display: inline-block;
    }
    
    /* Subtitle */
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: left;
        color: rgba(255, 255, 255, 0.9);
        max-width: 100%;
        padding: 0;
        background: none;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-subtitle strong {
        -webkit-text-fill-color: var(--accent-teal);
        font-weight: 700;
    }
    
    /* Stats - 3x2 grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        padding: 10px 3px;
        border-radius: 14px;
        min-width: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 2px;
        background: linear-gradient(135deg, #00C9B7, #9D4EDD);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
        opacity: 0.9;
    }
    
    /* CTA Buttons - stacked */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        justify-content: center;
        border-radius: 40px;
    }
    
    .hero-cta .btn-primary {
        background: linear-gradient(135deg, #FF6B9D, #FFB347);
        border: none;
        box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
    }
    
    .hero-cta .btn-outline-light {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    /* Trust badges - IMPROVED & MINIMIZED SPACE */
    .trusted-by {
        padding: 15px 0 !important;
        margin: 0 !important;
    }
    
    .trusted-by-text {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
        text-align: center;
    }
    
    .trusted-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px !important;
        margin: 0 !important;
    }
    
    .logo-placeholder {
        padding: 4px 10px !important;
        font-size: 0.75rem !important;
        background: var(--gray-50);
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin: 0 !important;
    }
    
    .logo-placeholder i {
        font-size: 0.7rem !important;
    }
    
    /* Trust badge row - ADD BOXES */
    .trust-badge-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .trust-badge-row span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        padding: 8px 10px;
        border-radius: 30px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }
    
    .trust-badge-row span i {
        font-size: 0.8rem;
        color: var(--accent-gold);
    }
    
    /* Contact details - NO BOXES, like desktop */
    .hero-contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        background: transparent !important;
    }
    
    .hero-contact a,
    .hero-contact span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--white);
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        width: fit-content;
        opacity: 0.9;
    }
    
    .hero-contact a i,
    .hero-contact span i {
        width: 18px;
        color: var(--accent-teal);
        font-size: 0.9rem;
    }
    
    .hero-contact a:hover {
        color: var(--accent-teal);
        background: transparent !important;
        transform: translateX(5px);
    }
    
    /* Wave adjustment */
    .hero-wave {
        height: 30px;
    }
    
    .hero-wave svg {
        height: 30px;
    }
    
    /* Particle adjustments */
    .particles {
        opacity: 0.5;
        height: 100%;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .particle-large {
        width: 6px;
        height: 6px;
    }
}

/* Extra small devices (under 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 5px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .trusted-logos {
        gap: 5px !important;
    }
    
    .logo-placeholder {
        padding: 3px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .trust-badge-row {
        gap: 5px;
    }
    
    .trust-badge-row span {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
}

/* ========== MOBILE HERO SECTION - CENTERED ========== */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px 0;
        text-align: center; /* Changed from left to center */
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0;
    }
    
    .hero .container {
        padding: 0 20px;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto; /* Center the content */
        text-align: center; /* Center all text */
    }
    
    /* Badges - horizontal scroll with center alignment */
    .hero-badge-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start; /* Keep badges left-aligned for scrolling */
    }
    
    .hero-badge-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .hero-badge {
        flex: 0 0 auto;
        padding: 6px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Main title - centered */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center; /* Center the title */
        letter-spacing: -0.5px;
    }
    
    .hero-title .gradient-text {
        display: inline-block;
    }
    
    /* Subtitle - centered */
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: center; /* Center the subtitle */
        color: rgba(255, 255, 255, 0.9);
        max-width: 100%;
        padding: 0;
        background: none;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-subtitle strong {
        -webkit-text-fill-color: var(--accent-teal);
        font-weight: 700;
    }
    
    /* Stats - centered grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        padding: 10px 3px;
        border-radius: 14px;
        min-width: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 2px;
        background: linear-gradient(135deg, #00C9B7, #9D4EDD);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.3px;
        opacity: 0.9;
        text-align: center;
    }
    
    /* CTA Buttons - centered */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
        align-items: center; /* Center buttons */
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px; /* Limit button width for better appearance */
        padding: 12px 20px;
        font-size: 0.95rem;
        justify-content: center;
        border-radius: 40px;
        margin: 0 auto; /* Center buttons */
    }
    
    .hero-cta .btn-primary {
        background: linear-gradient(135deg, #FF6B9D, #FFB347);
        border: none;
        box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
    }
    
    .hero-cta .btn-outline-light {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    /* Trust badges - minimized space (centered) */
    .trusted-by {
        padding: 15px 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }
    
    .trusted-by-text {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    
    .trusted-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px !important;
        margin: 0 auto !important;
        text-align: center;
    }
    
    .logo-placeholder {
        padding: 4px 10px !important;
        font-size: 0.75rem !important;
        background: var(--gray-50);
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin: 0 !important;
    }
    
    .logo-placeholder i {
        font-size: 0.7rem !important;
    }
    
    /* Trust badge row - centered */
    .trust-badge-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .trust-badge-row span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        padding: 8px 10px;
        border-radius: 30px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
    }
    
    .trust-badge-row span i {
        font-size: 0.8rem;
        color: var(--accent-gold);
    }
    
    /* Contact details - centered */
    .hero-contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        background: transparent !important;
        align-items: center; /* Center contact items */
    }
    
    .hero-contact a,
    .hero-contact span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--white);
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        width: fit-content;
        opacity: 0.9;
        justify-content: center;
        text-align: center;
    }
    
    .hero-contact a i,
    .hero-contact span i {
        width: 18px;
        color: var(--accent-teal);
        font-size: 0.9rem;
    }
    
    .hero-contact a:hover {
        color: var(--accent-teal);
        background: transparent !important;
        transform: translateX(5px);
    }
    
    /* Wave adjustment */
    .hero-wave {
        height: 30px;
    }
    
    .hero-wave svg {
        height: 30px;
    }
    
    /* Particle adjustments */
    .particles {
        opacity: 0.5;
        height: 100%;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .particle-large {
        width: 6px;
        height: 6px;
    }
}

/* Extra small devices (under 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 5px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .trusted-logos {
        gap: 5px !important;
    }
    
    .logo-placeholder {
        padding: 3px 8px !important;
        font-size: 0.7rem !important;
    }
    
    .trust-badge-row {
        gap: 5px;
    }
    
    .trust-badge-row span {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
}

/* ========== MOBILE HERO SECTION - CENTERED ========== */
@media (max-width: 768px) {
    .hero {
        min-height: auto; /* Remove fixed min-height */
        padding: 80px 0 40px 0; /* Reduced padding */
        text-align: center;
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0;
    }
    
    .hero .container {
        padding: 0 20px;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Hide subscribe button in header */
    .header-actions .btn-primary.btn-sm {
        display: none !important;
    }
    
    /* Adjust header actions for mobile */
    .header-actions {
        gap: 5px;
    }
    
    /* Badges - horizontal scroll with center alignment */
    .hero-badge-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px; /* Reduced gap */
        margin-bottom: 15px; /* Reduced margin */
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }
    
    .hero-badge-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .hero-badge {
        flex: 0 0 auto;
        padding: 4px 12px; /* Reduced padding */
        font-size: 0.7rem; /* Smaller font */
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Main title - reduced size and margin */
    .hero-title {
        font-size: 1.8rem; /* Smaller */
        line-height: 1.2;
        margin-bottom: 10px; /* Reduced margin */
        text-align: center;
        letter-spacing: -0.5px;
    }
    
    .hero-title .gradient-text {
        display: inline-block;
    }
    
    /* Subtitle - reduced size and margin */
    .hero-subtitle {
        font-size: 0.9rem; /* Smaller */
        line-height: 1.4;
        margin-bottom: 15px; /* Reduced margin */
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
        max-width: 100%;
        padding: 0;
        background: none;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-subtitle strong {
        -webkit-text-fill-color: var(--accent-teal);
        font-weight: 700;
    }
    
    /* Stats - reduced size and gap */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px; /* Reduced gap */
        margin-bottom: 15px; /* Reduced margin */
        justify-content: center;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        padding: 8px 2px; /* Reduced padding */
        border-radius: 12px; /* Smaller radius */
        min-width: auto;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.1rem; /* Smaller */
        margin-bottom: 1px;
        background: linear-gradient(135deg, #00C9B7, #9D4EDD);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.55rem; /* Smaller */
        letter-spacing: 0.2px;
        opacity: 0.9;
        text-align: center;
    }
    
    /* CTA Buttons - smaller height */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 8px; /* Reduced gap */
        margin-bottom: 15px; /* Reduced margin */
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px; /* Smaller max-width */
        padding: 10px 16px; /* Reduced padding - smaller height */
        font-size: 0.9rem; /* Smaller font */
        justify-content: center;
        border-radius: 40px;
        margin: 0 auto;
    }
    
    .hero-cta .btn-primary {
        background: linear-gradient(135deg, #FF6B9D, #FFB347);
        border: none;
        box-shadow: 0 8px 15px rgba(255, 107, 157, 0.3); /* Smaller shadow */
    }
    
    .hero-cta .btn-outline-light {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    /* Trust badges - minimized space */
    .trusted-by {
        padding: 10px 0 !important; /* Reduced padding */
        margin: 0 !important;
        text-align: center !important;
    }
    
    .trusted-by-text {
        font-size: 0.8rem !important; /* Smaller */
        margin-bottom: 8px !important; /* Reduced margin */
        text-align: center !important;
    }
    
    .trusted-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px !important; /* Reduced gap */
        margin: 0 auto !important;
        text-align: center;
    }
    
    .logo-placeholder {
        padding: 3px 8px !important; /* Reduced padding */
        font-size: 0.7rem !important; /* Smaller */
        background: var(--gray-50);
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        margin: 0 !important;
    }
    
    .logo-placeholder i {
        font-size: 0.65rem !important; /* Smaller */
    }
    
    /* Trust badge row - smaller */
    .trust-badge-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px; /* Reduced gap */
        margin-bottom: 15px; /* Reduced margin */
        justify-content: center;
    }
    
    .trust-badge-row span {
        display: flex;
        align-items: center;
        gap: 4px; /* Reduced gap */
        font-size: 0.7rem; /* Smaller */
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(5px);
        padding: 6px 8px; /* Reduced padding */
        border-radius: 30px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
    }
    
    .trust-badge-row span i {
        font-size: 0.7rem; /* Smaller */
        color: var(--accent-gold);
    }
    
    /* Contact details - centered */
    .hero-contact {
        display: flex;
        flex-direction: column;
        gap: 6px; /* Reduced gap */
        margin-top: 10px; /* Reduced margin */
        background: transparent !important;
        align-items: center;
    }
    
    .hero-contact a,
    .hero-contact span {
        display: inline-flex;
        align-items: center;
        gap: 6px; /* Reduced gap */
        font-size: 0.75rem; /* Smaller */
        color: var(--white);
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        width: fit-content;
        opacity: 0.9;
        justify-content: center;
        text-align: center;
    }
    
    .hero-contact a i,
    .hero-contact span i {
        width: 16px; /* Smaller */
        color: var(--accent-teal);
        font-size: 0.8rem; /* Smaller */
    }
    
    .hero-contact a:hover {
        color: var(--accent-teal);
        background: transparent !important;
        transform: translateX(5px);
    }
    
    /* Wave adjustment */
    .hero-wave {
        height: 25px; /* Smaller */
    }
    
    .hero-wave svg {
        height: 25px;
    }
    
    /* Particle adjustments */
    .particles {
        opacity: 0.4;
        height: 100%;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
    
    .particle-large {
        width: 4px;
        height: 4px;
    }
}

/* Extra small devices (under 400px) */
@media (max-width: 400px) {
    .hero {
        padding: 70px 0 30px 0; /* Even smaller padding */
    }
    
    .hero-title {
        font-size: 1.6rem; /* Even smaller */
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .hero-stats {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .hero-cta {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .hero-cta .btn {
        max-width: 240px; /* Smaller */
        padding: 8px 14px; /* Even smaller */
        font-size: 0.8rem;
    }
    
    .trusted-logos {
        gap: 4px !important;
    }
    
    .logo-placeholder {
        padding: 2px 6px !important;
        font-size: 0.65rem !important;
    }
    
    .trust-badge-row {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .trust-badge-row span {
        padding: 5px 6px;
        font-size: 0.65rem;
        gap: 3px;
    }
    
    .trust-badge-row span i {
        font-size: 0.65rem;
    }
    
    .hero-contact {
        gap: 4px;
        margin-top: 8px;
    }
    
    .hero-contact a,
    .hero-contact span {
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .hero-contact a i,
    .hero-contact span i {
        width: 14px;
        font-size: 0.7rem;
    }
}
/* ========== WHY CHOOSE US SECTION - 3-3 DESKTOP, 1 COLUMN MOBILE ========== */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Section Header */
.why-choose-us .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.why-choose-us .section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    padding: 8px 24px;
    border-radius: 9999px;
    margin-bottom: 20px;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    box-shadow: 0 4px 12px rgba(0,201,183,0.2);
}

.why-choose-us .section-tag i {
    margin-right: 5px;
}

.why-choose-us .section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #0A1929;
}

.why-choose-us .section-title .gradient-text {
    background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    display: inline-block;
}

.why-choose-us .section-description {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== DESKTOP - 3-3 LAYOUT (3 columns) ========== */
@media (min-width: 1025px) {
    .why-choose-us .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important; /* 3 columns on desktop */
        gap: 30px;
        margin: 50px auto 0;
        max-width: 1200px;
        padding: 0 20px;
    }
}

/* ========== TABLET - 2 COLUMNS ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-choose-us .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns on tablet */
        gap: 25px;
        margin: 40px auto 0;
        max-width: 900px;
        padding: 0 20px;
    }
}

/* ========== MOBILE - 1 COLUMN (KEEP CURRENT) ========== */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-us .container {
        padding: 0 15px;
    }
    
    .why-choose-us .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .why-choose-us .section-tag {
        font-size: 0.8rem;
        padding: 6px 18px;
        margin-bottom: 15px;
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .why-choose-us .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Grid - 1 column on mobile */
    .why-choose-us .features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* 1 column on mobile */
        gap: 20px;
        margin-top: 30px;
        padding: 0 10px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Cards */
    .why-choose-us .feature-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border-top: 4px solid transparent;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    /* Card Border Colors - Keep for mobile */
    .why-choose-us .feature-card:nth-child(1) { border-top-color: #00C9B7; }
    .why-choose-us .feature-card:nth-child(2) { border-top-color: #FF6B9D; }
    .why-choose-us .feature-card:nth-child(3) { border-top-color: #9D4EDD; }
    .why-choose-us .feature-card:nth-child(4) { border-top-color: #FFB347; }
    .why-choose-us .feature-card:nth-child(5) { border-top-color: #4D9FFF; }
    .why-choose-us .feature-card:nth-child(6) { border-top-color: #7CCF7C; }
    
    .why-choose-us .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,201,183,0.15);
    }
    
    /* Icon Wrapper */
    .why-choose-us .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,201,183,0.2);
    }
    
    .why-choose-us .feature-card:hover .feature-icon-wrapper {
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 15px 30px rgba(0,201,183,0.3);
    }
    
    /* ===== MOBILE TEXT FIX - KEEP CURRENT ===== */
    .why-choose-us .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #0A1929;
        line-height: 1.3;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 5px;
    }
    
    .why-choose-us .feature-card p {
        color: #64748B;
        line-height: 1.5;
        font-size: 0.95rem;
        margin: 0;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }
}

/* ========== EXTRA SMALL DEVICES - KEEP CURRENT ========== */
@media (max-width: 480px) {
    .why-choose-us {
        padding: 40px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 1.8rem;
    }
    
    .why-choose-us .section-description {
        font-size: 0.95rem;
    }
    
    .why-choose-us .features-grid {
        gap: 15px;
        max-width: 100%;
    }
    
    .why-choose-us .feature-card {
        padding: 25px 15px;
    }
    
    .why-choose-us .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    
    .why-choose-us .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .why-choose-us .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 8px;
    }
}

/* ========== VERY SMALL DEVICES - KEEP CURRENT ========== */
@media (max-width: 360px) {
    .why-choose-us .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .why-choose-us .feature-card p {
        font-size: 0.85rem;
        padding: 0 5px;
    }
}

/* ========== DESKTOP CARD STYLING (3 columns) ========== */
@media (min-width: 1025px) {
    .why-choose-us .feature-card {
        background: #fff;
        border-radius: 20px;
        padding: 35px 25px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border-top: 4px solid transparent;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    /* Card Border Colors - Desktop */
    .why-choose-us .feature-card:nth-child(1) { border-top-color: #00C9B7; }
    .why-choose-us .feature-card:nth-child(2) { border-top-color: #FF6B9D; }
    .why-choose-us .feature-card:nth-child(3) { border-top-color: #9D4EDD; }
    .why-choose-us .feature-card:nth-child(4) { border-top-color: #FFB347; }
    .why-choose-us .feature-card:nth-child(5) { border-top-color: #4D9FFF; }
    .why-choose-us .feature-card:nth-child(6) { border-top-color: #7CCF7C; }
    
    .why-choose-us .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,201,183,0.15);
    }
    
    /* Icon Wrapper - Desktop */
    .why-choose-us .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.5rem;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,201,183,0.2);
    }
    
    .why-choose-us .feature-card:hover .feature-icon-wrapper {
        transform: rotate(10deg) scale(1.1);
        box-shadow: 0 15px 30px rgba(0,201,183,0.3);
    }
    
    /* Desktop Text */
    .why-choose-us .feature-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0A1929;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    .why-choose-us .feature-card p {
        color: #64748B;
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 15px;
    }
}

/* ========== TABLET CARD STYLING (2 columns) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-choose-us .feature-card {
        background: #fff;
        border-radius: 20px;
        padding: 30px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border-top: 4px solid transparent;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    /* Card Border Colors - Tablet */
    .why-choose-us .feature-card:nth-child(1) { border-top-color: #00C9B7; }
    .why-choose-us .feature-card:nth-child(2) { border-top-color: #FF6B9D; }
    .why-choose-us .feature-card:nth-child(3) { border-top-color: #9D4EDD; }
    .why-choose-us .feature-card:nth-child(4) { border-top-color: #FFB347; }
    .why-choose-us .feature-card:nth-child(5) { border-top-color: #4D9FFF; }
    .why-choose-us .feature-card:nth-child(6) { border-top-color: #7CCF7C; }
    
    .why-choose-us .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,201,183,0.15);
    }
    
    /* Icon Wrapper - Tablet */
    .why-choose-us .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 8px 16px rgba(0,201,183,0.2);
    }
    
    .why-choose-us .feature-card:hover .feature-icon-wrapper {
        transform: rotate(8deg) scale(1.05);
    }
    
    /* Tablet Text */
    .why-choose-us .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #0A1929;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 8px;
    }
    
    .why-choose-us .feature-card p {
        color: #64748B;
        line-height: 1.5;
        font-size: 0.9rem;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 12px;
    }
}

/* Universal text fix for all devices */
.why-choose-us .feature-card h3,
.why-choose-us .feature-card p {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.search-icon-nav {
            font-size: 1.1rem;
            padding: 0 10px;
            display: flex;
            align-items: center;
        }
        .search-icon-nav i {
            font-size: 1.2rem;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }
        .search-icon-nav:hover i {
            color: var(--primary-teal);
        }
        .nav-links a.search-icon-nav {
            margin: 0 5px;
        }

     /* Fix navigation alignment and spacing */
    .sticky-header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
      z-index: var(--z-sticky);
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 1.6rem;
      font-weight: 800;
      font-family: var(--font-heading);
      color: var(--primary-deep);
      transition: transform var(--transition-fast);
      flex-shrink: 0;
      white-space: nowrap;
    }

    .logo-icon {
      font-size: 1.8rem;
      animation: float 3s ease infinite;
    }

    .logo .accent {
      background: var(--gradient-1);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .logo-badge {
      font-size: 0.7rem;
      background: var(--gradient-1);
      color: var(--white);
      padding: 2px 6px;
      border-radius: var(--radius-full);
      margin-left: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin: 0 auto;
      flex-wrap: nowrap;
    }

    .nav-links a {
      font-weight: 500;
      color: var(--gray-600);
      position: relative;
      padding: 0.5rem 0;
      transition: color var(--transition-fast);
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .nav-links a i {
      font-size: 0.9rem;
      margin-right: 4px;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent-teal);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-1);
      transition: width var(--transition-normal);
      border-radius: var(--radius-full);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      flex-shrink: 0;
    }

    .action-icon {
      color: var(--gray-600);
      font-size: 1.2rem;
      transition: all var(--transition-fast);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--gray-50);
    }

    .action-icon:hover {
      color: var(--accent-teal);
      transform: translateY(-2px) scale(1.05);
      background: var(--gray-100);
    }

    .btn-sm {
      padding: 0.5rem 1.2rem;
      font-size: 0.85rem;
      white-space: nowrap;
    }

    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      width: 32px;
      height: 28px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      justify-content: space-between;
      flex-shrink: 0;
    }

    .mobile-menu-toggle span {
      width: 100%;
      height: 3px;
      background: var(--primary-deep);
      border-radius: var(--radius-full);
      transition: all var(--transition-fast);
      display: block;
    }

    .mobile-menu-toggle:hover span {
      background: var(--accent-teal);
    }

    /* Desktop specific adjustments */
    @media (min-width: 1200px) {
      .nav-links {
        gap: 1.5rem;
      }
      .nav-links a {
        font-size: 1rem;
      }
    }

    @media (min-width: 1400px) {
      .nav-links {
        gap: 1.8rem;
      }
    }

    /* Tablet and below */
    @media (max-width: 1024px) {
      .nav-links {
        gap: 0.8rem;
      }
      .nav-links a {
        font-size: 0.85rem;
      }
      .btn-sm {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .header-actions .action-icon {
        display: none;
      }
      .mobile-menu-toggle {
        display: flex;
      }
      .logo {
        font-size: 1.4rem;
      }
      .logo-icon {
        font-size: 1.5rem;
      }
      .logo-badge {
        font-size: 0.6rem;
      }
      .btn-sm {
        display: inline-flex;
      }
    }
     /* ========== HERO SECTION CENTERING FIX ========== */
  .hero {
    position: relative;
    background: var(--bg-gradient-dark);
    color: var(--white);
    padding: var(--space-3xl) 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Center hero badges */
  .hero-badge-wrapper {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* Center hero title */
  .hero-title {
    text-align: center;
    width: 100%;
  }

  /* Center hero subtitle */
  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center hero stats */
  .hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* Center hero CTA buttons */
  .hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* Center trust badge row */
  .trust-badge-row {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* Center hero contact */
  .hero-contact {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* Ensure all text elements are centered */
  .hero-content h1,
  .hero-content p,
  .hero-content .hero-title,
  .hero-content .hero-subtitle {
    text-align: center;
  }

  /* Individual stat items centered */
  .stat-item {
    text-align: center;
  }

  /* Ensure buttons are centered */
  .hero-cta .btn {
    margin: 0;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .hero {
      min-height: auto;
      padding: 80px 0 40px;
    }
    
    .hero-stats {
      gap: 8px;
    }
    
    .hero-cta .btn {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
    }
    
    .trust-badge-row {
      gap: 6px;
    }
    
    .hero-contact {
      gap: 8px;
    }
  }
  /* Additional footer styles for enhanced look */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--white);
    text-decoration: none;
}
.social-icon:hover {
    background: var(--gradient-1);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 201, 183, 0.3);
}
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col h4 i {
    color: var(--accent-teal);
    font-size: 1rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 0.3s ease;
}
.footer-col:hover h4::after {
    width: 70px;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul li a {
    color: var(--gray-400);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    text-decoration: none;
}
.footer-col ul li a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}
.footer-col ul li a:hover {
    color: var(--accent-teal);
    transform: translateX(6px);
}
.footer-col ul li a:hover i {
    transform: translateX(4px);
}
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}
.footer-contact ul li i {
    width: 24px;
    color: var(--accent-teal);
    font-size: 1rem;
}
.footer-contact ul li a {
    color: var(--gray-400);
    text-decoration: none;
}
.footer-contact ul li a:hover {
    color: var(--accent-teal);
}
.footer-payment {
    margin-top: 1rem;
}
.footer-payment .payment-icons {
    display: flex;
    gap: 0.8rem;
    font-size: 1.4rem;
    flex-wrap: wrap;
}
.footer-payment .payment-icons i {
    transition: all 0.3s ease;
    cursor: default;
    color: var(--gray-500);
}
.footer-payment .payment-icons i:hover {
    transform: translateY(-3px);
    color: var(--accent-teal);
}
.footer-trust {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.footer-trust span {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
}
.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-500);
    transition: color 0.2s ease;
    font-size: 0.85rem;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--accent-teal);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.8rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}
.copyright p {
    color: var(--gray-500);
    font-size: 0.85rem;
}
.footer-seo p {
    color: var(--gray-600);
    font-size: 0.7rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.8rem;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col h4 {
        justify-content: center;
    }
    .footer-col ul li a {
        justify-content: center;
    }
    .footer-contact ul li {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-trust {
        justify-content: center;
    }
    .footer-payment .payment-icons {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-seo p {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .footer-links {
        gap: 0.8rem;
        justify-content: center;
    }
}

/* Enhanced Stats Counter Styles */
.stats-counter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0,201,183,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,107,157,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-counter-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-counter-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0,201,183,0.2), rgba(157,78,221,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-counter-item:hover .stat-icon-wrapper {
    background: var(--gradient-1);
    transform: scale(1.05);
}

.stat-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

.stat-trend i {
    font-size: 0.65rem;
    color: var(--accent-teal);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-counter {
        padding: 2.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-counter-item {
        padding: 1.2rem 0.5rem;
    }
    
    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon-wrapper i {
        font-size: 1.4rem;
    }
    
    .counter-number {
        font-size: 1.6rem;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .stat-trend {
        font-size: 0.6rem;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .stat-counter-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 1rem 1.2rem;
    }
    
    .stat-icon-wrapper {
        width: 45px;
        height: 45px;
        margin: 0;
    }
    
    .stat-content {
        flex: 1;
        margin-left: 1rem;
    }
    
    .counter-number {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .counter-label {
        font-size: 0.7rem;
        text-align: left;
    }
    
    .stat-trend {
        margin-top: 0;
        font-size: 0.55rem;
    }
}
/* Enhanced Channel Categories Styles */
.footer-col ul li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-400);
    text-decoration: none;
    position: relative;
}

.footer-col ul li a i:first-child {
    width: 24px;
    font-size: 1rem;
    color: var(--accent-teal);
    transition: transform 0.2s ease;
}

.footer-col ul li a span:first-of-type {
    flex: 1;
    font-weight: 500;
}

.channel-count {
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-weight: 600;
    color: var(--gray-400);
    transition: all 0.2s ease;
}

.channel-count.premium {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: white;
}

.badge-new {
    font-size: 0.6rem;
    padding: 2px 8px;
    background: linear-gradient(135deg, #FF6B9D, #FFB347);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channel-arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.footer-col ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    color: var(--accent-teal);
}

.footer-col ul li a:hover i:first-child {
    transform: scale(1.1);
    color: var(--accent-teal);
}

.footer-col ul li a:hover .channel-count {
    background: rgba(0, 201, 183, 0.2);
    color: var(--accent-teal);
}

.footer-col ul li a:hover .channel-arrow {
    opacity: 1;
    transform: translateX(0);
}

.footer-col ul li.highlight a {
    background: linear-gradient(135deg, rgba(0,201,183,0.1), rgba(157,78,221,0.1));
    border-left: 3px solid var(--accent-teal);
}

.footer-col ul li.highlight a:hover {
    background: linear-gradient(135deg, rgba(0,201,183,0.2), rgba(157,78,221,0.2));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-col ul li a {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .channel-count,
    .badge-new,
    .channel-arrow {
        display: none;
    }
    
    .footer-col ul li a i:first-child {
        width: auto;
    }
}

@media (max-width: 480px) {
    .footer-col ul li a {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
}
/* Feature Card with Device Icons - Complete CSS */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 201, 183, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-teal);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 201, 183, 0.15), rgba(157, 78, 221, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    background: var(--gradient-1);
}

.feature-card:hover .feature-icon-wrapper::after {
    opacity: 1;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--white);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-deep);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Device Icons Styles */
.device-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.device-badge {
    width: 40px;
    height: 40px;
    background: var(--gray-50);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-500);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: default;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.device-badge::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--gray-900);
    color: var(--white);
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 10;
    font-weight: 500;
}

.device-badge::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border-width: 4px;
    border-style: solid;
    border-color: var(--gray-900) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.device-badge:hover {
    transform: translateY(-5px);
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.device-badge:hover::before,
.device-badge:hover::after {
    opacity: 1;
    visibility: visible;
}

.device-badge:hover::before {
    transform: translateX(-50%) translateY(-12px);
}

/* Individual device badge colors on hover */
.device-badge:hover .fa-amazon {
    color: var(--white);
}

.device-badge:hover .fa-android {
    color: var(--white);
}

.device-badge:hover .fa-apple {
    color: var(--white);
}

.device-badge:hover .fa-tv {
    color: var(--white);
}

.device-badge:hover .fa-windows {
    color: var(--white);
}

.device-badge:hover .fa-box {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon-wrapper i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .device-icons {
        gap: 8px;
    }
    
    .device-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .device-badge::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .device-icons {
        gap: 6px;
    }
    
    .device-badge {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}
/* Enhanced Plan Features Styling */
.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 0.25rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    width: 20px;
    font-size: 0.9rem;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.plan-features li strong {
    font-weight: 600;
    color: var(--primary-deep);
    min-width: 110px;
}

.plan-features li .feature-detail {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-left: auto;
    text-align: right;
}

/* Hover effect */
.plan-features li:hover {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

.plan-features li:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plan-features li {
        flex-wrap: wrap;
        gap: 6px;
        padding: 0.5rem 0;
    }
    
    .plan-features li strong {
        min-width: auto;
        flex: 1;
    }
    
    .plan-features li .feature-detail {
        margin-left: 0;
        width: 100%;
        text-align: left;
        padding-left: 30px;
        font-size: 0.75rem;
    }
    
    .plan-features li i {
        width: 18px;
        font-size: 0.85rem;
    }
}
/* Reseller Plans Section Styling */
.reseller-pricing {
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--off-white), var(--white));
    position: relative;
}

.reseller-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.reseller-plan-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

.reseller-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-teal);
}

.reseller-plan-card.popular {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--accent-teal), var(--accent-purple)) border-box;
    transform: scale(1.02);
}

.reseller-plan-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.plan-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.plan-icon {
    margin-bottom: 0.5rem;
}

.plan-icon i {
    font-size: 2rem;
    color: var(--accent-teal);
}

.user-count {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.credits-box {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.credits-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-500);
    display: block;
}

.credits-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price {
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.price-period {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.plan-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.plan-features li i {
    width: 18px;
    font-size: 0.8rem;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.plan-features li strong {
    font-weight: 600;
    min-width: 100px;
}

.feature-detail {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-left: auto;
}

.device-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.device-icons i {
    font-size: 1rem;
    color: var(--gray-400);
    transition: all 0.2s ease;
}

.device-icons i:hover {
    color: var(--accent-teal);
    transform: scale(1.1);
}

.plan-footer {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .reseller-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .reseller-plan-card.popular {
        transform: scale(1);
    }
    
    .reseller-plan-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 640px) {
    .reseller-plans-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 1rem auto;
    }
    
    .plan-features li .feature-detail {
        display: none;
    }
    
    .plan-price .price {
        font-size: 1.8rem;
    }
}
/* Features Included Section - Enhanced Styles */
.features-included {
    padding: 80px 0;
    background: var(--off-white);
    position: relative;
}

.features-included .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card.included-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(0, 201, 183, 0.1);
    box-shadow: var(--shadow-sm);
}

.feature-card.included-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-teal);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 201, 183, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card.included-card:hover .feature-icon-wrapper {
    background: var(--gradient-1);
    transform: scale(1.05);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.feature-card.included-card:hover .feature-icon-wrapper i {
    color: white;
}

.feature-card.included-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-deep);
}

.feature-card.included-card p {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
}

.device-icons-mini {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.device-icons-mini i {
    font-size: 1.2rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.device-icons-mini i:hover {
    color: var(--accent-teal);
    transform: translateY(-2px);
}

.feature-trust-badge {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--accent-teal);
}

@media (max-width: 768px) {
    .features-included {
        padding: 60px 0;
    }
    
    .feature-card.included-card {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.6rem;
    }
    
    .feature-card.included-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-trust-badge {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

/* Subscription Plans - Subtle Separator Space Between Plans */
.subscription-plans .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    .subscription-plans .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .subscription-plans .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.subscription-plans .pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.subscription-plans .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-teal);
}

.subscription-plans .pricing-card.popular {
    transform: scale(1.02);
    z-index: 3;
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient-1) border-box;
    box-shadow: var(--shadow-2xl);
}

.subscription-plans .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.subscription-plans .pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.subscription-plans .plan-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,201,183,0.1), rgba(157,78,221,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--accent-teal);
}

.subscription-plans .pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.subscription-plans .price-box {
    margin: 0.5rem 0;
}

.subscription-plans .old-price {
    font-size: 1rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.subscription-plans .price {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subscription-plans .period {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.subscription-plans .savings-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.subscription-plans .price-per-month {
    font-size: 0.8rem;
    color: var(--accent-teal);
    margin-top: 0.5rem;
    font-weight: 600;
    background: rgba(0, 201, 183, 0.1);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.subscription-plans .pricing-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    flex-grow: 1;
}

.subscription-plans .pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.subscription-plans .pricing-features li i {
    color: var(--accent-teal);
    font-size: 1rem;
    min-width: 20px;
}

.subscription-plans .device-icons {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.subscription-plans .device-icons i {
    font-size: 1rem;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.subscription-plans .device-icons i:hover {
    color: var(--accent-teal);
    transform: scale(1.1);
}

.subscription-plans .pricing-footer {
    margin-top: 1rem;
}

.subscription-plans .pricing-footer .btn-block {
    width: 100%;
    text-align: center;
}

.feature-trust-badge {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.trust-item i {
    color: var(--accent-teal);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .feature-trust-badge {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .subscription-plans .pricing-card {
        padding: 1.5rem;
    }
    
    .subscription-plans .price {
        font-size: 1.8rem;
    }
    
    .subscription-plans .pricing-features li {
        font-size: 0.85rem;
    }
}
/* ========== STICKY HEADER & DESKTOP NAVIGATION - ENHANCED ALIGNMENT ========== */

.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-sticky);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-deep);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
  animation: float 3s ease infinite;
}

.logo .accent {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  font-size: 0.7rem;
  background: var(--gradient-1);
  color: var(--white);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

/* Desktop Navigation - Proper Alignment */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a i {
  font-size: 0.9rem;
  margin-right: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-teal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.action-icon {
  color: var(--gray-600);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-50);
  text-decoration: none;
}

.action-icon:hover {
  color: var(--accent-teal);
  transform: translateY(-2px) scale(1.05);
  background: var(--gray-100);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  justify-content: space-between;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--primary-deep);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-menu-toggle:hover span {
  background: var(--accent-teal);
}

/* Desktop Responsive Adjustments */
@media (min-width: 1200px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 1rem;
  }
}

@media (min-width: 1400px) {
  .nav-links {
    gap: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 0.8rem;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* Mobile View - Hide Desktop Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .header-actions .action-icon {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
  }
  
  .logo-badge {
    font-size: 0.6rem;
  }
  
  .btn-sm {
    display: inline-flex;
  }
}

/* Float Animation for Logo */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Flashy animated text without box */
.limited-time-text {
    text-align: center;
    font-weight: 800;
    font-size: 2rem;              /* default desktop size */
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(270deg, #ff416c, #ff4b2b, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 2s infinite linear, textPulse 1.5s infinite;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;           /* keep everything in one line */
}

/* Gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Text pulse animation */
@keyframes textPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.limited-time-text i {
    font-size: 2rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .limited-time-text {
        font-size: 1.2rem;       /* smaller text for mobile */
        gap: 6px;                /* reduce icon-text spacing */
    }
    .limited-time-text i {
        font-size: 1.4rem;       /* smaller icon on mobile */
    }
}

/* ============================================
   NEWSLETTER SECTION - SMARTER8K.APP
   ============================================ */

.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A1128 0%, #0F1A3A 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background effect */
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.newsletter .container {
  position: relative;
  z-index: 2;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.newsletter-content h2 .gradient-text {
  background: linear-gradient(135deg, #00E5FF, #B84CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.newsletter-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #00E5FF;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

.newsletter-form .btn-primary {
  background: linear-gradient(135deg, #00E5FF, #B84CFF);
  color: #0A1128;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

/* Newsletter Note */
.newsletter-note {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.newsletter-note i {
  margin-right: 4px;
}

/* Success/Error Messages */
.newsletter-message {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
}

.newsletter-message.success {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.newsletter-message.error {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Loading state */
.newsletter-form.loading button {
  opacity: 0.7;
  cursor: not-allowed;
}

.newsletter-form.loading button i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .newsletter {
    padding: 60px 0;
  }
  
  .newsletter-content h2 {
    font-size: 1.8rem;
  }
  
  .newsletter-content p {
    font-size: 0.9rem;
    padding: 0 16px;
  }
  
  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .newsletter-form input {
    width: 100%;
    text-align: center;
  }
  
  .newsletter-form .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .newsletter {
    padding: 50px 0;
  }
  
  .newsletter-content h2 {
    font-size: 1.5rem;
  }
  
  .newsletter-content p {
    font-size: 0.85rem;
  }
}

/* ============================================
   TRUSTED BY SECTION - RESELLER PAGE
   SMARTER8K.APP - PREMIUM, NO BOXES
   ============================================ */

.trusted-by {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
    overflow: hidden;
}

/* Animated Background Particles */
.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(184, 76, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trusted-by .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TRUSTED HEADER ========== */
.trusted-header {
    text-align: center;
    margin-bottom: 48px;
}

.trusted-badge-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.25);
    transition: all 0.3s ease;
}

.trusted-badge:hover {
    border-color: #00E5FF;
    transform: translateY(-2px);
}

.trusted-badge i {
    font-size: 0.8rem;
    color: #00E5FF;
}

.trusted-by-text {
    font-size: 1.2rem;
    color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.heart-icon {
    display: inline-flex;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.heart-icon i {
    color: #FF6B9D;
    font-size: 1.2rem;
}

.counter-highlight {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 1.3rem;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stars {
    display: inline-flex;
    gap: 5px;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.rating-score {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1E293B;
}

.rating-count {
    font-size: 0.85rem;
    color: #94A3B8;
}

/* ========== TRUSTED LOGOS - NO BOXES ========== */
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.logo-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #B84CFF);
    transition: width 0.3s ease;
}

.logo-item:hover::after {
    width: 100%;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.logo-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(184, 76, 255, 0.08));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-icon-wrapper {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    transform: scale(1.05);
}

.logo-icon-wrapper i {
    font-size: 1.4rem;
    color: #00E5FF;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-icon-wrapper i {
    color: #FFFFFF;
}

.logo-info {
    text-align: left;
}

.logo-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.3;
}

.logo-subtext {
    display: block;
    font-size: 0.7rem;
    color: #94A3B8;
}

/* ========== RESELLER STATS HIGHLIGHT ========== */
.reseller-stats-highlight {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.stat-highlight-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-highlight-item:hover {
    transform: translateY(-3px);
}

.stat-highlight-item i {
    font-size: 2rem;
    color: #00E5FF;
    margin-bottom: 12px;
    display: block;
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-highlight-item .stat-label {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
}

/* ========== TRUSTED COMPANIES BAR ========== */
.trusted-companies {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 16px;
}

.companies-label {
    font-size: 0.75rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.companies-logos {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.company i {
    font-size: 0.9rem;
    color: #00E5FF;
    opacity: 0.6;
}

.company:hover {
    color: #00E5FF;
}

.company:hover i {
    opacity: 1;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1000px) {
    .trusted-logos {
        gap: 24px;
    }
    
    .logo-item {
        flex: 0 0 calc(25% - 24px);
        min-width: 160px;
    }
    
    .reseller-stats-highlight {
        gap: 32px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .trusted-by {
        padding: 48px 0;
    }
    
    .trusted-header {
        margin-bottom: 36px;
    }
    
    .trusted-by-text {
        font-size: 1rem;
    }
    
    .counter-highlight {
        font-size: 1.1rem;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .logo-item {
        flex: 0 0 calc(33.33% - 20px);
        min-width: 140px;
    }
    
    .logo-icon-wrapper {
        width: 42px;
        height: 42px;
    }
    
    .logo-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .logo-subtext {
        font-size: 0.65rem;
    }
    
    .reseller-stats-highlight {
        gap: 24px;
        padding: 20px 0;
    }
    
    .stat-highlight-item i {
        font-size: 1.6rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-highlight-item .stat-label {
        font-size: 0.7rem;
    }
    
    .trusted-companies {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .companies-logos {
        justify-content: center;
        gap: 20px;
    }
    
    .rating-summary {
        gap: 8px;
    }
    
    .stars i {
        font-size: 0.9rem;
    }
    
    .rating-score {
        font-size: 0.85rem;
    }
    
    .rating-count {
        font-size: 0.75rem;
    }
}

@media (max-width: 550px) {
    .trusted-logos {
        gap: 16px;
    }
    
    .logo-item {
        flex: 0 0 calc(50% - 16px);
        min-width: auto;
    }
    
    .logo-info {
        text-align: left;
    }
    
    .trusted-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .trusted-by-text {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .reseller-stats-highlight {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-highlight-item {
        width: 100%;
        max-width: 200px;
    }
    
    .companies-logos {
        gap: 16px;
    }
    
    .company {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .logo-item {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .logo-info {
        text-align: center;
    }
    
    .trusted-badge-wrapper {
        gap: 10px;
    }
}

/* ============================================
   LIMITED TIME BADGE - RESELLER PAGE
   SMARTER8K.APP - PREMIUM ANIMATED BADGE
   ============================================ */

.limited-time-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B9D, #FFD700);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0A1128;
    margin: 20px auto 0;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    cursor: default;
    animation: badgePulse 2s ease infinite;
}

/* Animated shine effect */
.limited-time-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

/* Pulse animation */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
    }
}

/* Icon animation */
.limited-time-badge i {
    font-size: 1rem;
    animation: iconBounce 1s ease infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Hover effect */
.limited-time-badge:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .limited-time-badge {
        padding: 8px 18px;
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .limited-time-badge i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .limited-time-badge {
        padding: 6px 14px;
        font-size: 0.65rem;
        gap: 6px;
        white-space: nowrap;
    }
    
    .limited-time-badge i {
        font-size: 0.7rem;
    }
}

/* Center alignment helper */
.text-center {
    text-align: center;
}

/* ============================================
   DEVICE COMPATIBILITY SECTION
   SMARTER8K.APP - RESELLER PAGE
   4 COLUMNS DESKTOP | 2 COLUMNS MOBILE
   ============================================ */

.device-compatibility {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFE 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.device-compatibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(0, 229, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(184, 76, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.device-compatibility .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.device-compatibility .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.device-compatibility .section-tag {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00E5FF;
    margin-bottom: 16px;
}

.device-compatibility .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.device-compatibility .section-description {
    font-size: 1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid - 4 Columns on Desktop */
.device-compatibility .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Device Cards */
.device-compatibility .feature-card {
    background: white;
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Shine effect on hover */
.device-compatibility .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.device-compatibility .feature-card:hover::before {
    left: 100%;
}

.device-compatibility .feature-card:hover {
    transform: translateY(-5px);
    border-color: #00E5FF;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

/* Device Icons */
.device-compatibility .feature-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.device-compatibility .feature-card:hover i {
    transform: scale(1.05);
}

/* Device Headings */
.device-compatibility .feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

/* Device Descriptions */
.device-compatibility .feature-card p {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.4;
}

/* ========== TABLET - 2 COLUMNS ========== */
@media (max-width: 900px) {
    .device-compatibility .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .device-compatibility .feature-card {
        padding: 24px 18px;
    }
}

/* ========== MOBILE - 2 COLUMNS ========== */
@media (max-width: 550px) {
    .device-compatibility {
        padding: 50px 0;
    }
    
    .device-compatibility .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .device-compatibility .feature-card {
        padding: 16px 12px;
    }
    
    .device-compatibility .feature-card i {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .device-compatibility .feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .device-compatibility .feature-card p {
        font-size: 0.65rem;
    }
    
    .device-compatibility .section-title {
        font-size: 1.6rem;
    }
    
    .device-compatibility .section-description {
        font-size: 0.85rem;
        padding: 0 16px;
    }
    
    .device-compatibility .section-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* ========== EXTRA SMALL - STILL 2 COLUMNS ========== */
@media (max-width: 380px) {
    .device-compatibility .features-grid {
        gap: 8px;
    }
    
    .device-compatibility .feature-card {
        padding: 12px 8px;
    }
    
    .device-compatibility .feature-card i {
        font-size: 1.3rem;
    }
    
    .device-compatibility .feature-card h3 {
        font-size: 0.7rem;
    }
    
    .device-compatibility .feature-card p {
        font-size: 0.55rem;
    }
}

/* Floating animation for icons on desktop only */
@media (min-width: 768px) {
    .device-compatibility .feature-card i {
        animation: floatIcon 3s ease-in-out infinite;
    }
    
    .device-compatibility .feature-card:nth-child(even) i {
        animation-delay: 1s;
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

