/*1
Theme Name: Hello Elementor Child
Description: Crystal IPTV Child Theme
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Premium Netflix-Style IPTV Website CSS - Enhanced Version */
/* ============================================= */
/* CSS Custom Properties with Advanced Features */
/* ============================================= */
/* Premium Netflix-Style IPTV Website CSS - Enhanced Version */
/* ============================================= */
/* CSS Custom Properties with Advanced Features */
/* ============================================= */:root {
    /* Primary Brand Colors */
    --primary-black: #000000;
    --primary-red: #e50914;
    --secondary-red: #b8070f;
    --accent-red: #ff1a2b;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-light: #e6e6e6;
    --text-muted: #b3b3b3;
    
    /* Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    
    /* Border Colors */
    --border-primary: rgba(229, 9, 20, 0.3);
    --border-secondary: rgba(255, 255, 255, 0.1);
    --border-active: rgba(229, 9, 20, 0.6);
    
    /* Shadow Colors */
    --shadow-primary: rgba(0, 0, 0, 0.5);
    --shadow-red: rgba(229, 9, 20, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.8);
    
    /* Typography Scale */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    --font-6xl: 3.75rem;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-ultra: 0.8s ease;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Advanced Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

/* Professional Animated Background System */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 40%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 80% 60%, rgba(229, 9, 20, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 300px at 50% 20%, rgba(229, 9, 20, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(229, 9, 20, 0.02) 0%, transparent 30%, rgba(229, 9, 20, 0.03) 70%, transparent 100%);
    animation: backgroundFlow 30s ease-in-out infinite;
    z-index: -10;
}

/* Subtle Particle System */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 25px 45px, rgba(229, 9, 20, 0.15), transparent),
        radial-gradient(1px 1px at 75px 25px, rgba(229, 9, 20, 0.1), transparent),
        radial-gradient(1px 1px at 125px 65px, rgba(229, 9, 20, 0.12), transparent),
        radial-gradient(1px 1px at 175px 35px, rgba(229, 9, 20, 0.08), transparent),
        radial-gradient(1px 1px at 225px 75px, rgba(229, 9, 20, 0.1), transparent);
    background-repeat: repeat;
    background-size: 250px 120px;
    animation: particleDrift 40s linear infinite;
    z-index: -9;
    opacity: 0.6;
}

@keyframes backgroundFlow {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    33% { 
        transform: translateX(-15px) translateY(-10px) rotate(0.5deg);
        opacity: 0.8;
    }
    66% { 
        transform: translateX(15px) translateY(10px) rotate(-0.5deg);
        opacity: 0.9;
    }
}

@keyframes particleDrift {
    0% { transform: translateX(-250px) translateY(-20px); }
    100% { transform: translateX(calc(100vw + 250px)) translateY(20px); }
}

/* Main Container System */
.styled-container {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid var(--border-secondary);
    box-shadow: 
        0 0 100px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Advanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0 0 var(--space-6) 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* FAQ headings exception */
.faq-question {
    text-align: left !important;
    font-weight: 600;
}

/* Setup section headings exception */
#setup h2,
#setup h3,
#setup h4 {
    text-align: left !important;
}

h1 {
    font-size: clamp(var(--font-3xl), 6vw, var(--font-6xl));
    background: linear-gradient(135deg, 
        var(--white) 100%, 
        var(--text-light) 0%, 
        var(--primary-red) 0%, 
        var(--accent-red) 0%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premiumGlow 4s ease-in-out infinite alternate;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: var(--radius-full);
}

h2 {
    font-size: clamp(var(--font-2xl), 4vw, var(--font-4xl));
    color: var(--white);
    margin-bottom: var(--space-8);
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-red);
    border-radius: var(--radius-full);
}

h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-red);
    border-radius: var(--radius-full);
}

h3 {
    font-size: clamp(var(--font-xl), 3vw, var(--font-2xl));
    color: var(--primary-red);
    margin-bottom: var(--space-5);
    font-weight: 600;
}

