/* ========== 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; /* Keep as flex or block when active */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* FIX 1: Remove top/bottom padding entirely */
    padding: 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);
    
    /* FIX 2: Ensure the container doesn't have its own padding or margins */
    padding: 0 var(--space-sm); /* Keep small side padding so buttons don't touch screen edges */
    margin: 0 auto; 
    min-height: auto;
}

.sticky-mobile-cta .btn {
    flex: 1;
    /* This controls the actual height of the bar now */
    padding: 0.75rem; 
    font-size: 0.9rem;
    
    /* FIX 3: Ensure buttons don't have bottom margins */
    margin-bottom: 0; 
}

/* ========== 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: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    justify-content: center;
    gap: 18px 20px;
    max-width: 760px;
    margin: 0 auto 28px;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    background: transparent !important;
    border: none !important;
    padding: 8px 4px !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.stat-icon i {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 3px;
}

.stat-plus {
    font-size: 1.2rem;
    color: #00E5FF;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.stat-trend {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.56);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 2px;
}

.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; }


@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 14px 14px;
        max-width: 420px;
        margin: 0 auto 24px;
    }

    .stat-item {
        padding: 6px 2px !important;
    }

    .stat-number {
        font-size: 1.45rem;
    }

    .stat-icon {
        font-size: 1.15rem;
        margin-bottom: 3px;
    }

    .stat-label {
        font-size: 0.66rem;
        margin-bottom: 2px;
    }

    .stat-trend {
        font-size: 0.58rem;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        gap: 12px;
        max-width: 340px;
    }

    .stat-number {
        font-size: 1.28rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .stat-trend {
        font-size: 0.54rem;
        padding: 4px 7px;
    }
}

/* ========== 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);
    }
}

/* ============================================
   CHANNELS HERO SECTION - SMARTER8K.APP
   PREMIUM CSS WITH ANIMATIONS & RESPONSIVE
   ============================================ */

/* Hero Main Container */
.channels-hero {
    position: relative;
    background: linear-gradient(145deg, #0A1128 0%, #07102E 40%, #0A0F1F 100%);
    color: #FFFFFF;
    padding: 100px 0 120px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ========== ANIMATED GLOW ORBS ========== */
.channels-hero .hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.channels-hero .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;
}

.channels-hero .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;
}

.channels-hero .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 ========== */
.channels-hero .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 ========== */
.channels-hero .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;
}

.channels-hero .icon-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 2rem; }
.channels-hero .icon-2 { top: 25%; right: 8%; animation-delay: 1s; font-size: 1.8rem; }
.channels-hero .icon-3 { bottom: 20%; left: 10%; animation-delay: 2s; font-size: 2.2rem; }
.channels-hero .icon-4 { top: 60%; right: 15%; animation-delay: 1.5s; font-size: 1.6rem; }
.channels-hero .icon-5 { bottom: 35%; right: 20%; animation-delay: 2.5s; font-size: 1.9rem; }
.channels-hero .icon-6 { top: 40%; left: 15%; animation-delay: 3s; font-size: 1.7rem; }
.channels-hero .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 */
.channels-hero .container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.channels-hero .hero-content {
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== BREADCRUMB ========== */
.channels-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-align: center;
}

.channels-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.channels-hero .breadcrumb a:hover {
    color: #00E5FF;
}

.channels-hero .breadcrumb i {
    font-size: 0.7rem;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.channels-hero .breadcrumb span {
    color: #00E5FF;
}

/* ========== PREMIUM BADGES ========== */
.channels-hero .hero-badge-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.channels-hero .hero-badge {
    background: transparent;
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    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);
}

.channels-hero .hero-badge:hover {
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.channels-hero .hero-badge i:first-child {
    font-size: 0.8rem;
}

.channels-hero .hero-badge:first-child i:first-child { color: #FFD700; }
.channels-hero .hero-badge:nth-child(2) i:first-child { color: #00E5FF; }
.channels-hero .hero-badge:nth-child(3) i:first-child { color: #FFB347; }

.channels-hero .verified-icon {
    color: #10B981;
    font-size: 0.7rem;
}

.channels-hero .rating-stars {
    display: inline-flex;
    gap: 2px;
    margin-left: 6px;
}

.channels-hero .rating-stars i {
    font-size: 0.65rem;
    color: #FFD700;
}

.channels-hero .live-badge {
    background: #EF4444;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    margin-left: 6px;
    animation: pulse 1.5s ease infinite;
}

.channels-hero .trending-badge {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(184, 76, 255, 0.2));
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========== TITLE SECTION ========== */
.channels-hero .hero-title-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.channels-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.channels-hero .gradient-text {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.channels-hero .gradient-text-2 {
    background: linear-gradient(135deg, #FFD700, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.channels-hero .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.channels-hero .decoration-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00E5FF, transparent);
}

.channels-hero .title-decoration i {
    color: #00E5FF;
    font-size: 1rem;
    animation: pulse 2s ease infinite;
}

/* ========== SUBTITLE ========== */
.channels-hero .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.channels-hero .hero-subtitle i {
    color: #00E5FF;
    margin-right: 8px;
}

.channels-hero .hero-subtitle strong {
    color: #00E5FF;
    font-weight: 600;
}

.channels-hero .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);
}

.channels-hero .guarantee-badge i {
    margin-right: 4px;
    color: #10B981;
}

/* ========== PREMIUM STATS ========== */
.channels-hero .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 48px;
}

.channels-hero .stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.channels-hero .stat-item:hover {
    transform: translateY(-3px);
}

.channels-hero .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.channels-hero .stat-icon i {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.channels-hero .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.channels-hero .stat-plus {
    font-size: 1.2rem;
    color: #00E5FF;
}

.channels-hero .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.channels-hero .stat-trend {
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.56);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 2px;
}

.channels-hero .stat-trend i {
    font-size: 0.65rem;
}

.channels-hero .stat-trend i.fa-arrow-up { color: #10B981; }
.channels-hero .stat-trend i.fa-plus-circle { color: #00E5FF; }
.channels-hero .stat-trend i.fa-star { color: #FFD700; }

.channels-hero .featured-stat {
    position: relative;
}

.channels-hero .featured-stat::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #B84CFF);
    border-radius: 2px;
}

/* ========== CTA BUTTONS ========== */
.channels-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.channels-hero .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;
}

.channels-hero .btn-primary {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    color: #0A1128;
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2);
}

.channels-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
}

.channels-hero .btn-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
}

.channels-hero .btn-arrow {
    transition: transform 0.2s;
}

.channels-hero .btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.channels-hero .btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.channels-hero .btn-outline-light:hover {
    border-color: #00E5FF;
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-3px);
}

.channels-hero .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.channels-hero .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.channels-hero .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 ========== */
.channels-hero .trust-badge-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.channels-hero .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.channels-hero .trust-item i {
    font-size: 0.85rem;
}