h4 {
    font-size: clamp(var(--font-lg), 2.5vw, var(--font-xl));
    color: var(--white);
    font-weight: 600;
}

@keyframes premiumGlow {
    0% { 
        filter: brightness(1) drop-shadow(0 0 20px rgba(229, 9, 20, 0.2)); 
    }
    100% { 
        filter: brightness(1.1) drop-shadow(0 0 30px rgba(229, 9, 20, 0.4)); 
    }
}

/* Professional Typography */
p {
    font-size: clamp(var(--font-sm), 2vw, var(--font-lg));
    line-height: 1.7;
    margin-bottom: var(--space-5);
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Links with Premium Styling */
a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    font-weight: 500;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    transition: width var(--transition-base);
}

a:hover {
    color: var(--white);
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.8);
}

a:hover::after {
    width: 100%;
}

/* Professional Section Layout */
section {
    padding: var(--space-20) 0;
    margin: 0 auto;
    max-width: 1400px;
    width: 90%;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

/* Premium Hero Section */
#hero {
    text-align: center;
    padding: var(--space-24) 0;
    background: 
        radial-gradient(ellipse at center, rgba(229, 9, 20, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.9) 0%, 
            rgba(26, 26, 26, 0.95) 30%,
            rgba(229, 9, 20, 0.05) 70%,
            rgba(0, 0, 0, 0.9) 100%);
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-20);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(229, 9, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#hero::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(229, 9, 20, 0.03) 90deg, 
        transparent 180deg, 
        rgba(229, 9, 20, 0.02) 270deg, 
        transparent 360deg);
    animation: heroRotate 20s linear infinite;
    z-index: -1;
}

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

/* Professional Image System */
img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: var(--space-8) auto;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(229, 9, 20, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-slow);
    position: relative;
    border: 1px solid var(--border-secondary);
}

img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(229, 9, 20, 0.05) 100%);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(229, 9, 20, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.2);
}

img:hover::before {
    opacity: 1;
}

/* Premium Image Containers */
.img-container, .image-embed {
    text-align: center;
    margin: var(--space-8) 0;
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(229, 9, 20, 0.02) 50%,
        rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px) saturate(1.1);
    border: 1px solid var(--border-secondary);
    position: relative;
    overflow: hidden;
}

.img-container::before, .image-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.05), 
        transparent);
    transition: left var(--transition-ultra);
}

.img-container:hover::before, .image-embed:hover::before {
    left: 100%;
}

.img-caption {
    font-size: var(--font-sm);
    color: var(--text-muted);
    margin-top: var(--space-3);
    font-style: italic;
    font-weight: 400;
}

/* Enterprise-Grade Button System */
.cta-btn, .wp-btn, .button {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, 
        var(--primary-red) 0%, 
        var(--secondary-red) 50%,
        var(--primary-red) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-base);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(229, 9, 20, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: var(--space-2);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-btn::before, .wp-btn::before, .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left var(--transition-slow);
    z-index: 1;
}

.cta-btn::after, .wp-btn::after, .button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
    z-index: 0;
}

.cta-btn:hover::before, .wp-btn:hover::before, .button:hover::before {
    left: 100%;
}

.cta-btn:hover::after, .wp-btn:hover::after, .button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-btn:hover, .wp-btn:hover, .button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(229, 9, 20, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-btn:active, .wp-btn:active, .button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all var(--transition-fast);
}

/* Button Variants */
.cta-btn-large {
    padding: var(--space-5) var(--space-12);
    font-size: var(--font-lg);
    border-radius: var(--radius-xl);
}

.cta-btn-secondary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, 
        var(--primary-red) 0%, 
        var(--secondary-red) 50%,
        var(--primary-red) 100%);
    color: var(--white);
    border-color: var(--accent-red);
}

.cta-btn-accent {
    background: linear-gradient(135deg, 
        var(--accent-red) 0%, 
        var(--primary-red) 50%,
        var(--secondary-red) 100%);
    box-shadow: 
        0 8px 25px rgba(255, 26, 43, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Premium CTA Blocks */
.cta-block {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    background: 
        radial-gradient(ellipse at center, rgba(229, 9, 20, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.04) 0%, 
            rgba(229, 9, 20, 0.03) 50%,
            rgba(255, 255, 255, 0.04) 100%);
    border-radius: var(--radius-2xl);
    margin: var(--space-16) 0;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(20px) saturate(1.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(229, 9, 20, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-red) 50%, 
        transparent 100%);
}

.cta-block-title {
    font-size: clamp(var(--font-2xl), 4vw, var(--font-4xl));
    margin-bottom: var(--space-5);
    color: var(--primary-red);
    font-weight: 700;
}

.cta-block-text {
    font-size: clamp(var(--font-base), 2.5vw, var(--font-xl));
    margin-bottom: var(--space-8);
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Enterprise Card System */
.card, .column-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(229, 9, 20, 0.03) 50%,
        rgba(255, 255, 255, 0.08) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin: var(--space-5) 0;
    border: 1px solid var(--border-secondary);
    backdrop-filter: blur(15px) saturate(1.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(229, 9, 20, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card::before, .column-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-red) 0%, 
        var(--accent-red) 50%, 
        var(--primary-red) 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: center;
}

.card::after, .column-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 100%);
    transition: left var(--transition-ultra);
}

.card:hover::before, .column-card:hover::before {
    transform: scaleX(1);
}

.card:hover::after, .column-card:hover::after {
    left: 100%;
}

.card:hover, .column-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(229, 9, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: var(--border-active);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(229, 9, 20, 0.05) 50%,
        rgba(255, 255, 255, 0.12) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-footer {
    margin-top: var(--space-8);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Professional Grid System */
.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin: var(--space-8) 0;
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin: var(--space-8) 0;
}

.four-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin: var(--space-8) 0;
}

/* Premium List Styling */
.custom-list {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: var(--space-5) 0;
}

.custom-list li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    transition: all var(--transition-base);
    list-style-type: none;
}

.custom-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-size: var(--font-sm);
    line-height: 1.7;
    transition: all var(--transition-base);
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

.custom-list li::after {
    display: none;
}

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

.custom-list li:hover::before {
    color: var(--accent-red);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 26, 43, 0.8);
}

/* Professional Numbered Lists */
.list-numbers {
    counter-reset: step-counter;
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: var(--space-5) 0;
}

.list-numbers li {
    position: relative;
    padding-left: var(--space-16);
    margin-bottom: var(--space-8);
    counter-increment: step-counter;
    line-height: 1.7;
    color: var(--text-light);
    list-style-type: none;
}

.list-numbers li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    width: var(--space-12);
    height: var(--space-12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-lg);
    box-shadow: 
        0 8px 20px rgba(229, 9, 20, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.list-numbers li:hover::before {
    transform: scale(1.1);
    box-shadow: 
        0 12px 30px rgba(229, 9, 20, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Premium Blockquote Styling */
.blockquote {
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 50%,
        rgba(229, 9, 20, 0.08) 100%);
    border-left: 4px solid var(--primary-red);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(229, 9, 20, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blockquote::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary-red);
    position: absolute;
    top: -1.5rem;
    left: var(--space-6);
    opacity: 0.2;
    font-family: 'Georgia', serif;
    line-height: 1;
}

.blockquote p {
    font-size: var(--font-lg);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.blockquote-author {
    font-style: normal;
    color: var(--primary-red);
    margin-top: var(--space-5);
    text-align: right;
    font-weight: 600;
    font-size: var(--font-base);
}

.blockquote-author::before {
    content: '— ';
    color: var(--text-muted);
}

/* Enterprise Rating System */
.rating-container {
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 50%,
        rgba(229, 9, 20, 0.08) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    margin: var(--space-8) 0;
    text-align: center;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(229, 9, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rating-overall {
    margin-bottom: var(--space-10);
    position: relative;
}

.rating-overall::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-3);
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
    animation: scoreGlow 3s ease-in-out infinite alternate;
}

@keyframes scoreGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(229, 9, 20, 0.4)); }
}