.channels-hero .trust-item i.fa-check-circle { color: #10B981; }
.channels-hero .trust-item i.fa-bolt { color: #FFD700; }
.channels-hero .trust-item i.fa-headset { color: #00E5FF; }
.channels-hero .trust-item i.fa-sync-alt { color: #FF6B9D; }
.channels-hero .trust-item i.fa-shield-alt { color: #B84CFF; }
.channels-hero .trust-item i.fa-shield-virus { color: #00E5FF; }
.channels-hero .trust-item i.fa-trophy { color: #FFD700; }

/* ========== DEVICE BADGES ROW ========== */
.channels-hero .device-badges-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.channels-hero .device-badge {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.channels-hero .device-badge:hover {
    background: rgba(0, 229, 255, 0.15);
    transform: translateY(-2px);
}

.channels-hero .device-badge i {
    font-size: 0.8rem;
}

/* ========== CONTACT BAR ========== */
.channels-hero .hero-contact {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.channels-hero .contact-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 6px 12px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channels-hero .contact-icon {
    width: 24px;
    text-align: center;
}

.channels-hero .contact-group a, 
.channels-hero .contact-group span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.channels-hero .contact-group a:hover {
    color: #00E5FF;
}

.channels-hero .status-badge {
    font-size: 0.65rem;
    color: #10B981;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.channels-hero .status-badge i {
    font-size: 0.45rem;
}

/* ========== CHANNEL SEARCH BAR ========== */
.channels-hero .channel-search-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
}

.channels-hero .search-container {
    position: relative;
    margin-bottom: 12px;
}

.channels-hero .search-container i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.channels-hero .search-container input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.channels-hero .search-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.channels-hero .search-container input:focus {
    outline: none;
    border-color: #00E5FF;
    background: rgba(255, 255, 255, 0.12);
}

.channels-hero .popular-searches {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.channels-hero .popular-searches span {
    color: rgba(255, 255, 255, 0.4);
}

.channels-hero .popular-searches a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.channels-hero .popular-searches a:hover {
    color: #00E5FF;
}

/* ========== CUSTOMER COUNTER ========== */
.channels-hero .customer-counter {
    text-align: center;
    margin-bottom: 24px;
}

.channels-hero .counter-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.channels-hero .counter-icon {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #00E5FF;
}

.channels-hero .counter-count {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: 8px;
}

.channels-hero .customer-counter p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.channels-hero .customer-counter p i {
    color: #FF6B9D;
    margin-right: 4px;
}

.channels-hero .customer-counter p strong {
    color: #00E5FF;
}

/* ========== FOOTER TRUST ========== */
.channels-hero .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);
}

.channels-hero .payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
}

.channels-hero .payment-methods i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.channels-hero .payment-methods i:hover {
    color: #00E5FF;
}

.channels-hero .more-payments {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.channels-hero .ssl-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.channels-hero .ssl-badge i {
    color: #10B981;
}

.channels-hero .moneyback-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.channels-hero .moneyback-badge i {
    color: #FFD700;
}

/* ========== WAVE DIVIDER ========== */
.channels-hero .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
}

.channels-hero .hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 900px) {
    .channels-hero .hero-stats {
        gap: 20px;
    }
    
    .channels-hero .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .channels-hero {
        padding: 80px 0 100px;
        min-height: auto;
    }
    
    .channels-hero .hero-stats {
        gap: 16px;
    }
    
    .channels-hero .stat-number {
        font-size: 1.3rem;
    }
    
    .channels-hero .stat-icon {
        font-size: 1.3rem;
    }
    
    .channels-hero .hero-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .channels-hero .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 16px;
    }
    
    .channels-hero .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .channels-hero .trust-badge-row {
        gap: 16px;
    }
    
    .channels-hero .trust-item {
        font-size: 0.7rem;
    }
    
    .channels-hero .hero-contact {
        gap: 16px;
    }
    
    .channels-hero .contact-group a, 
    .channels-hero .contact-group span {
        font-size: 0.75rem;
    }
    
    .channels-hero .device-badges-row {
        gap: 8px;
    }
    
    .channels-hero .device-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 550px) {
    .channels-hero .hero-stats {
        gap: 12px;
    }
    
    .channels-hero .stat-item {
        min-width: 80px;
    }
    
    .channels-hero .stat-number {
        font-size: 1.1rem;
    }
    
    .channels-hero .stat-label {
        font-size: 0.6rem;
    }
    
    .channels-hero .stat-trend {
        font-size: 0.55rem;
    }
    
    .channels-hero .stat-icon {
        font-size: 1.1rem;
    }
    
    .channels-hero .hero-badge {
        padding: 3px 10px;
        font-size: 0.65rem;
    }
    
    .channels-hero .hero-cta {
        gap: 12px;
    }
    
    .channels-hero .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .channels-hero .trust-badge-row {
        gap: 10px;
    }
    
    .channels-hero .trust-item {
        font-size: 0.6rem;
    }
    
    .channels-hero .hero-contact {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .channels-hero .contact-group {
        width: 100%;
        justify-content: center;
    }
    
    .channels-hero .device-badges-row {
        gap: 6px;
    }
    
    .channels-hero .device-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
    
    .channels-hero .title-decoration .decoration-line {
        width: 25px;
    }
    
    .channels-hero .search-container input {
        padding: 12px 16px 12px 42px;
        font-size: 0.85rem;
    }
    
    .channels-hero .popular-searches {
        font-size: 0.65rem;
        gap: 8px;
        justify-content: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   FEATURES PAGE SPECIFIC STYLING
   ========================================================================== */

/* 1. NEXT-GEN INNOVATION & TECH SPECS - MOBILE 1-BY-1 */
@media (max-width: 768px) {
    /* Targets the specific grids in these two sections */
    .features-grid {
        grid-template-columns: 1fr !important; /* Forces 1 column on mobile */
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
        text-align: center;
    }
}

/* 2. PREMIUM COMPARISON TABLE STYLING */
.comparison-container {
    margin-top: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #eef2f7;
}

/* Table Header */
thead tr {
    background: linear-gradient(135deg, #0A1128 0%, #1c2951 100%) !important;
}

th {
    padding: 20px 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Body Cells */
td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f4f8;
    color: #4a5568;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Highlighting the "Smarter 8K IPTV" Column */
td:nth-child(2), 
th:nth-child(2) {
    background-color: rgba(0, 229, 255, 0.03);
    color: #0A1128;
    border-left: 1px solid rgba(0, 229, 255, 0.1);
    border-right: 1px solid rgba(0, 229, 255, 0.1);
}

/* Adding Checkmarks/Icons for Premium Feel */
td:nth-child(2) {
    font-weight: 700;
    color: #2a52be;
}

/* Hover Effect */
tbody tr:hover td {
    background-color: #f8faff;
    color: #000;
}

/* 3. MOBILE RESPONSIVENESS FOR TABLE */
@media (max-width: 992px) {
    /* Adds horizontal scroll for tablets/small laptops so it doesn't break layout */
    div[style*="overflow-x: auto"] {
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    table {
        min-width: 800px; /* Ensures table stays readable while scrolling */
    }
}

/* 4. PREMIUM BANNER ENHANCEMENT */
.feature-banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   MOBILE-FIRST OPTIMIZATIONS (Max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
    
    /* 1. APP SHOWCASE SECTION - Single Column Stack */
    section[style*="padding: 60px 0"] .container > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    section[style*="padding: 60px 0"] ul.feature-list {
        display: inline-block;
        text-align: left;
    }

    /* 2. DEVICE COMPATIBILITY - 2x2 Grid */
    section .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* 3. APP SCREENSHOTS GALLERY - 2x2 Grid */
    section .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* 4. TESTIMONIALS - 1-1-1 Stack */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* 5. PREMIUM INSTALLATION GUIDES (Universal Desktop & Mobile) */
.installation-guide-box {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    overflow: hidden;
}

/* Blue accent line for premium feel */
.installation-guide-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #00E5FF, #B84CFF);
}

.installation-guide-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    margin-bottom: 25px !important;
    color: #0A1128;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-badge {
    background: linear-gradient(135deg, #00E5FF, #2a52be) !important;
    color: #0A1128 !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.2);
}

.step-text strong {
    display: block;
    color: #0A1128;
    margin-bottom: 4px;
}

.step-text p {
    color: #64748B !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Ensure Trust Badges are visible and responsive */
.trust-badge-row {
    display: flex !important; /* Forces visibility */
    flex-wrap: wrap; /* Allows them to wrap to the next line on mobile */
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}

.trust-badge-row span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #4A5568;
    white-space: nowrap; /* Prevents text from breaking mid-phrase */
}

.trust-badge-row i {
    margin-right: 8px;
    color: #10B981; /* Matches your checkmark green */
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .trust-badge-row {
        justify-content: center; /* Centers badges on mobile */
        margin-top: 1rem !important;
    }
    
    .trust-badge-row span {
        font-size: 0.85rem;
        background: #f8fafc; /* Optional: adds a subtle pill-style background */
        padding: 5px 12px;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
    }
}

/* ============================================
   FINAL CTA SECTION - SMARTER8K.APP
   Premium Call-to-Action with Animations
   ============================================ */

.prefooter-cta {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.prefooter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
    animation: rotateBg 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* Shine effect on hover */
.cta-banner::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;
    z-index: 1;
    pointer-events: none;
}

.cta-banner:hover::before {
    left: 100%;
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    color: #0A1128;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(10, 17, 40, 0.85);
    margin: 20px 0;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.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;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Primary Button */
.btn-primary {
    background: #0A1128;
    color: white;
    box-shadow: 0 8px 20px rgba(10, 17, 40, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 17, 40, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Outline Button */
.btn-outline-light {
    background: transparent;
    border: 2px solid #0A1128;
    color: #0A1128;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #0A1128;
    color: white;
    transform: translateY(-3px);
    border-color: #0A1128;
}

/* Button Icons */
.btn i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-outline-light:hover i {
    transform: translateX(3px);
}

/* Trust Badges Row */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0A1128;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(10, 17, 40, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.cta-trust span:hover {
    background: rgba(10, 17, 40, 0.15);
    transform: translateY(-2px);
}

.cta-trust span i {
    font-size: 1rem;
}

.cta-trust span i.fa-shield-alt {
    color: #10B981;
}

.cta-trust span i.fa-bolt {
    color: #FFD700;
}

.cta-trust span i.fa-mobile-alt {
    color: #00E5FF;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .prefooter-cta {
        padding: 40px 0;
    }
    
    .cta-banner {
        padding: 40px 24px;
        border-radius: 30px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .cta-trust {
        gap: 20px;
        margin-top: 30px;
    }
    
    .cta-trust span {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 550px) {
    .prefooter-cta {
        padding: 30px 0;
    }
    
    .cta-banner {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
        margin: 15px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
    }
    
    .cta-trust span {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        font-size: 0.7rem;
    }
}

/* Extra Small Devices */
@media (max-width: 380px) {
    .cta-banner {
        padding: 25px 16px;
    }
    
    .cta-content h2 {
        font-size: 1.2rem;
    }
    
    .cta-content p {
        font-size: 0.8rem;
    }
    
    .btn {
        max-width: 100%;
        font-size: 0.85rem;
        padding: 10px 16px;
    }
}

/* ============================================
   DARK MODE SUPPORT (Optional)
   ============================================ */

@media (prefers-color-scheme: dark) {
    .cta-banner {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .cta-trust span {
        background: rgba(255, 255, 255, 0.1);
        color: #0A1128;
    }
}

/* ============================================
   INSTALLATION GUIDES SECTION - SMARTER8K.APP
   Premium Setup Guides with Animations
   ============================================ */

/* Section Background */
.installation-section {
    padding: 60px 0;
    background: #F8FAFE;
    position: relative;
    overflow: hidden;
}

/* Animated background particles */
.installation-section::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;
}

/* Installation Guide Box */
.install-guide-box {
    background: white;
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.install-guide-box:hover {
    transform: translateY(-5px);
    border-color: #00E5FF;
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.12);
}

/* Premium accent line */
.install-guide-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    border-radius: 28px 0 0 28px;
}

/* Shine effect on hover */
.install-guide-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.install-guide-box:hover::after {
    left: 100%;
}

/* Guide Header */
.install-guide-box h3 {
    margin-bottom: 28px;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1E293B;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 229, 255, 0.2);
    display: inline-block;
}

.install-guide-box h3 i {
    font-size: 1.8rem;
}

.install-guide-box h3 i.fa-amazon { color: #FF9900; }
.install-guide-box h3 i.fa-android { color: #3DDC84; }

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Step Item */
.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #F8FAFE;
    transform: translateX(5px);
}

/* Step Number Badge */
.step-number {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    color: #0A1128;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 12px rgba(0, 229, 255, 0.25);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 229, 255, 0.35);
}

/* Step Content */
.step-content {
    flex: 1;
}

.step-content strong {
    display: block;
    color: #1E293B;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Help Button */
.help-button {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    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 ease;
    background: transparent;
    border: 2px solid #00E5FF;
    color: #00E5FF;
}

.btn-outline:hover {
    background: #00E5FF;
    color: #0A1128;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.btn-outline i {
    transition: transform 0.2s;
}

.btn-outline:hover i {
    transform: translateX(3px);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 768px) {
    .installation-section {
        padding: 50px 0;
    }
    
    .install-guide-box {
        padding: 24px;
    }
    
    .install-guide-box h3 {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }
    
    .install-guide-box h3 i {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.9rem;
    }
    
    .step-content strong {
        font-size: 0.95rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
}

/* Mobile (up to 550px) */
@media (max-width: 550px) {
    .installation-section {
        padding: 40px 0;
    }
    
    .install-guide-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .install-guide-box h3 {
        font-size: 1.1rem;
        margin-bottom: 18px;
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .install-guide-box h3 i {
        font-size: 1.3rem;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 15px 10px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        margin-bottom: 5px;
    }
    
    .step-content strong {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.75rem;
    }
    
    .btn-outline {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* Extra Small Devices (up to 380px) */
@media (max-width: 380px) {
    .install-guide-box {
        padding: 16px;
    }
    
    .install-guide-box h3 {
        font-size: 1rem;
    }
    
    .step-item {
        padding: 10px 8px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.8rem;
    }
    
    .step-content strong {
        font-size: 0.85rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
    
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-guide-box {
    animation: fadeInUp 0.6s ease-out;
}

.install-guide-box:first-child {
    animation-delay: 0.1s;
}

.install-guide-box:last-child {
    animation-delay: 0.2s;
}

/* ============================================
   SECTION HEADER STYLES (Consistent with site)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.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;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.section-description {
    font-size: 1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.85rem;
        padding: 0 16px;
    }
}

@media (max-width: 550px) {
    .section-title {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   MOBILE FIX: STATS GRID (3-3 on Tablet, 2-2-2 on Small Mobile)
   ========================================================================== */

@media (max-width: 768px) {
    /* Targets the stats container and forces a 3-column grid */
    .hero-stats, 
    .reseller-stats-highlight {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 15px !important;
        padding: 15px 10px !important;
    }
    
    /* Resets individual items so they don't force full width */
    .stat-item, 
    .stat-highlight-item {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 0 !important;
        padding: 10px 5px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    /* Shifts to a 2-column (2-2-2) layout for smaller phone screens */
    .hero-stats, 
    .reseller-stats-highlight {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 12px !important;
    }
    
    /* Slightly shrinks text to ensure everything fits perfectly in 2 columns */
    .stat-number, 
    .stat-value {
        font-size: 1.3rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
}

/* ============================================
   MAIN CONTACT AREA WITH FORM - SMARTER8K.APP
   Premium Contact Section with Responsive Design
   ============================================ */

/* Contact Section Background */
.contact-main-section {
    padding: 60px 0;
    background: #F8FAFE;
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.contact-main-section::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;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* ========== LEFT INFO SECTION ========== */
.contact-info-section {
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1E293B;
}

.contact-title .gradient-text {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-description {
    color: #64748B;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Info Items */
.contact-info-items {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 8px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.8);
}

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item:hover .info-icon-wrapper {
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    transform: scale(1.05);
}

.info-icon-wrapper i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.info-icon-wrapper i.fa-globe {
    color: #00E5FF;
}

.info-icon-wrapper i.fa-whatsapp {
    color: #25D366;
}

.info-icon-wrapper i.fa-envelope {
    color: #00E5FF;
}

.info-icon-wrapper i.fa-clock {
    color: #00E5FF;
}

.info-item:hover .info-icon-wrapper i {
    color: white;
}

.info-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 700;
    color: #1E293B;
}

.info-content p {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.5;
}

.info-content a {
    color: #00E5FF;
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: #B84CFF;
    text-decoration: underline;
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1E293B;
}

.form-header p {
    color: #64748B;
    font-size: 0.85rem;
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1E293B;
}

.form-group label i {
    margin-right: 8px;
    color: #00E5FF;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00E5FF;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #00E5FF;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    color: #0A1128;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.submit-btn i {
    transition: transform 0.2s;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Form Footer */
.form-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #94A3B8;
    margin-top: 15px;
}

.form-footer i {
    margin-right: 5px;
    color: #10B981;
}

/* Form Status Messages */
.form-status {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    color: #10B981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px - 1024px) */
@media (max-width: 900px) {
    .contact-grid {
        gap: 40px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: 50px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
        padding: 25px 20px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-description {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .info-content {
        text-align: left;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .form-header p {
        text-align: center;
    }
}

/* Mobile (up to 550px) */
@media (max-width: 550px) {
    .contact-main-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-title {
        font-size: 1.3rem;
    }
    
    .contact-description {
        font-size: 0.85rem;
    }
    
    .info-item {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .info-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .info-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .info-content h4 {
        font-size: 0.9rem;
    }
    
    .info-content p {
        font-size: 0.75rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (up to 380px) */
@media (max-width: 380px) {
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon-wrapper {
        margin-bottom: 10px;
    }
    
    .info-content {
        text-align: center;
    }
    
    .form-header h3 {
        font-size: 1.1rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-section,
.contact-form-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-section {
    animation-delay: 0.1s;
}

.contact-form-wrapper {
    animation-delay: 0.2s;
}

/* ========== LOADING STATE FOR BUTTON ========== */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== CHECKBOX GROUP STYLES ========== */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

/* ========== REQUIRED FIELD INDICATOR ========== */
.required-field::after {
    content: '*';
    color: #EF4444;
    margin-left: 4px;
}

/* ==========================================================================
   MOBILE FIX: WHITE FEATURE BADGES (2-Column Grid)
   ========================================================================== */

@media (max-width: 768px) {
    /* Targets the container holding the white badges */
    .trust-badge-row,
    .trusted-badge-wrapper,
    .contact-badges /* Add your specific wrapper class here if it's different */ {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px !important;
        justify-content: center !important;
    }

    /* Ensures the individual badges fit perfectly side-by-side */
    .trust-item,
    .trusted-badge,
    .trust-badge-row span {
        width: 100% !important;
        margin: 0 !important;
        padding: 8px 5px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important; /* Centers the icon and text */
        
        /* Typography tweaks to prevent text overlapping */
        font-size: 0.75rem !important; 
        white-space: nowrap !important;
        text-align: center !important;
    }
    
    /* Slightly shrinks the icon to save space on small phones */
    .trust-item i,
    .trusted-badge i,
    .trust-badge-row span i {
        margin-right: 6px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 400px) {
    /* If the screen is VERY small (like an iPhone SE), allow text to wrap so it doesn't get cut off */
    .trust-item,
    .trusted-badge,
    .trust-badge-row span {
        white-space: normal !important;
        flex-direction: column !important; /* Stacks icon above text */
        gap: 4px !important;
    }
    .trust-item i,
    .trusted-badge i,
    .trust-badge-row span i {
        margin-right: 0 !important;
    }
}

/* ==========================================================================
   SEARCH PAGE FIX: DEVICE ICONS & CUSTOMER COUNTER
   ========================================================================== */

/* 1. Device Row Container */
.device-badges-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: flex-end !important;
    gap: 25px !important;
    margin: 40px auto 30px !important;
    max-width: 800px;
    width: 100%;
}

/* 2. Individual Device Items */
.device-badge {
    background: transparent !important; /* Removes the broken white circles */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #94A3B8 !important; /* Premium Slate Gray Text */
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    gap: 8px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    cursor: default;
}

/* 3. Device Icons */
.device-badge i {
    font-size: 1.6rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.device-badge:hover i {
    color: #00E5FF !important; /* Neon blue on hover */
    transform: translateY(-2px);
}

.device-badge:hover {
    color: #00E5FF !important;
}

/* 4. Customer Counter Overlap Fix */
.customer-counter {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 15px !important;
    gap: 12px !important;
    width: 100%;
    clear: both;
}

.counter-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.counter-icon {
    background: #1E293B !important; 
    color: #00E5FF !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #0A1128 !important; /* Creates the overlap cutout effect */
    margin-left: -10px !important; 
    font-size: 0.85rem !important;
    z-index: 2;
}

.counter-icon:first-child {
    margin-left: 0 !important;
}

.counter-count {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-left: 12px !important;
}

.customer-counter p {
    color: #94A3B8 !important;
    font-size: 0.85rem !important;
    margin: 0 !important;
}

.customer-counter p strong {
    color: #00E5FF !important;
}

/* 5. Mobile Responsiveness */
@media (max-width: 768px) {
    .device-badges-row {
        gap: 15px !important;
    }
    .device-badge {
        width: calc(25% - 15px) !important; /* Forces 4 items per row on tablet */
        font-size: 0.75rem !important;
    }
    .device-badge i {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .device-badge {
        width: calc(33.33% - 15px) !important; /* Forces 3 items per row on mobile */
    }
}

/* ==========================================================================
   DESKTOP FIX: FORCE ALL 6 STATS INTO A SINGLE ROW
   ========================================================================== */

@media (min-width: 992px) {
    /* Targets the main stats containers globally */
    .hero-stats,
    .reseller-stats-highlight {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* The magic rule: stops the 87k item from dropping down */
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 1200px !important; /* Gives it enough room to stretch */
        margin: 0 auto !important;
        gap: 15px !important;
    }

    /* Adjusts the individual items so they all fit perfectly */
    .hero-stats .stat-item,
    .reseller-stats-highlight .stat-highlight-item {
        flex: 1 1 0 !important; /* Forces all 6 boxes to be the exact same width */
        min-width: 0 !important; /* Prevents large text from breaking the row */
        margin: 0 !important;
        padding: 10px 5px !important;
    }

    /* Scales down the numbers slightly just in case desktop screens are narrow */
    .hero-stats .stat-number,
    .reseller-stats-highlight .stat-value {
        font-size: 1.7rem !important; 
    }
}

/* ==========================================================================
   PREMIUM MOBILE CONTACT SECTION (FULL WIDTH FIT FIX)
   ========================================================================== */

.mobile-nav-contact {
    padding: 15px 10px; /* Reduced outer padding to give boxes maximum width */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Tighter internal gap */
    padding: 8px 10px; /* Tighter internal padding */
    background: #ffffff; 
    border: 1px solid #E2E8F0; 
    border-radius: 14px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
    width: 100%;
    box-sizing: border-box;
}

/* Shrink icons slightly to make room for text */
.contact-item i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

/* WhatsApp Icon Colors */
.contact-item i.fa-whatsapp {
    background: rgba(16, 185, 129, 0.1); 
    color: #10B981; 
}

/* Email Icon Colors */
.contact-item i.fa-envelope {
    background: rgba(0, 229, 255, 0.1); 
    color: #00B8D4; 
}

/* CRITICAL FIX: Fluid typography so it fits every screen */
.contact-item a {
    color: #1E293B !important; 
    text-decoration: none;
    /* This automatically scales the font down on tiny phones to prevent cut-offs */
    font-size: clamp(0.7rem, 3.8vw, 0.9rem) !important; 
    font-weight: 600;
    white-space: nowrap; 
    letter-spacing: 0;
}

/* Shrink the status badge slightly to give the text more space */
.contact-item .status {
    margin-left: auto; 
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 3px 6px;
    border-radius: 15px; 
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; 
    flex-shrink: 0; 
}

/* ==========================================================================
   FIX: KEEP BADGE INSIDE THE BOX 
   ========================================================================== */

.contact-item {
    /* Make sure the box has a strict boundary and right-side padding */
    padding-right: 12px !important; 
    overflow: hidden !important; 
}

.contact-item a {
    /* The magic fix: min-width: 0 allows the text to shrink in a flex container */
    min-width: 0 !important; 
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* Adds '...' if the text is too long */
    white-space: nowrap !important;
    
    /* Keep your existing styling */
    color: #1E293B !important; 
    text-decoration: none;
    font-size: clamp(0.7rem, 3.8vw, 0.9rem) !important; 
    font-weight: 600;
}

.contact-item .status {
    /* Keeps the badge its normal shape and pushes it right, but safely inside */
    flex-shrink: 0 !important; 
    margin-left: auto !important; 
    
    /* Keep your existing styling */
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    padding: 3px 6px;
    border-radius: 15px; 
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
}
    /* Blog Page Specific Styles */
    .blog-hero {
      background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-navy) 100%);
      padding: 120px 0 60px;
      position: relative;
      overflow: hidden;
    }
    
    .blog-hero-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }
    
    .blog-hero-title {
      font-size: 3rem;
      margin-bottom: 20px;
      color: white;
    }
    
    .blog-hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
      max-width: 800px;
      margin: 0 auto 30px;
    }
    
    .blog-search-container {
      max-width: 500px;
      margin: 30px auto;
    }
    
    .blog-search-container form {
      display: flex;
      background: rgba(255,255,255,0.1);
      border-radius: 60px;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }
    
    .blog-search-container input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 14px 20px;
      color: white;
      font-size: 0.95rem;
    }
    
    .blog-search-container input::placeholder {
      color: rgba(255,255,255,0.6);
    }
    
    .blog-search-container button {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      border: none;
      padding: 0 25px;
      color: var(--primary-deep);
      font-weight: 600;
      cursor: pointer;
    }
    
    .blog-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 30px 0;
      flex-wrap: wrap;
    }
    
    .blog-stats .stat-item {
      text-align: center;
    }
    
    .blog-stats .stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent-teal);
      display: block;
    }
    
    .blog-stats .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
    }
    
    .featured-post-section {
      padding: 60px 0;
      background: var(--white);
    }
    
    .featured-post {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 2rem;
      background: var(--gray-50);
      border-radius: var(--radius-2xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    
    .featured-image {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 300px;
    }
    
    .featured-image i {
      font-size: 5rem;
      color: white;
    }
    
    .featured-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      padding: 5px 12px;
      border-radius: 30px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    
    .featured-content {
      padding: 2rem;
    }
    
    .featured-category {
      display: inline-block;
      background: rgba(0,229,255,0.1);
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.75rem;
      color: var(--accent-teal);
      margin-bottom: 1rem;
    }
    
    .featured-title {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--primary-deep);
    }
    
    .featured-excerpt {
      color: var(--gray-600);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    
    .featured-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
      font-size: 0.85rem;
      color: var(--gray-500);
    }
    
    .featured-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .blog-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.8rem;
      margin: 2rem 0;
    }
    
    .category-btn {
      background: var(--gray-100);
      border: none;
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--gray-600);
    }
    
    .category-btn.active, .category-btn:hover {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      color: var(--primary-deep);
    }
    
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      border: 1px solid var(--gray-100);
    }
    
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
      border-color: var(--accent-teal);
    }
    
    .blog-card-image {
      background: linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .blog-card-image i {
      font-size: 3rem;
      color: rgba(255,255,255,0.8);
    }
    
    .card-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0,0,0,0.6);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      color: white;
    }
    
    .blog-card-content {
      padding: 1.5rem;
    }
    
    .blog-category {
      display: inline-block;
      background: rgba(0,229,255,0.1);
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      color: var(--accent-teal);
      margin-bottom: 0.8rem;
    }
    
    .blog-title {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      line-height: 1.4;
    }
    
    .blog-title a {
      color: var(--primary-deep);
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .blog-title a:hover {
      color: var(--accent-teal);
    }
    
    .blog-excerpt {
      color: var(--gray-500);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }
    
    .blog-meta {
      display: flex;
      gap: 1rem;
      font-size: 0.75rem;
      color: var(--gray-400);
      margin-bottom: 1rem;
    }
    
    .read-more {
      color: var(--accent-teal);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    
    .read-more:hover {
      gap: 10px;
    }
    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 3rem;
    }
    
    .page-link {
      padding: 8px 14px;
      background: var(--gray-100);
      border-radius: 8px;
      color: var(--gray-600);
      text-decoration: none;
      transition: all 0.2s;
    }
    
    .page-link.active, .page-link:hover {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      color: var(--primary-deep);
    }
    
    .quick-tips {
      padding: 60px 0;
      background: var(--gray-50);
    }
    
    .tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    
    .tip-card {
      background: var(--white);
      padding: 1.5rem;
      border-radius: var(--radius-xl);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    
    .tip-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
    
    .tip-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    
    .tip-icon i {
      font-size: 1.8rem;
      color: var(--primary-deep);
    }
    
    .tip-card h4 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    
    .tip-card p {
      color: var(--gray-500);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    
    .tip-link {
      color: var(--accent-teal);
      text-decoration: none;
      font-weight: 500;
    }
    
    .teaser-section {
      padding: 60px 0;
    }
    
    .teaser-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin: 2rem 0;
    }
    
    .teaser-item {
      background: var(--gray-50);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .teaser-item:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, var(--accent-teal)10, var(--accent-purple)10);
    }
    
    .teaser-item i {
      font-size: 2rem;
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }
    
    .teaser-item h4 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }
    
    .teaser-item p {
      font-size: 0.75rem;
      color: var(--gray-500);
    }
    
    .teaser-cta {
      text-align: center;
      margin-top: 2rem;
    }
    
    .newsletter-section {
      padding: 60px 0;
      background: var(--primary-deep);
    }
    
    .newsletter-box {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      color: white;
    }
    
    .newsletter-icon i {
      font-size: 3rem;
      color: var(--accent-teal);
      margin-bottom: 1rem;
    }
    
    .newsletter-box h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    
    .newsletter-box p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      max-width: 450px;
      margin: 0 auto;
    }
    
    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border-radius: 40px;
      border: none;
      background: rgba(255,255,255,0.1);
      color: white;
    }
    
    .newsletter-form input::placeholder {
      color: rgba(255,255,255,0.5);
    }
    
    .privacy-note {
      font-size: 0.7rem;
      margin-top: 1rem;
      color: rgba(255,255,255,0.5);
    }
    
    .cta-section {
      padding: 60px 0;
    }
    
    @media (max-width: 768px) {
      .featured-post {
        grid-template-columns: 1fr;
      }
      .blog-hero-title {
        font-size: 2rem;
      }
      .posts-grid {
        grid-template-columns: 1fr;
      }
      .newsletter-form {
        flex-direction: column;
      }
    }
    
    /* Trust badge row */
    .trust-badge-row {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    
    .trust-badge-row span {
      background: rgba(255,255,255,0.1);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.8rem;
      color: white;
    }
    
    .hero-badge-wrapper {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    
    .hero-badge {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.85rem;
      color: white;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .hero-badge i {
      color: var(--accent-teal);
    }
    
    .gradient-text {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .hero-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    
    .hero-wave svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 60px;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      color: var(--primary-deep);
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--accent-teal);
      color: var(--accent-teal);
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .btn-outline-light {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-large {
      padding: 14px 36px;
      font-size: 1rem;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-tag {
      display: inline-block;
      background: rgba(0,229,255,0.1);
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.8rem;
      color: var(--accent-teal);
      margin-bottom: 1rem;
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .section-description {
      color: var(--gray-500);
      max-width: 700px;
      margin: 0 auto;
    }
    
    .breadcrumb {
      margin-bottom: 1rem;
      font-size: 0.85rem;
    }
    
    .breadcrumb a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
    }
    
    .breadcrumb span {
      color: rgba(255,255,255,0.5);
    }

    /* Blog Page Specific Styles */
    .blog-hero {
      background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-navy) 100%);
      padding: 120px 0 60px;
      position: relative;
      overflow: hidden;
    }
    
    .blog-hero-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }
    
    .blog-hero-title {
      font-size: 3rem;
      margin-bottom: 20px;
      color: white;
    }
    
    .blog-hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.8);
      max-width: 800px;
      margin: 0 auto 30px;
    }
    
    .blog-search-container {
      max-width: 500px;
      margin: 30px auto;
    }
    
    .blog-search-container form {
      display: flex;
      background: rgba(255,255,255,0.1);
      border-radius: 60px;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }
    
    .blog-search-container input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 14px 20px;
      color: white;
      font-size: 0.95rem;
    }
    
    .blog-search-container input::placeholder {
      color: rgba(255,255,255,0.6);
    }
    
    .blog-search-container button {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      border: none;
      padding: 0 25px;
      color: var(--primary-deep);
      font-weight: 600;
      cursor: pointer;
    }
    
    .blog-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 30px 0;
      flex-wrap: wrap;
    }
    
    .blog-stats .stat-item {
      text-align: center;
    }
    
    .blog-stats .stat-number {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent-teal);
      display: block;
    }
    
    .blog-stats .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
    }
    
    .blog-categories {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.8rem;
      margin: 2rem 0;
    }
    
    .category-btn {
      background: var(--gray-100);
      border: none;
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--gray-600);
    }
    
    .category-btn.active, .category-btn:hover {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      color: var(--primary-deep);
    }
    
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      border: 1px solid var(--gray-100);
    }
    
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
      border-color: var(--accent-teal);
    }
    
    .blog-card-image {
      background: linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .blog-card-image i {
      font-size: 3rem;
      color: rgba(255,255,255,0.8);
    }
    
    .card-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0,0,0,0.6);
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      color: white;
    }
    
    .blog-card-content {
      padding: 1.5rem;
    }
    
    .blog-category {
      display: inline-block;
      background: rgba(0,229,255,0.1);
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      color: var(--accent-teal);
      margin-bottom: 0.8rem;
    }
    
    .blog-title {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      line-height: 1.4;
    }
    
    .blog-title a {
      color: var(--primary-deep);
      text-decoration: none;
      transition: color 0.2s;
    }
    
    .blog-title a:hover {
      color: var(--accent-teal);
    }
    
    .blog-excerpt {
      color: var(--gray-500);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-bottom: 1rem;
    }
    
    .blog-meta {
      display: flex;
      gap: 1rem;
      font-size: 0.75rem;
      color: var(--gray-400);
      margin-bottom: 1rem;
    }
    
    .read-more {
      color: var(--accent-teal);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    
    .read-more:hover {
      gap: 10px;
    }
    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 3rem;
    }
    
    .page-link {
      padding: 8px 14px;
      background: var(--gray-100);
      border-radius: 8px;
      color: var(--gray-600);
      text-decoration: none;
      transition: all 0.2s;
    }
    
    .page-link.active, .page-link:hover {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      color: var(--primary-deep);
    }
    
    .page-link.disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .reseller-highlight {
      padding: 60px 0;
      background: var(--gray-50);
    }
    
    .highlight-box {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2rem;
      background: linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
      border-radius: var(--radius-2xl);
      padding: 2rem;
      align-items: center;
    }
    
    .highlight-icon {
      width: 100px;
      height: 100px;
      background: rgba(0,229,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .highlight-icon i {
      font-size: 3rem;
      color: var(--accent-teal);
    }
    
    .highlight-tag {
      display: inline-block;
      background: rgba(0,229,255,0.2);
      padding: 4px 12px;
      border-radius: 30px;
      font-size: 0.7rem;
      color: var(--accent-teal);
      margin-bottom: 0.5rem;
    }
    
    .highlight-content h3 {
      font-size: 1.5rem;
      color: white;
      margin-bottom: 0.5rem;
    }
    
    .highlight-content p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 1rem;
    }
    
    .highlight-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .highlight-features span {
      color: rgba(255,255,255,0.8);
      font-size: 0.85rem;
    }
    
    .highlight-features span i {
      color: var(--accent-teal);
      margin-right: 5px;
    }
    
    .highlight-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .quick-tips {
      padding: 60px 0;
      background: var(--gray-50);
    }
    
    .tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    
    .tip-card {
      background: var(--white);
      padding: 1.5rem;
      border-radius: var(--radius-xl);
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    
    .tip-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
    
    .tip-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    
    .tip-icon i {
      font-size: 1.8rem;
      color: var(--primary-deep);
    }
    
    .tip-card h4 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    
    .tip-card p {
      color: var(--gray-500);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    
    .tip-link {
      color: var(--accent-teal);
      text-decoration: none;
      font-weight: 500;
    }
    
    .newsletter-section {
      padding: 60px 0;
      background: var(--primary-deep);
    }
    
    .newsletter-box {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      color: white;
    }
    
    .newsletter-icon i {
      font-size: 3rem;
      color: var(--accent-teal);
      margin-bottom: 1rem;
    }
    
    .newsletter-box h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    
    .newsletter-box p {
      color: rgba(255,255,255,0.8);
      margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      max-width: 450px;
      margin: 0 auto;
    }
    
    .newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border-radius: 40px;
      border: none;
      background: rgba(255,255,255,0.1);
      color: white;
    }
    
    .newsletter-form input::placeholder {
      color: rgba(255,255,255,0.5);
    }
    
    .privacy-note {
      font-size: 0.7rem;
      margin-top: 1rem;
      color: rgba(255,255,255,0.5);
    }
    
    .cta-section {
      padding: 60px 0;
    }
    
    .cta-banner {
      background: linear-gradient(135deg, #0A1128, #0F1A3A);
      border-radius: 30px;
      padding: 40px;
      text-align: center;
    }
    
    .cta-actions {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    
    .cta-trust {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    
    .cta-trust span {
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      color: var(--primary-deep);
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--accent-teal);
      color: var(--accent-teal);
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-outline-light {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-large {
      padding: 14px 36px;
      font-size: 1rem;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-tag {
      display: inline-block;
      background: rgba(0,229,255,0.1);
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.8rem;
      color: var(--accent-teal);
      margin-bottom: 1rem;
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    
    .section-description {
      color: var(--gray-500);
      max-width: 700px;
      margin: 0 auto;
    }
    
    .gradient-text {
      background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .hero-badge-wrapper {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }
    
    .hero-badge {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.85rem;
      color: white;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .hero-badge i {
      color: var(--accent-teal);
    }
    
    .breadcrumb {
      margin-bottom: 1rem;
      font-size: 0.85rem;
    }
    
    .breadcrumb a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
    }
    
    .breadcrumb span {
      color: rgba(255,255,255,0.5);
    }
    
    .hero-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    
    .hero-wave svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 60px;
    }
    
    @media (max-width: 768px) {
      .blog-hero-title {
        font-size: 2rem;
      }
      .posts-grid {
        grid-template-columns: 1fr;
      }
      .highlight-box {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .highlight-features {
        justify-content: center;
      }
      .highlight-actions {
        justify-content: center;
      }
      .newsletter-form {
        flex-direction: column;
      }
    }

    /* ========== CHANNELS PAGE SPECIFIC STYLES ========== */
        
       
        
        /* Search Section */
        .channel-search-section {
            padding: 40px 0;
            background: #FFFFFF;
            border-bottom: 1px solid #E2E8F0;
            position: relative;
            z-index: 20;
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
        }
        
        .search-container i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #00C9B7;
            font-size: 1.2rem;
            z-index: 2;
            pointer-events: none;
        }
        
        .search-container input {
            width: 100%;
            padding: 16px 20px 16px 50px;
            background: #FFFFFF;
            border: 2px solid #E2E8F0;
            border-radius: 60px;
            color: #0B1A33;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .search-container input:focus {
            outline: none;
            border-color: #00C9B7;
            box-shadow: 0 0 0 4px rgba(0, 201, 183, 0.1);
        }
        
        .search-container input::placeholder {
            color: #94A3B8;
        }
        
        /* Category Filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        
        .filter-btn {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            color: #475569;
            padding: 10px 24px;
            border-radius: 60px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .filter-btn:hover {
            background: rgba(0, 201, 183, 0.08);
            color: #00C9B7;
            border-color: #00C9B7;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
            color: #FFFFFF;
            border-color: transparent;
            box-shadow: 0 8px 24px rgba(0, 201, 183, 0.25);
            background-size: 200% 200%;
            animation: gradient-shift 4s ease infinite;
        }
        
        /* Channel Grid Section */
        .channel-grid-section {
            padding: 60px 0;
            background: #F8FAFC;
        }
        
        .channels-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        /* Channel Category */
        .channel-category {
            background: #FFFFFF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #E2E8F0;
        }
        
        .channel-category:hover {
            box-shadow: 0 20px 35px rgba(0, 201, 183, 0.15);
            border-color: #00C9B7;
            transform: translateY(-2px);
        }
        
        .category-header {
            padding: 18px 25px;
            background: linear-gradient(135deg, #FFFFFF, #F8FAFC);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #E2E8F0;
            transition: all 0.3s ease;
        }
        
        .category-header:hover {
            background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
        }
        
        .category-header h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.3rem;
            font-weight: 700;
            color: #0B1A33;
            margin: 0;
        }
        
        .category-header h3 i {
            font-size: 1.5rem;
            background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .channel-count {
            background: linear-gradient(135deg, #00C9B7, #9D4EDD);
            color: #FFFFFF;
            padding: 4px 12px;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 12px;
        }
        
        .toggle-icon i {
            font-size: 1.2rem;
            color: #00C9B7;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .channel-category.collapsed .toggle-icon i {
            transform: rotate(180deg);
        }
        
        .channel-category.collapsed .category-content {
            display: none;
        }
        
        .category-content {
            padding: 25px;
            background: #FFFFFF;
        }
        
        .channel-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .channel-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            background: #F8FAFC;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #334155;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .channel-item i {
            color: #00C9B7;
            font-size: 0.9rem;
            width: 18px;
        }
        
        .channel-item:hover {
            background: linear-gradient(135deg, #F0F9FF, #FFFFFF);
            border-color: #00C9B7;
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0, 201, 183, 0.15);
        }
        
        /* Channel Quality Badge */
        .channel-quality {
            font-size: 0.7rem;
            background: linear-gradient(135deg, #00C9B7, #9D4EDD);
            color: #FFFFFF;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: auto;
        }
        
        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: #FFFFFF;
            border-radius: 20px;
            border: 1px solid #E2E8F0;
            margin-top: 30px;
        }
        
        .no-results i {
            font-size: 4rem;
            color: #CBD5E1;
            margin-bottom: 20px;
        }
        
        .no-results h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #0B1A33;
        }
        
        .no-results p {
            color: #64748B;
            margin-bottom: 25px;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid #00C9B7;
            color: #00C9B7;
            padding: 12px 30px;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .btn-outline:hover {
            background: #00C9B7;
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 201, 183, 0.3);
        }
        
        /* SEO Text Section */
        .seo-text {
            padding: 60px 0;
            background: #FFFFFF;
            border-top: 1px solid #E2E8F0;
        }
        
        .seo-text h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #0B1A33;
            text-align: center;
        }
        
        .seo-text p {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: #475569;
            line-height: 1.8;
        }
        
        .seo-text strong {
            background: linear-gradient(135deg, #00C9B7, #9D4EDD);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(145deg, #0A1929, #132F4C);
            color: #FFFFFF;
        }
        
        .cta-wrapper {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-wrapper h2 {
            font-size: 2.5rem;
            color: #FFFFFF;
            margin-bottom: 15px;
        }
        
        .cta-wrapper p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
            color: #FFFFFF;
            padding: 14px 35px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 25px rgba(0, 201, 183, 0.3);
            background-size: 200% 200%;
            animation: gradient-shift 8s ease infinite;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 35px rgba(0, 201, 183, 0.4);
        }
        
        .btn-outline-light {
            background: transparent;
            border: 2px solid #FFFFFF;
            color: #FFFFFF;
            padding: 14px 35px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-outline-light:hover {
            background: #FFFFFF;
            color: #0B1A33;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 20px 35px rgba(255, 255, 255, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .channel-hero {
                padding: 100px 0 60px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .channel-stats {
                gap: 15px;
            }
            
            .channel-stats .stat-item {
                padding: 10px 15px;
                min-width: 90px;
            }
            
            .channel-stats .stat-number {
                font-size: 1.5rem;
            }
            
            .category-header {
                padding: 15px 20px;
            }
            
            .category-header h3 {
                font-size: 1.1rem;
            }
            
            .category-content {
                padding: 20px;
            }
            
            .channel-list {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .channel-item {
                font-size: 0.9rem;
                padding: 6px 10px;
            }
            
            .cta-wrapper h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            
            .channel-list {
                grid-template-columns: 1fr;
            }
            
            .cta-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-primary, .btn-outline-light {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Animations */
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes slide-in-up {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Device icons for categories */
        .device-badges {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .device-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
            color: #64748B;
        }
        
        .device-badge i {
            font-size: 1.5rem;
            background: linear-gradient(135deg, #00C9B7, #9D4EDD);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ========== SEO TEXT SECTION - ENHANCED STYLING ========== */
.seo-text {
    padding: 80px 0;
    background: linear-gradient(145deg, #FFFFFF, #F8FAFC, #F1F5F9);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 201, 183, 0.1);
    border-bottom: 1px solid rgba(0, 201, 183, 0.1);
}

/* Animated background gradient */
.seo-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 201, 183, 0.03) 0%, transparent 50%);
    animation: rotate-slow 30s linear infinite;
    pointer-events: none;
}

.seo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.seo-text .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.seo-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: #0B1A33;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.seo-text h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C9B7, #9D4EDD, #FF6B9D);
    border-radius: 60px;
    animation: width-pulse 3s ease infinite;
}

.seo-text h2::after {
    content: '✨';
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 4s ease infinite;
}

.seo-text h2 .gradient-text {
    background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.seo-text h2 .highlight {
    background: linear-gradient(135deg, #FFB347, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.seo-text h2 .highlight::after {
    content: '2026';
    position: absolute;
    top: -5px;
    right: -25px;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #FFB347, #FF6B9D);
    color: #FFFFFF;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 600;
    -webkit-text-fill-color: white;
}

.seo-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 25px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 201, 183, 0.1);
}

.seo-text p:first-of-type {
    margin-top: 30px;
}

.seo-text p strong {
    background: linear-gradient(135deg, #00C9B7, #9D4EDD);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.seo-text p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00C9B7, #9D4EDD);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.seo-text p:hover strong::after {
    transform: scaleX(1);
}

/* Stats highlight within text */
.seo-text .stat-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #0B1A33, #1A2F4F);
    color: #FFFFFF;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 3px;
    border: 1px solid rgba(0, 201, 183, 0.3);
}

/* Country tags */
.seo-text .country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.seo-text .country-tag {
    background: rgba(0, 201, 183, 0.1);
    border: 1px solid rgba(0, 201, 183, 0.2);
    color: #0B1A33;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.seo-text .country-tag:hover {
    background: linear-gradient(135deg, #00C9B7, #9D4EDD);
    color: #FFFFFF;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 201, 183, 0.3);
}

/* Channel category badges */
.seo-text .category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
}

.seo-text .category-badge {
    background: linear-gradient(135deg, #0B1A33, #1A2F4F);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-text .category-badge i {
    color: #00C9B7;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.seo-text .category-badge:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    box-shadow: 0 10px 25px rgba(0, 201, 183, 0.3);
}

.seo-text .category-badge:hover i {
    color: #FFFFFF;
    transform: rotate(360deg);
}

/* Second paragraph special styling */
.seo-text p:last-of-type {
    background: linear-gradient(145deg, #0B1A33, #132F4C);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 201, 183, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.seo-text p:last-of-type::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 201, 183, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.seo-text p:last-of-type strong {
    background: linear-gradient(135deg, #FFB347, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-text p:last-of-type strong::after {
    background: linear-gradient(90deg, #FFB347, #FF6B9D);
}

/* Decorative elements */
.seo-text .decor-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00C9B7, #9D4EDD, #FF6B9D, transparent);
    margin: 30px 0;
}

.seo-text .floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    pointer-events: none;
}

.seo-text .floating-icon-1 {
    top: 50px;
    left: 50px;
    animation: float 6s ease infinite;
}

.seo-text .floating-icon-2 {
    bottom: 50px;
    right: 50px;
    animation: float-slow 8s ease infinite;
}

.seo-text .floating-icon-3 {
    top: 30%;
    right: 10%;
    animation: rotate-slow 15s linear infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .seo-text {
        padding: 50px 0;
    }
    
    .seo-text h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .seo-text h2::after {
        right: -10px;
        top: -15px;
        font-size: 1.5rem;
    }
    
    .seo-text p {
        font-size: 1rem;
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .seo-text .category-badge {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .seo-text .country-tag {
        padding: 4px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .seo-text h2 {
        font-size: 1.5rem;
    }
    
    .seo-text p {
        padding: 15px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .seo-text .category-badges {
        gap: 8px;
    }
    
    .seo-text .category-badge {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
    
    .seo-text .country-tags {
        gap: 6px;
    }
    
    .seo-text .country-tag {
        padding: 3px 10px;
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@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 rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes width-pulse {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

/* The Animation */
@keyframes brightWhiteGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
}

/* The Ultimate Override Class */
.animated-8k-text {
    /* 1. Force the color to white */
    color: #ffffff !important; 
    
    /* 2. KILL THEME OVERRIDES (This is usually what blocks it!) */
    -webkit-text-fill-color: #ffffff !important; 
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    opacity: 1 !important;
    
    /* 3. Make it bold and glowing */
    font-weight: 800 !important;
    animation: brightWhiteGlow 2.5s ease-in-out infinite !important;
    
    /* Optional: Slightly increase size so it matches the hierarchy */
    font-size: 1.2em; 
}

/* ========== CHANNELS PAGE SPECIFIC STYLES ========== */

/* ========== 4K VS 8K IPTV COMPARISON PAGE - CUSTOM STYLES ========== */
/* These styles extend the existing style.css for the comparison guide */

/* ========== QUICK TIPS CARDS ========== */
.quick-tips .tip-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.quick-tips .tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quick-tips .tip-card .tip-icon {
  transition: transform 0.3s ease;
}

.quick-tips .tip-card:hover .tip-icon {
  transform: scale(1.05);
}

/* ========== FEATURED POST SECTION (HEAD TO HEAD) ========== */
.featured-post-section .featured-post {
  position: relative;
  overflow: hidden;
}

.featured-post-section .featured-post::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,201,183,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.featured-post-section .featured-category {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Resolution Cards */
.resolution-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resolution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ========== PROGRESS BARS ========== */
.progress-bar {
  background: #e0e0e0;
  border-radius: 30px;
  height: 8px;
  overflow: hidden;
}

.progress-fill {
  border-radius: 30px;
  transition: width 0.5s ease;
}

/* ========== ALERT BOXES ========== */
.alert-box {
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.alert-box i {
  font-size: 24px;
  flex-shrink: 0;
}

.alert-box.alert-info {
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
}

.alert-box.alert-success {
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
}

.alert-box.alert-warning {
  background: #fff3e0;
  border-left: 4px solid #f57c00;
}

.alert-box.alert-danger {
  background: #ffebee;
  border-left: 4px solid #c62828;
}

/* ========== TIP BOX ========== */
.tip-box {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(0,201,183,0.08);
  border-radius: 16px;
  border: 1px solid rgba(0,201,183,0.2);
  align-items: flex-start;
}

.tip-box i {
  font-size: 28px;
  color: #FFB347;
  flex-shrink: 0;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  background: #0A1128;
  color: #fff;
  padding: 15px;
  font-weight: 600;
  text-align: center;
}

.comparison-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-name {
  text-align: left;
  font-weight: 600;
}

.comparison-table .check {
  color: #2e7d32;
  font-weight: 700;
}

.comparison-table .partial {
  color: #f57c00;
  font-weight: 700;
}

.comparison-table .missing {
  color: #c62828;
  font-weight: 700;
}

/* Table row hover effect */
.comparison-table tbody tr:hover {
  background: rgba(0,201,183,0.05);
}

/* ========== BANDWIDTH CALCULATOR ========== */
.bandwidth-calc {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bandwidth-calc h4 {
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-item {
  margin-bottom: 20px;
}

.calc-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.calc-item input,
.calc-item select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.calc-item input:focus,
.calc-item select:focus {
  outline: none;
  border-color: #00C9B7;
}

/* ========== DEVICE CHECKER QUIZ ========== */
.device-checker {
  background: linear-gradient(145deg, #0A1128, #132F4C);
  border-radius: 30px;
  padding: 40px;
  color: #fff;
}

.checker-header {
  text-align: center;
  margin-bottom: 30px;
}

.checker-tag {
  display: inline-block;
  background: rgba(0,201,183,0.2);
  color: #00C9B7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.checker-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.checker-header p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.checker-question {
  margin-bottom: 25px;
}

.checker-question h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.checker-choices {
  display: grid;
  gap: 12px;
}

.checker-choice {
  cursor: pointer;
}

.checker-choice input[type="radio"] {
  display: none;
}

.choice-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.checker-choice input[type="radio"]:checked + .choice-content {
  border-color: #00C9B7;
  background: rgba(0,201,183,0.15);
}

.choice-content:hover {
  border-color: rgba(0,201,183,0.5);
  background: rgba(255,255,255,0.12);
}

.choice-content i {
  font-size: 18px;
  color: #00C9B7;
  width: 24px;
}

.checker-submit {
  width: 100%;
  margin-top: 15px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
}

.checker-result {
  margin-top: 30px;
  padding: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  text-align: center;
}

.checker-result i {
  font-size: 48px;
  color: #FFB347;
  margin-bottom: 15px;
}

.checker-result h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

#deviceResultEnhanced h3 {
  font-size: 28px;
  margin: 15px 0;
}

/* ========== SPORTS CARDS ========== */
.sport-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.rating-stars {
  color: #FFB347;
  font-size: 14px;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 13px;
  color: #666;
}

/* ========== FAQ SECTION ========== */
.faq-item {
  margin-bottom: 15px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #0A1128;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
}

.faq-question .arrow i {
  color: #00C9B7;
  font-size: 14px;
}


/* ========== CTA BANNER ========== */
.cta-section .cta-banner {
  background: linear-gradient(135deg, rgba(0,201,183,0.12), rgba(157,78,221,0.12));
  border-radius: 40px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-section .cta-banner h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.cta-section .cta-banner p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.cta-trust i {
  color: #00C9B7;
  font-size: 14px;
}

/* ========== VIEWING DISTANCE TABLE ========== */
.viewing-distance-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.viewing-distance-table th {
  background: #0A1128;
  color: #fff;
  padding: 12px;
  font-size: 13px;
}

.viewing-distance-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e9ecef;
  font-size: 13px;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .featured-post-section .featured-post {
    padding: 20px !important;
  }
  
  .featured-post-section [style*="display: flex; flex-wrap: wrap; gap: 30px;"] {
    flex-direction: column;
  }
  
  .bandwidth-calc {
    padding: 20px;
  }
  
  .bandwidth-calc h4 {
    font-size: 18px;
  }
  
  .device-checker {
    padding: 25px 20px;
  }
  
  .checker-header h2 {
    font-size: 22px;
  }
  
  .choice-content {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .cta-section .cta-banner {
    padding: 30px 20px;
  }
  
  .cta-section .cta-banner h2 {
    font-size: 24px;
  }
  
  .cta-actions .btn-large {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .faq-question {
    padding: 14px 18px;
    font-size: 14px;
  }
  
  .faq-answer {
    padding: 0 18px 18px 18px;
    font-size: 13px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  
  .alert-box {
    padding: 15px;
  }
  
  .alert-box i {
    font-size: 20px;
  }
  
  .tip-box {
    padding: 15px;
  }
  
  .tip-box i {
    font-size: 22px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .featured-post-section [style*="display: flex; flex-wrap: wrap; gap: 30px;"] {
    gap: 20px;
  }
  
  .cta-section .cta-banner h2 {
    font-size: 30px;
  }
}

/* ========== DARK MODE SUPPORT ========== */
@media (prefers-color-scheme: dark) {
  .bandwidth-calc {
    background: #1e293b;
  }
  
  .bandwidth-calc h4 {
    color: #fff;
  }
  
  .calc-item label {
    color: #e0e0e0;
  }
  
  .calc-item input,
  .calc-item select {
    background: #2d3a4f;
    border-color: #3d4a5f;
    color: #fff;
  }
  
  .faq-item {
    background: #1e293b;
  }
  
  .faq-question {
    background: #1e293b;
    color: #fff;
  }
  
  .faq-question:hover {
    background: #2d3a4f;
  }
  
  .faq-answer {
    background: #162030;
    color: #adb5bd;
    border-top-color: #2d3a4f;
  }
  
  .comparison-table td {
    border-bottom-color: #2d3a4f;
  }
  
  .comparison-table tbody tr:hover {
    background: rgba(0,201,183,0.08);
  }
  
  .rating-text {
    color: #adb5bd;
  }
  
  .quick-tips .tip-card {
    background: #1e293b;
    border-color: #2d3a4f;
  }
  
  .quick-tips .tip-card p {
    color: #adb5bd;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quick-tips .tip-card,
.featured-post-section,
.blog-card,
.device-checker {
  animation: fadeInUp 0.6s ease forwards;
}

.quick-tips .tip-card:nth-child(1) { animation-delay: 0.1s; }
.quick-tips .tip-card:nth-child(2) { animation-delay: 0.2s; }
.quick-tips .tip-card:nth-child(3) { animation-delay: 0.3s; }

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CUSTOM CHECKBOX/RADIO STYLES ========== */
.custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.custom-radio:hover {
  background: #e9ecef;
}

.custom-radio input {
  display: none;
}

.custom-radio .radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #00C9B7;
  position: relative;
}

.custom-radio input:checked + .radio-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00C9B7;
}

/* ========== PRINT STYLES ========== */
@media print {
  .cta-section,
  .device-checker,
  .bandwidth-calc,
  .sticky-header,
  .sticky-mobile-cta,
  .whatsapp-float,
  .back-to-top,
  .footer {
    display: none !important;
  }
  
  .comparison-table-wrapper,
  .featured-post,
  .blog-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .alert-box,
  .tip-box {
    border: 1px solid #ddd;
    background: #f8f9fa;
  }
}

.comparison-grid-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* 4K Card Styles */
.comparison-card-4k,
.comparison-card-8k {
  flex: 1;
  min-width: 320px;
  max-width: 450px;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card-4k:hover,
.comparison-card-8k:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* 4K Card Specific */
.comparison-card-4k {
  border: 1px solid rgba(77, 159, 255, 0.3);
}

.comparison-card-4k .card-header {
  background: linear-gradient(135deg, #0A1128, #1a3a6e);
  padding: 30px 25px;
  text-align: center;
  position: relative;
}

/* 8K Card Specific */
.comparison-card-8k {
  border: 1px solid rgba(0, 201, 183, 0.3);
}

.comparison-card-8k .card-header {
  background: linear-gradient(135deg, #0A1128, #1a6b5e);
  padding: 30px 25px;
  text-align: center;
  position: relative;
}

/* Card Icon */
.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 40px;
}

.comparison-card-4k .card-icon {
  background: rgba(77, 159, 255, 0.2);
  color: #4D9FFF;
}

.comparison-card-8k .card-icon {
  background: rgba(0, 201, 183, 0.2);
  color: #00C9B7;
}

/* Card Title */
.card-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.comparison-card-4k .card-title {
  color: #4D9FFF;
}

.comparison-card-8k .card-title {
  color: #00C9B7;
}

/* Card Badge */
.card-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-card-4k .card-badge {
  background: rgba(77, 159, 255, 0.2);
  color: #4D9FFF;
}

.comparison-card-8k .card-badge {
  background: rgba(0, 201, 183, 0.2);
  color: #00C9B7;
}

/* Card Body */
.card-body {
  padding: 25px;
  background: #fff;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  width: 38%;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.spec-label i {
  width: 20px;
  color: #00C9B7;
  margin-right: 8px;
}

.spec-value {
  width: 62%;
  font-weight: 500;
  color: #1a1a2e;
  font-size: 14px;
}

.spec-sub {
  font-size: 12px;
  color: #888;
  margin-left: 5px;
}

.highlight {
  color: #f57c00;
  font-weight: 600;
}

/* Card Footer */
.card-footer {
  padding: 20px 25px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pros-cons .pros,
.pros-cons .cons {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-cons .pros {
  color: #2e7d32;
}

.pros-cons .cons {
  color: #c62828;
}

.pros-cons i {
  font-size: 12px;
}

/* VS Divider */
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vs-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00C9B7, #9D4EDD);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.vs-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, #00C9B7, #9D4EDD);
}

/* Key Takeaways Section */
.key-takeaways {
  margin: 50px 0 30px;
  background: rgba(0, 201, 183, 0.05);
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(0, 201, 183, 0.1);
}

.takeaways-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 201, 183, 0.3);
}

.takeaways-header i {
  font-size: 28px;
  color: #00C9B7;
}

.takeaways-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #0A1128;
}

.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.takeaway-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.takeaway-item > i {
  font-size: 24px;
  color: #00C9B7;
  flex-shrink: 0;
  margin-top: 3px;
}

.takeaway-content strong {
  display: block;
  margin-bottom: 5px;
  color: #0A1128;
  font-size: 15px;
}

.takeaway-content p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 14px;
}

/* Expert Take Box */
.expert-take-box {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, #0A1128, #132F4C);
  border-radius: 24px;
  padding: 30px;
  margin-top: 30px;
  align-items: flex-start;
}

.expert-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 179, 71, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-icon i {
  font-size: 32px;
  color: #FFB347;
}

.expert-content {
  flex: 1;
}

.expert-label {
  display: inline-block;
  background: rgba(255, 179, 71, 0.2);
  color: #FFB347;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.expert-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
  .comparison-grid-container {
    flex-direction: column;
    align-items: center;
  }
  
  .comparison-card-4k,
  .comparison-card-8k {
    max-width: 500px;
    width: 100%;
  }
  
  .vs-divider {
    flex-direction: row;
    gap: 20px;
    margin: 10px 0;
  }
  
  .vs-line {
    width: 80px;
    height: 2px;
  }
  
  .takeaways-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .comparison-card-4k,
  .comparison-card-8k {
    min-width: auto;
  }
  
  .card-title {
    font-size: 24px;
  }
  
  .spec-row {
    flex-direction: column;
    gap: 5px;
  }
  
  .spec-label {
    width: 100%;
  }
  
  .spec-value {
    width: 100%;
  }
  
  .takeaways-header h4 {
    font-size: 18px;
  }
  
  .expert-take-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .expert-content p {
    font-size: 14px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .comparison-card-4k,
  .comparison-card-8k {
    min-width: 300px;
  }
  
  .spec-label {
    width: 45%;
  }
  
  .spec-value {
    width: 55%;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .comparison-card-4k,
  .comparison-card-8k {
    background: #1e293b;
  }
  
  .card-body {
    background: #1e293b;
  }
  
  .spec-label {
    color: #e0e0e0;
  }
  
  .spec-value {
    color: #ccc;
  }
  
  .spec-row {
    border-bottom-color: #2d3a4f;
  }
  
  .card-footer {
    background: #162030;
    border-top-color: #2d3a4f;
  }
  
  .takeaways-header h4 {
    color: #fff;
  }
  
  .takeaway-content strong {
    color: #fff;
  }
  
  .takeaway-content p {
    color: #adb5bd;
  }
  
  .key-takeaways {
    background: rgba(0, 201, 183, 0.08);
  }
}

/* ==========================================================================
   TIMEZONE FIX SECTION STYLES
   ========================================================================== */

.timezone-section {
  padding: 60px 20px;
  background-color: #f8f9fa; /* Light background to make the dark card pop */
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.timezone-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0A1128, #132F4C);
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
  border: 2px solid #4D9FFF;
  box-shadow: 0 15px 35px rgba(10, 17, 40, 0.15);
}

.timezone-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.timezone-icon {
  font-size: 28px;
  color: #4D9FFF;
  margin-right: 15px;
}

.timezone-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.timezone-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

.timezone-description strong {
  color: #4D9FFF;
}

.timezone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.app-card {
  flex: 1;
  min-width: 280px; /* Ensures they stack on mobile */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.app-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.app-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  color: #4D9FFF;
}

.app-steps {
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.app-steps li {
  margin-bottom: 8px;
}

.app-steps li:last-child {
  margin-bottom: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .timezone-card {
    padding: 30px 20px;
  }
  
  .timezone-title {
    font-size: 22px;
  }
  
  .timezone-icon {
    font-size: 24px;
  }
}

/* ==========================================================================
   M3U TO XTREAM CONVERT GUIDE STYLES
   ========================================================================== */

.convert-section {
  padding: 60px 20px;
  background: #ffffff;
}

.convert-guide-card {
  background: linear-gradient(145deg, #0A1128, #132F4C);
  border-radius: 24px;
  /* Use clamp for responsive padding: 20px on mobile, up to 40px on desktop */
  padding: clamp(20px, 5vw, 40px); 
  color: white;
  border: 2px solid #9D4EDD;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(10,17,40,0.15);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden; /* Prevents edge overflow */
}

.convert-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px; /* Replaces margin-right for better flex behavior */
}

.convert-icon {
  font-size: clamp(24px, 4vw, 32px);
  color: #9D4EDD;
  flex-shrink: 0; /* Prevents icon from squishing on tiny screens */
}

.convert-title {
  font-size: clamp(20px, 4vw, 28px);
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.convert-description {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 25px;
}

.convert-inner-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: clamp(15px, 4vw, 25px);
  box-sizing: border-box;
}

.convert-subtitle {
  margin-top: 0;
  color: #9D4EDD;
  margin-bottom: 15px;
  font-size: 16px;
}

.convert-instruction {
  margin-top: 0;
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Fixes the horizontal overflow issue */
.convert-code-box {
  background: #000;
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  font-size: clamp(12px, 3vw, 14px);
  color: #aaa;
  margin-bottom: 20px;
  /* These 3 properties guarantee it wraps and never breaks layout */
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap; 
}

.convert-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
}

.convert-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.convert-list li.no-border {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mono-text {
  font-family: monospace;
  word-break: break-word;
  display: block;
  margin-top: 4px;
}

/* Color Helpers */
.code-url { color: #4D9FFF; }
.code-user { color: #00C9B7; }
.code-pass { color: #FFB347; }

.convert-footer {
  text-align: center;
  margin-top: 30px;
}

.convert-footer p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Mobile specific tweaks */
@media (max-width: 480px) {
  .convert-header {
    align-items: flex-start; /* Aligns to top if text wraps to 3 lines */
  }
}

/* ==========================================================================
   CRITICAL WARNING SECTION STYLES
   ========================================================================== */

.critical-warning-section {
  background: #f8f9fa;
  /* Responsive padding: smaller on mobile, 60px on desktop */
  padding: clamp(40px, 8vw, 60px) 20px; 
}

.warning-alert-box {
  background: linear-gradient(145deg, #2b0000, #e53935);
  border-radius: 24px;
  /* Fluid padding prevents the box from cramping text on mobile */
  padding: clamp(20px, 5vw, 40px); 
  color: white;
  border: 2px solid #ff5252;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(229, 57, 53, 0.15);
  box-sizing: border-box; /* Crucial to prevent horizontal overflow */
  width: 100%;
}

.warning-header {
  display: flex;
  align-items: flex-start; /* Aligns icon to top if title wraps on mobile */
  margin-bottom: 20px;
  gap: 15px; /* Replaces margin-right for better mobile flow */
}

.warning-icon {
  font-size: clamp(24px, 6vw, 32px);
  color: #ff5252;
  flex-shrink: 0; /* Prevents the icon from getting squished on narrow screens */
  margin-top: 3px; /* Optical alignment with the text */
}

.warning-title {
  font-size: clamp(20px, 5vw, 28px);
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.warning-text {
  font-size: clamp(15px, 4vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 20px;
}

.warning-solution-box {
  background: rgba(0, 0, 0, 0.3);
  padding: clamp(15px, 4vw, 20px);
  border-radius: 12px;
}

.solution-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: #ff5252;
  font-size: clamp(18px, 4vw, 20px);
}

.solution-text {
  margin-bottom: 0;
  font-size: clamp(14px, 3.5vw, 15px);
  color: #ddd;
  line-height: 1.6;
}

/* ==========================================================================
   VPN OPTIMIZATION SECTION STYLES
   ========================================================================== */

.vpn-optimize-section {
  padding: clamp(40px, 8vw, 60px) 20px;
  background: #f8f9fa;
}

.vpn-optimize-card {
  background: linear-gradient(145deg, #0A1128, #132F4C);
  border-radius: 24px;
  /* Fluid padding prevents cramping on mobile */
  padding: clamp(20px, 5vw, 40px); 
  color: white;
  border: 2px solid #4D9FFF;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(10, 17, 40, 0.15);
  box-sizing: border-box; /* Crucial to prevent horizontal overflow */
  width: 100%;
}

.vpn-header {
  display: flex;
  align-items: flex-start; /* Keeps icon aligned top if text wraps */
  margin-bottom: 20px;
  gap: 15px; /* Replaces margin-right for cleaner flex spacing */
}

.vpn-icon {
  font-size: clamp(24px, 5vw, 32px);
  color: #4D9FFF;
  flex-shrink: 0; /* Prevents icon from getting squished into an oval on mobile */
  margin-top: 3px; /* Optical alignment with the title */
}

.vpn-title {
  font-size: clamp(22px, 5vw, 28px);
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.vpn-description {
  font-size: clamp(15px, 4vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 25px;
}

.vpn-rules-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(15px, 4vw, 25px);
  box-sizing: border-box;
}

.vpn-rule-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.vpn-rule-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vpn-rule-list li.no-border {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vpn-rule-title {
  color: #00C9B7;
  font-size: clamp(16px, 4vw, 18px);
  display: block;
  margin-bottom: 8px;
}

.footer-seo {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  text-align: justify;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-seo p {
  margin-bottom: 5px;
}
.footer-seo strong {
  color: rgba(255, 255, 255, 0.7);
}
.footer-seo a {
  color: #00C9B7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-seo a:hover {
  color: #4D9FFF;
  text-decoration: underline;
}

/* =========================================================
   UKIPTV INDEX - ADDITIONAL MISSING CSS
   Paste below your current style.css
   ========================================================= */

/* ---------- Header / Mobile Small Fixes ---------- */
.search-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-links .badge,
.mobile-nav-actions .badge {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #0A1128;
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.15);
}

.mobile-nav-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.mobile-nav-contact .contact-item i {
    color: var(--accent-teal);
    width: 18px;
}

.mobile-nav-contact .status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16, 185, 129, 0.12);
}

.mobile-nav-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.mobile-nav-footer p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.mobile-nav-footer i {
    color: var(--accent-teal);
    margin-right: 6px;
}

/* ---------- Back To Top ---------- */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 110px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1128, #132F4C);
    color: #ffffff;
    box-shadow: 0 16px 35px rgba(10, 17, 40, 0.28);
    z-index: 998;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.12);
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.22);
}

.back-to-top i {
    font-size: 1rem;
}

/* ---------- Generic Premium Support Blocks ---------- */
.features-content-grid,
.seo-rich-columns,
.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-content-block,
.seo-rich-card,
.feature-snippet,
.faq-preview-item {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.feature-content-block::before,
.seo-rich-card::before,
.feature-snippet::before,
.faq-preview-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,201,183,0.06), rgba(157,78,221,0.04), rgba(255,107,157,0.06));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-content-block:hover,
.seo-rich-card:hover,
.feature-snippet:hover,
.faq-preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 201, 183, 0.24);
}

.feature-content-block:hover::before,
.seo-rich-card:hover::before,
.feature-snippet:hover::before,
.faq-preview-item:hover::before {
    opacity: 1;
}

.feature-content-block h3,
.seo-rich-card h3,
.feature-snippet-content h2,
.faq-preview-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-deep);
}

.feature-content-block p,
.seo-rich-card p,
.feature-snippet-content p,
.faq-preview-item p {
    color: var(--gray-500);
    line-height: 1.75;
    font-size: 0.96rem;
    margin-bottom: 0;
}

.feature-content-icon,
.seo-card-icon,
.feature-snippet-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: #ffffff;
    background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    box-shadow: 0 16px 30px rgba(0, 201, 183, 0.18);
}

.feature-snippet {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
}

.feature-snippet-icon {
    flex: 0 0 64px;
    margin-bottom: 0;
}

.feature-snippet-content {
    flex: 1;
}

.seo-rich-columns,
.faq-preview-grid {
    margin-top: 38px;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* ---------- Trusted / Extra Blocks ---------- */
.reseller-stats-highlight,
.premium-content-stats,
.testimonials-stats-row,
.feature-trust-badge {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.stat-highlight-item,
.testimonials-stats-row .trust-item,
.feature-trust-badge .trust-item {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.stat-highlight-item:hover,
.testimonials-stats-row .trust-item:hover,
.feature-trust-badge .trust-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 201, 183, 0.22);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1);
}

.stat-highlight-item i,
.testimonials-stats-row .trust-item i,
.feature-trust-badge .trust-item i {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--accent-teal);
}

.stat-highlight-item .stat-value {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 6px;
}

.stat-highlight-item .stat-label,
.testimonials-stats-row .trust-item span,
.feature-trust-badge .trust-item span {
    display: block;
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ---------- Why Choose / Feature Variants ---------- */
.features-grid-three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-choose-extra-content,
.features-extra-content,
.channel-preview-extra,
.pricing-extra-content,
.testimonials-extra-content,
.faq-extra-content,
.cta-extra-content,
.newsletter-extra-content {
    margin-top: 38px;
}

/* ---------- Stats Counter Additions ---------- */
.stats-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px;
}

.stats-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00C9B7, #9D4EDD, #FF6B9D);
    box-shadow: 0 12px 25px rgba(0, 201, 183, 0.18);
    margin-bottom: 18px;
}

.stats-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.stats-description {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    line-height: 1.8;
}

.counter-description {
    margin-top: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.stat-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(0,201,183,0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.stat-counter-item {
    position: relative;
    overflow: hidden;
}

.stat-counter-item:hover .stat-glow {
    opacity: 1;
}

/* ---------- Pricing Section Additions ---------- */
.subscription-plans {
    padding: 90px 0;
    background: linear-gradient(145deg, #f7fbff 0%, #ffffff 100%);
    position: relative;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,0.14);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.subscription-plans .pricing-grid {
    align-items: stretch;
}

.subscription-plans .pricing-card {
    border-radius: 28px;
    padding: 30px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148,163,184,0.14);
}

.subscription-plans .pricing-card.popular {
    transform: scale(1.04);
    border: 1px solid rgba(0,201,183,0.25);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.subscription-plans .pricing-card.popular:hover {
    transform: scale(1.04) translateY(-10px);
}

.price-per-month {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 201, 183, 0.1);
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 0.78rem;
}

.device-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 6px;
    padding: 14px 16px 0;
    border-top: 1px solid rgba(148,163,184,0.12);
}

.device-icons i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,201,183,0.08);
    color: var(--accent-teal);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.device-icons i:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #00C9B7, #9D4EDD);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 201, 183, 0.18);
}

/* ---------- Testimonials Additions ---------- */
.testimonials-stats-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.testimonials-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.testimonials-trust .trust-badge {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148,163,184,0.14);
    color: var(--gray-600);
    font-size: 0.88rem;
    justify-content: center;
    text-align: center;
}

.testimonials-trust .trust-badge i {
    color: var(--accent-teal);
}

/* ---------- FAQ Behavior Fix ---------- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-item.active .faq-answer,
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 320px;
    padding-top: 0;
    padding-bottom: 24px;
}

.faq-item.active .faq-question,
.faq-question[aria-expanded="true"] {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* ---------- CTA Banner Additions ---------- */
.prefooter-cta .section-tag {
    margin-bottom: 16px;
}

.cta-extra-content {
    margin-top: 34px;
}

.cta-extra-content .feature-content-block {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: none;
}

.cta-extra-content .feature-content-block h3,
.cta-extra-content .feature-content-block p {
    color: #ffffff;
}

.cta-extra-content .feature-content-block p {
    color: rgba(255,255,255,0.82);
}

.cta-extra-content .feature-content-icon {
    box-shadow: none;
}

/* ---------- Newsletter ---------- */
.newsletter {
    padding: 88px 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 50%, #f1f7fd 100%);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,201,183,0.08), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(157,78,221,0.08), transparent 35%),
        radial-gradient(circle at 50% 100%, rgba(255,107,157,0.07), transparent 28%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148,163,184,0.14);
    border-radius: 30px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.newsletter-content > p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--gray-500);
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto 22px;
    padding: 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,0.14);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: #f8fbff;
    color: var(--gray-700);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--gray-400);
}

.newsletter-form .btn {
    flex-shrink: 0;
    min-width: 190px;
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.newsletter-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(0,201,183,0.08);
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 600;
}

.newsletter-benefits i {
    color: var(--accent-teal);
}

.newsletter-note {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.newsletter-note i {
    color: var(--accent-teal);
}

/* ---------- Footer polish for current HTML ---------- */
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    color: #0A1128;
    background: linear-gradient(135deg, #00E5FF, #B84CFF);
    transform: translateY(-4px);
}

.footer-col ul li.highlight a {
    color: #ffffff;
    font-weight: 700;
}

.footer-col ul li.highlight .channel-count {
    background: rgba(0,229,255,0.16);
    color: #ffffff;
}

.footer-seo a {
    color: #00E5FF;
}

.footer-seo a:hover {
    color: #ffffff;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .features-content-grid,
    .seo-rich-columns,
    .faq-preview-grid,
    .hero-feature-grid,
    .testimonials-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reseller-stats-highlight,
    .premium-content-stats,
    .feature-trust-badge {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .features-content-grid,
    .seo-rich-columns,
    .faq-preview-grid,
    .hero-feature-grid,
    .features-grid-three-col,
    .reseller-stats-highlight,
    .premium-content-stats,
    .feature-trust-badge,
    .testimonials-stats-row,
    .testimonials-trust {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .feature-snippet {
        flex-direction: column;
        text-align: center;
    }

    .feature-snippet-icon {
        margin: 0 auto 14px;
    }

    .newsletter-content {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 14px;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn {
        width: 100%;
        min-width: 100%;
    }

    .subscription-plans .pricing-card.popular,
    .subscription-plans .pricing-card.popular:hover {
        transform: none;
    }

    .back-to-top {
        right: 18px;
        bottom: 92px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .feature-content-block,
    .seo-rich-card,
    .faq-preview-item,
    .feature-snippet {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 24px;
        padding: 14px;
    }

    .newsletter-benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-benefits span {
        justify-content: center;
    }
}

/* ===== HIDE ALL SEO / EXTRA CONTENT BLOCKS ===== */

/* Hero SEO cards (your 3 boxes) */
.hero-feature-grid,
.feature-snippet,
.seo-rich-columns,
.seo-rich-card {
    display: none !important;
}

/* All extra SEO sections across page */
.features-extra-content,
.why-choose-extra-content,
.stats-extra-content,
.channel-preview-extra,
.pricing-extra-content,
.testimonials-extra-content,
.faq-extra-content,
.cta-extra-content,
.newsletter-extra-content {
    display: none !important;
}

/* Any leftover SEO text blocks */
.seo-rich-content,
.feature-content-block {
    display: none !important;
}

.faq-preview-grid,
.faq-preview-item {
    display: none !important;
}

/* Container */
.feature-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Each box → fit to text */
.feature-trust-badge .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;
    border-radius: 999px; /* pill shape */

    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148,163,184,0.14);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);

    width: auto;          /* 🔥 key fix */
    flex: unset;          /* 🔥 remove stretching */
    white-space: nowrap;  /* keep text in one line */
}

/* Icon */
.feature-trust-badge .trust-item i {
    font-size: 14px;
    color: var(--accent-teal);
}

/* Text */
.feature-trust-badge .trust-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.feature-trust-badge .trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0,201,183,0.3);
    box-shadow: 0 12px 25px rgba(0, 201, 183, 0.15);
}

/* ===== MOBILE FIX FOR HERO TRUST BOXES ===== */
@media (max-width: 768px) {
    .trust-badge-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0 12px;
        margin-bottom: 22px;
    }

    .trust-badge-row .trust-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;

        width: auto;
        min-width: 0;
        max-width: calc(50% - 10px);

        padding: 8px 12px;
        border-radius: 999px;

        font-size: 0.72rem;
        line-height: 1.2;
        white-space: nowrap;

        overflow: hidden;
        text-overflow: ellipsis;

        border: 1px solid rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        box-sizing: border-box;
    }

    .trust-badge-row .trust-item i {
        font-size: 0.78rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .trust-badge-row {
        gap: 8px;
        padding: 0 10px;
    }

    .trust-badge-row .trust-item {
        max-width: calc(50% - 8px);
        padding: 7px 10px;
        font-size: 0.66rem;
        gap: 5px;
    }

    .trust-badge-row .trust-item i {
        font-size: 0.72rem;
    }
}

.dark-section {
    --text-color: #ffffff;
}

.light-section {
    --text-color: #0f172a;
}

.section-title {
    color: var(--text-color);
}

@media (max-width: 480px) {
    .trust-badge-row .trust-item {
        max-width: 100%;
        width: 100%;
    }
}

/* ===== CTA BANNER TEXT FIX + PREMIUM WHITE GLOW ===== */
.prefooter-cta,
.prefooter-cta .cta-banner,
.prefooter-cta .cta-content {
    color: #ffffff;
}

.prefooter-cta .cta-title,
.prefooter-cta .cta-title span:not(.gradient-text),
.prefooter-cta .cta-description,
.prefooter-cta .cta-description strong,
.prefooter-cta .cta-trust span,
.prefooter-cta .cta-card-title,
.prefooter-cta .cta-card-text,
.prefooter-cta .cta-card-text strong {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.18), 0 0 24px rgba(255, 255, 255, 0.08);
}

.prefooter-cta .cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.prefooter-cta .cta-description {
    max-width: 860px;
    margin: 0 auto 28px;
    font-size: 1.06rem;
    line-height: 1.85;
    opacity: 0.98;
}

.prefooter-cta .cta-trust {
    margin-top: 6px;
}

.prefooter-cta .cta-trust span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.prefooter-cta .cta-trust span i {
    color: #00e5ff;
    text-shadow: none;
}

.prefooter-cta .cta-extra-content {
    margin-top: 34px;
}

.prefooter-cta .feature-content-block {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.prefooter-cta .feature-content-block:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.prefooter-cta .feature-content-icon {
    box-shadow: 0 14px 30px rgba(0, 229, 255, 0.18);
}

.prefooter-cta .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

.prefooter-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: #00e5ff;
}

@media (max-width: 768px) {
    .prefooter-cta .cta-description {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .prefooter-cta .cta-trust {
        gap: 10px;
    }

    .prefooter-cta .cta-trust span {
        font-size: 0.78rem;
        padding: 8px 12px;
    }
}

/* ===== FINAL CTA TEXT COLOR FIX - PLACE AT END OF FILE ===== */
.prefooter-cta .cta-banner .cta-content,
.prefooter-cta .cta-banner .cta-content h2,
.prefooter-cta .cta-banner .cta-content p,
.prefooter-cta .cta-banner .cta-content strong,
.prefooter-cta .cta-banner .cta-content h3,
.prefooter-cta .cta-banner .cta-content .feature-content-block,
.prefooter-cta .cta-banner .cta-content .feature-content-block h3,
.prefooter-cta .cta-banner .cta-content .feature-content-block p,
.prefooter-cta .cta-banner .cta-content .cta-trust span,
.prefooter-cta .cta-banner .cta-content .cta-trust span i {
    color: #ffffff !important;
}

.prefooter-cta .cta-banner .cta-content h2,
.prefooter-cta .cta-banner .cta-content h3,
.prefooter-cta .cta-banner .cta-content p,
.prefooter-cta .cta-banner .cta-content strong,
.prefooter-cta .cta-banner .cta-content .cta-trust span {
    text-shadow: 0 0 10px rgba(255,255,255,0.18), 0 0 24px rgba(255,255,255,0.08) !important;
}

.prefooter-cta .cta-banner .cta-content h2 .gradient-text {
    -webkit-text-fill-color: transparent !important;
    background: linear-gradient(135deg, #00E5FF, #B84CFF) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow: none !important;
}

.prefooter-cta .cta-banner .cta-content p {
    opacity: 1 !important;
}

.prefooter-cta .cta-banner .cta-content .feature-content-block {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.prefooter-cta .cta-banner .cta-content .feature-content-block h3,
.prefooter-cta .cta-banner .cta-content .feature-content-block p {
    color: #ffffff !important;
}

.prefooter-cta .cta-banner .cta-content .cta-trust span {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.14);
    padding: 10px 16px;
    border-radius: 999px;
}

.prefooter-cta .cta-banner .cta-content .cta-trust span i,
.prefooter-cta .cta-banner .cta-content .feature-content-icon i {
    color: #00E5FF !important;
    text-shadow: none !important;
}

/* ===== NEWSLETTER TEXT FIX - PLACE AT VERY END OF CSS ===== */

.newsletter .newsletter-content,
.newsletter .newsletter-content p,
.newsletter .newsletter-content strong,
.newsletter .newsletter-content span,
.newsletter .newsletter-content label,
.newsletter .newsletter-note,
.newsletter .newsletter-benefits span,
.newsletter .feature-content-block h3,
.newsletter .feature-content-block p {
    color: #1e293b !important;
    text-shadow: none !important;
}

/* Keep the gradient headline visible */
.newsletter .newsletter-content h2 {
    color: #0f172a !important;
    text-shadow: none !important;
}

.newsletter .newsletter-content h2 .gradient-text {
    background: linear-gradient(135deg, #22c1f1, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
}

/* Input text + placeholder */
.newsletter .newsletter-form input,
.newsletter .newsletter-form input::placeholder {
    color: #64748b !important;
    -webkit-text-fill-color: #64748b !important;
    text-shadow: none !important;
}

/* Benefit pills text */
.newsletter .newsletter-benefits span {
    color: #334155 !important;
}

/* Lock/privacy note */
.newsletter .newsletter-note,
.newsletter .newsletter-note i {
    color: #94a3b8 !important;
}

/* =========================================================
   PREMIUM CHANNEL PREVIEW SECTION
   For: .premium-channel-preview
   ========================================================= */

.premium-channel-preview {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 201, 183, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f5f9ff 100%);
    overflow: hidden;
}

.premium-channel-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(0, 201, 183, 0.06), transparent 22%),
        radial-gradient(circle at 80% 15%, rgba(255, 107, 157, 0.06), transparent 22%),
        radial-gradient(circle at 50% 85%, rgba(77, 159, 255, 0.05), transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.premium-channel-preview .container {
    position: relative;
    z-index: 2;
}

.premium-channel-preview .section-header {
    max-width: 940px;
    margin: 0 auto 44px;
}

.premium-channel-preview .section-tag {
    box-shadow: 0 14px 32px rgba(0, 201, 183, 0.14);
}

.premium-channel-preview .section-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.12;
    margin-bottom: 18px;
}

.premium-channel-preview .section-description {
    max-width: 860px;
    font-size: 1.06rem;
    line-height: 1.85;
    color: #5b6b84;
}

/* ===== TOP STATS ===== */
.channel-preview-top-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.top-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.top-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 201, 183, 0.22);
}

.top-stat-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 201, 183, 0.18);
    font-size: 1.3rem;
}

.top-stat-content strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.1;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 4px;
}

.top-stat-content span {
    display: block;
    font-size: 0.86rem;
    color: #64748b;
    font-weight: 600;
}

/* ===== CATEGORY HIGHLIGHTS ===== */
.premium-channel-highlights {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.premium-channel-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #1e293b;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.premium-channel-highlights span:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #00c9b7, #9d4edd);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(0, 201, 183, 0.18);
}

.premium-channel-highlights span i {
    color: #00c9b7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.premium-channel-highlights span:hover i {
    color: #ffffff;
}

/* ===== CATEGORY GRID ===== */
.premium-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 38px;
}

.premium-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,201,183,0.04), rgba(157,78,221,0.03), rgba(255,107,157,0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.premium-category-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 68px rgba(15, 23, 42, 0.14);
    border-color: rgba(0, 201, 183, 0.24);
}

.premium-category-card:hover::before {
    opacity: 1;
}

.featured-category-card {
    border-color: rgba(0, 201, 183, 0.26);
    box-shadow: 0 28px 65px rgba(0, 201, 183, 0.1);
}

.premium-category-card .category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 18px;
    background: transparent;
    color: #0f172a;
    overflow: visible;
}

.premium-category-card .category-header::after {
    display: none;
}

.category-icon-box {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d);
    box-shadow: 0 16px 34px rgba(0, 201, 183, 0.16);
}

.category-icon-box i {
    font-size: 1.5rem;
    color: #ffffff;
    animation: none;
}

.category-title-group {
    flex: 1;
    min-width: 0;
}

.premium-category-card .category-header h3 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    line-height: 1.15;
    color: #0f172a;
    font-weight: 800;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 201, 183, 0.1);
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.premium-category-card .channel-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0,201,183,0.12), rgba(157,78,221,0.12));
    color: #0f172a;
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: none;
    box-shadow: none;
}

.premium-category-card .category-description {
    padding: 0 24px;
    margin: 0 0 16px;
    color: #5b6b84;
    font-size: 0.96rem;
    line-height: 1.8;
}

.category-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 24px;
    margin-bottom: 18px;
}

.category-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
}

.category-meta-row span i {
    color: #00c9b7;
}

/* ===== CHANNEL LIST ===== */
.premium-category-card .category-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 24px 24px;
}

.premium-category-card .category-channels li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.035);
    color: #334155;
    font-size: 0.86rem;
    line-height: 1.4;
    transition: all 0.28s ease;
}

.premium-category-card .category-channels li:hover {
    transform: translateX(6px);
    background: rgba(0, 201, 183, 0.08);
    color: #0f172a;
}

.premium-category-card .category-channels li i {
    color: #00c9b7;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== CARD FOOTER LINK ===== */
.premium-category-card .category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: auto 24px 24px;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,201,183,0.1), rgba(157,78,221,0.08));
    color: #0f172a;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 201, 183, 0.14);
    transition: all 0.3s ease;
}

.premium-category-card .category-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #00c9b7, #9d4edd);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(0, 201, 183, 0.16);
}

.premium-category-card .category-link i {
    margin-left: 0;
    transition: transform 0.3s ease;
}

.premium-category-card .category-link:hover i {
    transform: translateX(6px);
}

/* ===== EXTRA FEATURE BLOCKS ===== */
.premium-features-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 8px;
}

.premium-feature-content-block {
    position: relative;
    padding: 28px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,251,255,0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
    overflow: hidden;
}

.premium-feature-content-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,201,183,0.06), rgba(157,78,221,0.04), rgba(255,107,157,0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.premium-feature-content-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 201, 183, 0.22);
}

.premium-feature-content-block:hover::before {
    opacity: 1;
}

.premium-feature-content-block > * {
    position: relative;
    z-index: 1;
}

.premium-feature-content-block .feature-content-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(0, 201, 183, 0.16);
}

.premium-feature-content-block .feature-content-icon i {
    color: #ffffff;
    font-size: 1.35rem;
}

.premium-feature-content-block h3 {
    font-size: 1.18rem;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.premium-feature-content-block p {
    color: #5b6b84;
    font-size: 0.94rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===== CTA ===== */
.premium-channel-cta {
    margin-top: 34px;
    text-align: center;
}

.premium-channel-cta .btn {
    min-width: 320px;
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d) border-box;
    color: #0f172a;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.premium-channel-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(0, 201, 183, 0.16);
    background:
        linear-gradient(135deg, #00c9b7, #9d4edd) padding-box,
        linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d) border-box;
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .premium-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-features-content-grid,
    .channel-preview-top-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .premium-channel-preview {
        padding: 82px 0;
    }

    .premium-channel-preview .section-title {
        font-size: 2rem;
    }

    .premium-channel-preview .section-description {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .premium-categories-grid,
    .premium-features-content-grid,
    .channel-preview-top-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .premium-category-card .category-header {
        padding: 20px 20px 16px;
        flex-wrap: wrap;
        align-items: center;
    }

    .premium-category-card .category-description,
    .premium-category-card .category-channels,
    .category-meta-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .premium-category-card .category-channels {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .premium-category-card .category-link {
        margin: auto 20px 20px;
    }

    .premium-channel-cta .btn {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .premium-channel-highlights span {
        width: 100%;
        justify-content: center;
    }

    .top-stat-item {
        padding: 16px;
    }

    .category-icon-box {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .category-icon-box i {
        font-size: 1.25rem;
    }

    .premium-category-card .category-header h3 {
        font-size: 1.22rem;
    }

    .premium-category-card .channel-count {
        min-width: auto;
        margin-left: auto;
    }
}

/* =========================================================
   PREMIUM DEVICE COMPATIBILITY SECTION
   For: .premium-device-compatibility
   ========================================================= */

.premium-device-compatibility {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(0, 201, 183, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(157, 78, 221, 0.08), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #f5f9ff 100%);
    overflow: hidden;
}

.premium-device-compatibility::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.05), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(77, 159, 255, 0.05), transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(0, 201, 183, 0.04), transparent 28%);
    pointer-events: none;
    z-index: 0;
}

.premium-device-compatibility .container {
    position: relative;
    z-index: 2;
}

/* ===== HEADER ===== */
.device-compatibility-header {
    max-width: 920px;
    margin: 0 auto 44px;
    text-align: center;
}

.device-compatibility-header .section-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.12;
    margin-bottom: 18px;
}

.device-compatibility-header .section-description {
    max-width: 860px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #5b6b84;
}

.device-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.device-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.device-hero-badges span:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #00c9b7, #9d4edd);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(0, 201, 183, 0.18);
}

.device-hero-badges span i {
    color: #00c9b7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.device-hero-badges span:hover i {
    color: #ffffff;
}

/* ===== TOP OVERVIEW CARDS ===== */
.device-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 34px;
}

.device-overview-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.device-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 201, 183, 0.22);
}

.featured-device-card {
    border-color: rgba(0, 201, 183, 0.26);
    box-shadow: 0 24px 50px rgba(0, 201, 183, 0.1);
}

.device-overview-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 201, 183, 0.16);
    font-size: 1.45rem;
}

.device-overview-content h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 8px;
}

.device-overview-content p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 0;
}

/* ===== MAIN DEVICE GRID ===== */
.device-main-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 38px;
}

.premium-device-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding: 26px 24px 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-device-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,201,183,0.04), rgba(157,78,221,0.03), rgba(255,107,157,0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.premium-device-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 68px rgba(15, 23, 42, 0.14);
    border-color: rgba(0, 201, 183, 0.24);
}

.premium-device-card:hover::before {
    opacity: 1;
}

.premium-device-card > * {
    position: relative;
    z-index: 1;
}

.device-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.device-card-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d);
    box-shadow: 0 18px 38px rgba(0, 201, 183, 0.16);
}

.device-card-icon i {
    color: #ffffff;
    font-size: 1.6rem;
}

.device-card-title-group {
    flex: 1;
    min-width: 0;
}

.device-card-title-group h3 {
    font-size: 1.32rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 8px;
}

.device-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(0, 201, 183, 0.1);
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.device-card-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5b6b84;
    margin-bottom: 18px;
}

.device-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
}

.device-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.035);
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.5;
    transition: all 0.28s ease;
}

.device-feature-list li:hover {
    transform: translateX(6px);
    background: rgba(0, 201, 183, 0.08);
    color: #0f172a;
}

.device-feature-list li i {
    color: #00c9b7;
    font-size: 0.92rem;
    flex-shrink: 0;
}

/* ===== SUPPORT PANEL ===== */
.device-support-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 32px;
}

.device-support-copy,
.device-support-points {
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,250,255,0.96) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.device-support-copy {
    padding: 34px 30px;
}

.device-support-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0,201,183,0.12), rgba(157,78,221,0.12));
    color: #0f172a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.device-support-tag i {
    color: #00c9b7;
}