.rating-stars {
    display: flex;
    justify-content: center;
    margin: var(--space-4) 0;
    gap: var(--space-2);
}

.rating-stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: var(--font-2xl);
    letter-spacing: 0.3rem;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.3));
}

.rating-label {
    color: var(--text-light);
    font-size: var(--font-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.rating-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.rating-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.rating-name {
    min-width: 140px;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-base);
}

.rating-bar-container {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    border-radius: var(--radius-full);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rating-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.rating-value {
    min-width: 50px;
    text-align: right;
    color: var(--primary-red);
    font-weight: 700;
    font-size: var(--font-base);
}

/* Professional Table System */
.table-container {
    overflow-x: auto;
    margin: var(--space-8) 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(229, 9, 20, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--border-secondary);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(229, 9, 20, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.responsive-table th,
.responsive-table td {
    padding: var(--space-5) var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--border-secondary);
    transition: all var(--transition-base);
}

.responsive-table th {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: var(--font-sm);
    position: relative;
}

.responsive-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-red), var(--accent-red));
}

.responsive-table td {
    color: var(--text-light);
    font-weight: 400;
}

.responsive-table tr:hover {
    background: rgba(229, 9, 20, 0.08);
}

.responsive-table tr:hover td {
    color: var(--white);
    transform: translateX(2px);
}

/* Advanced FAQ System */
.faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%, 
        rgba(229, 9, 20, 0.03) 50%,
        rgba(255, 255, 255, 0.06) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-secondary);
    overflow: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(229, 9, 20, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    border-color: var(--border-active);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(229, 9, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: var(--space-8);
    cursor: pointer;
    position: relative;
    color: var(--white);
    font-weight: 600;
    margin: 0;
    font-size: var(--font-lg);
    transition: all var(--transition-base);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-8);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-2xl);
    color: var(--primary-red);
    transition: all var(--transition-base);
    font-weight: 300;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
}

.faq-question:hover::after {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 var(--space-8) var(--space-8);
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--font-base);
}

/* Professional Phone Number Display */
.phone-number-display {
    text-align: center;
    margin: var(--space-10) 0;
    padding: var(--space-8);
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.06) 0%, 
        rgba(255, 255, 255, 0.03) 50%,
        rgba(229, 9, 20, 0.06) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(15px);
}

.phone-number-cta {
    display: inline-block;
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    padding: var(--space-6) var(--space-12);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.05) 0%, 
        transparent 50%,
        rgba(229, 9, 20, 0.05) 100%);
    box-shadow: 
        0 10px 30px rgba(229, 9, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.phone-number-cta:hover::before {
    left: 100%;
}

.phone-number-cta:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 15px 40px rgba(229, 9, 20, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--accent-red);
}

.phone-number-large {
    font-size: var(--font-4xl);
    padding: var(--space-8) var(--space-16);
}