.device-support-copy h3 {
    font-size: 1.65rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 14px;
}

.device-support-copy p {
    font-size: 0.98rem;
    line-height: 1.85;
    color: #5b6b84;
    margin-bottom: 0;
}

.device-support-points {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.support-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
}

.support-point:hover {
    transform: translateY(-4px);
    background: rgba(0, 201, 183, 0.07);
}

.support-point-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c9b7, #9d4edd, #ff6b9d);
    box-shadow: 0 14px 30px rgba(0, 201, 183, 0.14);
}

.support-point-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.support-point-content h4 {
    font-size: 1.02rem;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 8px;
}

.support-point-content p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 0;
}

/* ===== ICON STRIP ===== */
.device-compatibility-icons-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.device-compatibility-icons-strip span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.device-compatibility-icons-strip span:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #00c9b7, #9d4edd);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(0, 201, 183, 0.18);
}

.device-compatibility-icons-strip span i {
    color: #00c9b7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.device-compatibility-icons-strip span:hover i {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .device-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-support-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-device-compatibility {
        padding: 82px 0;
    }

    .device-compatibility-header .section-title {
        font-size: 2rem;
    }

    .device-compatibility-header .section-description {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .device-overview-grid,
    .device-main-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .device-overview-card {
        padding: 18px;
    }

    .premium-device-card {
        padding: 22px 20px 20px;
    }

    .device-card-header {
        align-items: flex-start;
    }

    .device-card-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .device-card-icon i {
        font-size: 1.4rem;
    }

    .device-support-copy {
        padding: 28px 22px;
    }

    .device-support-points {
        padding: 18px;
    }

    .support-point {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .device-hero-badges span,
    .device-compatibility-icons-strip span {
        width: 100%;
        justify-content: center;
    }

    .device-overview-card {
        flex-direction: column;
        text-align: center;
    }

    .device-card-header {
        flex-direction: column;
        text-align: center;
    }

    .device-card-title-group {
        width: 100%;
    }

    .device-card-description,
    .device-support-copy,
    .support-point-content {
        text-align: center;
    }

    .support-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.stat-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px; /* replaces margins */
}

.stat-counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px; /* replaces margins */
}

/* ===== FINAL HERO STATS OVERRIDE - PASTE AT VERY END ===== */

.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(140px, 1fr)) !important;
    gap: 14px 18px !important;
    max-width: 720px !important;
    margin: 0 auto 22px !important;
    align-items: start !important;
    justify-content: center !important;
}

.stat-item {
    min-width: 0 !important;
    padding: 4px 2px !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.stat-icon {
    font-size: 1.2rem !important;
    margin-bottom: 2px !important;
}

.stat-number {
    font-size: 1.55rem !important;
    margin-bottom: 2px !important;
    line-height: 1 !important;
}

.stat-label {
    font-size: 0.68rem !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.4px !important;
}

.stat-trend {
    font-size: 0.58rem !important;
    margin-top: 0 !important;
    padding: 3px 8px !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
        gap: 10px !important;
        max-width: 340px !important;
        margin: 0 auto 18px !important;
    }

    .stat-item {
        padding: 2px !important;
    }

    .stat-icon {
        font-size: 1rem !important;
        margin-bottom: 1px !important;
    }

    .stat-number {
        font-size: 1.2rem !important;
        margin-bottom: 1px !important;
    }

    .stat-label {
        font-size: 0.58rem !important;
        margin-bottom: 1px !important;
    }

    .stat-trend {
        font-size: 0.5rem !important;
        padding: 2px 6px !important;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(105px, 1fr)) !important;
        gap: 8px !important;
        max-width: 300px !important;
    }

    .stat-number {
        font-size: 1.08rem !important;
    }

    .stat-label {
        font-size: 0.54rem !important;
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 12px 24px 20px;
}