/* Premium Badge System */
.badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: var(--space-1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.badge-info {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

/* Enterprise Highlight and Info Boxes */
.highlight-box, .info-box {
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 50%,
        rgba(229, 9, 20, 0.08) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(229, 9, 20, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.highlight-box::before, .info-box::before {
    content: 'ⓘ';
    position: absolute;
    top: -15px;
    left: var(--space-8);
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-base);
    box-shadow: 
        0 8px 20px rgba(229, 9, 20, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--bg-primary);
}

/* Professional Pros/Cons System */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin: var(--space-8) 0;
}

.pros {
    background: linear-gradient(135deg, 
        rgba(40, 167, 69, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 50%,
        rgba(40, 167, 69, 0.08) 100%);
    border-left: 4px solid #28a745;
    padding: var(--space-8);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(40, 167, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pros-title {
    color: #28a745;
    margin-bottom: var(--space-5);
    font-weight: 700;
    font-size: var(--font-xl);
}

/* Responsive Design System */
@media (max-width: 1024px) {
    :root {
        --space-16: 3rem;
        --space-20: 4rem;
        --space-24: 5rem;
    }
    
    section {
        width: 92%;
        padding: var(--space-16) 0;
    }
    
    h2::before, h2::after {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        width: 95%;
        padding: var(--space-12) 0;
    }
    
    .two-columns,
    .three-columns,
    .four-columns {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .cta-btn, .wp-btn, .button {
        display: block;
        margin: var(--space-4) auto;
        text-align: center;
        width: fit-content;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .rating-name {
        min-width: auto;
        width: 100%;
    }
    
    .rating-bar-container {
        width: 100%;
    }
    
    img {
        max-width: 95%;
    }
    
    .cta-block {
        padding: var(--space-12) var(--space-5);
    }
    
    .card, .column-card {
        padding: var(--space-6);
    }
}

@media (max-width: 480px) {
    section {
        width: 95%;
        padding: var(--space-10) 0;
    }
    
    .card, .column-card {
        padding: var(--space-5);
    }
    
    .cta-block {
        padding: var(--space-10) var(--space-4);
    }
    
    .phone-number-large {
        font-size: var(--font-2xl);
        padding: var(--space-5) var(--space-8);
    }
    
    .list-numbers li {
        padding-left: var(--space-12);
    }
    
    .list-numbers li::before {
        width: var(--space-10);
        height: var(--space-10);
        font-size: var(--font-base);
    }
    
    .custom-list li {
        padding-left: var(--space-6);
    }
}

/* Performance and Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    body::before,
    body::after {
        animation: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-red: #ff0000;
        --text-light: #ffffff;
        --text-muted: #cccccc;
        --border-secondary: rgba(255, 255, 255, 0.3);
    }
}

/* Focus Management */
.cta-btn:focus-visible, 
.wp-btn:focus-visible, 
.button:focus-visible,
a:focus-visible, 
button:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
    box-shadow: 
        0 0 0 6px rgba(229, 9, 20, 0.3),
        0 15px 40px rgba(229, 9, 20, 0.4);
}

/* Loading and Animation States */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

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

/* Intersection Observer Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.card, .column-card, .cta-block, .faq-item {
    animation: fadeInUp 0.8s ease-out backwards;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

/* Professional Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shimmerLoad 1.5s infinite;
}

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

/* Enterprise Premium Effects */
.premium-glow {
    box-shadow: 
        0 0 50px rgba(229, 9, 20, 0.3),
        inset 0 0 50px rgba(229, 9, 20, 0.05);
    animation: premiumPulse 4s ease-in-out infinite;
}

@keyframes premiumPulse {
    0%, 100% { 
        box-shadow: 
            0 0 50px rgba(229, 9, 20, 0.3),
            inset 0 0 50px rgba(229, 9, 20, 0.05);
    }
    50% { 
        box-shadow: 
            0 0 70px rgba(229, 9, 20, 0.4),
            inset 0 0 70px rgba(229, 9, 20, 0.08);
    }
}

.enterprise-gradient {
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        var(--bg-secondary) 25%,
        var(--bg-tertiary) 50%,
        var(--bg-secondary) 75%,
        var(--bg-primary) 100%);
}

/* Print Styles */
@media print {
    body::before,
    body::after {
        display: none !important;
    }
    
    .cta-btn,
    .wp-btn,
    .button {
        background: transparent !important;
        color: #000 !important;
        border: 2px solid #000 !important;
    }
    
    .card,
    .column-card {
        border: 1px solid #000 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}