.faq-question {
    cursor: pointer;
}

.faq-question .arrow i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow i {
    transform: rotate(180deg);
}

/* ===== MOBILE TRUST BADGES OPTIMIZATION ===== */
@media (max-width: 768px) {

  .feature-trust-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .feature-trust-badge .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .feature-trust-badge .trust-item i {
    font-size: 10px;
  }

  .feature-trust-badge .trust-item span {
    font-size: 11px;
  }
}

 .reseller-highlight {
    background: linear-gradient(135deg, rgba(42,127,255,0.12) 0%, rgba(255,217,102,0.05) 100%);
    border-left: 4px solid #FFD966;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    margin: 1.2rem 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #e2e8f0;
    backdrop-filter: blur(2px);
  }
  .reseller-highlight strong {
    color: #ffffff;
    font-weight: 700;
  }
  .reseller-badge {
    display: inline-block;
    background: rgba(255,217,102,0.18);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
    color: #FFE49E;
    letter-spacing: 0.3px;
  }
  .reseller-badge i {
    margin-right: 6px;
    color: #FFD966;
  }
  @media (max-width: 640px) {
    .reseller-highlight {
      padding: 1rem;
      font-size: 0.88rem;
    }
    .reseller-badge {
      font-size: 0.7rem;
      padding: 4px 10px;
    }
  }

  /* ONLY these 2 sections in 1 row on desktop */

/* 1) PLAN COMPARISON */
section:has(.section-tag i.fa-chart-bar) .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 992px) {
  section:has(.section-tag i.fa-chart-bar) .features-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  section:has(.section-tag i.fa-chart-bar) .feature-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
  }
}

/* 2) HOW IT WORKS */
section:has(.section-tag i.fa-gears) .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 992px) {
  section:has(.section-tag i.fa-gears) .features-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  section:has(.section-tag i.fa-gears) .feature-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
  }
}

/* WHY CHOOSE UKIPTV SECTION ONLY */
section:has(.section-tag i.fa-crown) .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 992px) {
  section:has(.section-tag i.fa-crown) .features-grid {
    flex-wrap: nowrap;
  }

  section:has(.section-tag i.fa-crown) .feature-card {
    flex: 0 0 24%;
  }
}

/* DEVICE COMPATIBILITY GRID (3-3 layout) */
section:has(.section-tag i.fa-mobile-screen-button) .features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  section:has(.section-tag i.fa-mobile-screen-button) .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  section:has(.section-tag i.fa-mobile-screen-button) .features-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }
}

/* ICON WRAPPER - PREMIUM LOOK */
section:has(.section-tag i.fa-mobile-screen-button) .feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #00c6ff, #7f5af0);
  box-shadow: 
    0 10px 25px rgba(0, 198, 255, 0.25),
    0 0 20px rgba(127, 90, 240, 0.2);

  transition: all 0.3s ease;
}

/* ICON */
section:has(.section-tag i.fa-mobile-screen-button) .feature-icon-wrapper i {
  font-size: 26px;
  color: #ffffff;
}

/* HOVER EFFECT */
section:has(.section-tag i.fa-mobile-screen-button) .feature-card:hover .feature-icon-wrapper {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(0, 198, 255, 0.35),
    0 0 25px rgba(127, 90, 240, 0.3);
}

/* CARD IMPROVEMENT */
section:has(.section-tag i.fa-mobile-screen-button) .feature-card {
  text-align: center;
  padding: 28px 22px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

section:has(.section-tag i.fa-mobile-screen-button) .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 198, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.premium-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A1128 0%, #0F1A3A 100%);
  position: relative;
  overflow: hidden;
}

.premium-cta-section::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: premiumCtaPulse 8s ease-in-out infinite;
}

@keyframes premiumCtaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.premium-cta-section .cta-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.premium-cta-section .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.premium-cta-section .cta-badge i {
  color: #00E5FF;
}

.premium-cta-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.premium-cta-section h3 i {
  color: #00E5FF;
  margin-right: 10px;
}

.premium-cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.premium-cta-section .cta-highlights {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.premium-cta-section .cta-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.premium-cta-section .cta-highlights span i {
  color: #10B981;
}

.premium-cta-section .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.premium-cta-section .cta-actions .btn {
  min-width: 220px;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.premium-cta-section .cta-actions .btn-primary {
  background: linear-gradient(135deg, #00E5FF, #B84CFF);
  color: #0A1128;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.25);
}

.premium-cta-section .cta-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.35);
}

.premium-cta-section .cta-actions .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.premium-cta-section .cta-actions .btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 8px 20px rgba(184, 76, 255, 0.18);
}

.premium-cta-section .cta-actions .btn-outline i.fa-whatsapp {
  color: #25D366;
}

@media (max-width: 768px) {
  .premium-cta-section {
    padding: 60px 0;
  }

  .premium-cta-section .cta-box {
    padding: 0 16px;
  }

  .premium-cta-section h3 {
    font-size: 1.75rem;
  }

  .premium-cta-section p {
    font-size: 0.95rem;
  }

  .premium-cta-section .cta-highlights {
    gap: 10px;
  }

  .premium-cta-section .cta-highlights span {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .premium-cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .premium-cta-section .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ONLY RECOMMENDED APPS + TROUBLESHOOTING in 1 line on desktop */

#recommended-apps .features-grid,
#troubleshooting .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 992px) {
  #recommended-apps .features-grid,
  #troubleshooting .features-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #recommended-apps .feature-card,
  #troubleshooting .feature-card {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
  }
}

/* ============================================
   INSTALLATION SECTION - FAQ STYLE ADDITIONS
   Matches index theme and FAQ styling
   ============================================ */

/* Setup Device Badge */
.setup-device-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(184, 76, 255, 0.1));
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00E5FF;
    margin-bottom: 16px;
}

/* Setup Steps List */
.setup-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.setup-steps-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
}

.setup-steps-list li:last-child {
    border-bottom: none;
}

.setup-steps-list li strong {
    color: #00E5FF;
    font-weight: 700;
}

/* Setup Tip Box */
.setup-tip {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(184, 76, 255, 0.08));
    border-left: 3px solid #00E5FF;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.setup-tip i {
    color: #FFD700;
    font-size: 18px;
    margin-top: 2px;
}

.setup-tip span {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Setup Link */
.setup-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00E5FF;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

.setup-link:hover {
    gap: 12px;
    color: #B84CFF;
}

.setup-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.setup-link:hover i {
    transform: translateX(4px);
}

/* Dark Mode Support for Installation Elements */
@media (prefers-color-scheme: dark) {
    .setup-steps-list li {
        border-bottom-color: rgba(255, 255, 255, 0.1);
        color: #94A3B8;
    }
    
    .setup-tip {
        background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(184, 76, 255, 0.15));
    }
    
    .setup-tip span {
        color: #94A3B8;
    }
}

