/* Enhanced CSS Variables - Professional House Style */
:root {
    /* Primary Brand Colors */
    --primary-dark: #0B1B3F;
    --primary-dark-lighter: #1A2F5A;
    --accent-blue: #3A8DFF;
    --accent-blue-dark: #2B7DED;
    --accent-cyan: #06B6D4;
    --white: #FFFFFF;
    --cta-lime: #AFFF3C;
    --cta-lime-dark: #9AE635;
    
    /* Extended Color Palette */
    --neutral-grey: #E5E7EB;
    --dark-grey: #374151;
    --light-grey: #F3F4F6;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography System */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Refined Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Advanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(58, 141, 255, 0.4);
    --shadow-glow-lime: 0 0 20px rgba(175, 255, 60, 0.5);
    
    /* Border Radius System */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Animation Timing */
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
    
    /* Z-index Scale */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 50;
    --z-fixed: 100;
    --z-modal-backdrop: 999;
    --z-modal: 1000;
    --z-popover: 1100;
    --z-tooltip: 1200;
}

/* Global Reset with Enhanced Defaults */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

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

/* Hide WordPress Elements */
#wpadminbar,
.wp-block-group,
.entry-header,
.entry-meta,
.post-navigation,
.comments-area,
.widget-area,
.site-header,
.site-footer,
header.wp-block-template-part,
footer.wp-block-template-part,
.wp-site-blocks {
    display: none !important;
}

/* Enhanced Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    letter-spacing: -0.03em;
}
h2 { 
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    letter-spacing: -0.025em;
}
h3 { 
    font-size: clamp(1.5rem, 3vw + 0.25rem, 2.5rem);
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}
h5 { 
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}
h6 { 
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Modern Banner Styles */
.trial-banner {
    background: linear-gradient(90deg, #3A8DFF 0%, #2B7DED 50%, #3A8DFF 100%);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    z-index: var(--z-sticky);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.trial-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(175, 255, 60, 0.1) 50%, transparent 100%);
    width: 200%;
    opacity: 0.3;
}

.trial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trial-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.banner-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
    margin: 0;
}

.leads-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.counter-number {
    color: #AFFF3C;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(175, 255, 60, 0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #AFFF3C;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(175, 255, 60, 0.5);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.btn-banner {
    background: #AFFF3C;
    color: #0B1B3F;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(175, 255, 60, 0.3);
    letter-spacing: 0.3px;
}

.btn-banner:hover {
    background: #9AE635;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(175, 255, 60, 0.4);
}

.banner-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Professional Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--duration-base);
    overflow: hidden;
}

.header-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Videos/HeaderA.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.nav-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    height: 60px;
    text-decoration: none;
    color: var(--primary-dark);
}

.logo img {
    display: block;
    height: 95px;
    width: auto;
    object-fit: contain;
    margin-top: -17.5px;
    margin-bottom: -17.5px;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--duration-base);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: width var(--duration-base);
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 5px 0;
    transition: all var(--duration-base);
}

/* Enhanced Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-base);
    position: relative;
    overflow: hidden;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--cta-lime);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lime), var(--shadow-lg);
    background: var(--cta-lime-dark);
}

/* Hero Section with Enhanced Visual */
.hero {
    background: 
        linear-gradient(rgba(11, 27, 63, 0.85), rgba(11, 27, 63, 0.90)),
        url('/Images/M2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    padding: var(--space-4xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp var(--duration-slower) ease;
}

/* Premium Hero Headline - Clean Blue Design */
.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    position: relative;
    text-align: left;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.03em;
    animation: heroFadeIn 1s ease-out;
}

.headline-transform {
    font-size: 0.35em;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #3A8DFF;
    display: block;
    margin-bottom: 0.3em;
    opacity: 0.9;
}

.headline-sales {
    display: inline-block;
    background: linear-gradient(180deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
}

.headline-sales::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3A8DFF 0%, #06B6D4 100%);
    border-radius: 2px;
    box-shadow: 0 2px 20px rgba(58, 141, 255, 0.5);
}

.headline-with {
    font-size: 0.7em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.2em;
}

.headline-premium {
    display: block;
    margin-top: 0.2em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.data-text {
    color: #3A8DFF;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px rgba(58, 141, 255, 0.6);
}

.data-text::after {
    content: '•••';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    color: #06B6D4;
    font-size: 0.5em;
    letter-spacing: 0.3em;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description Styling */
.hero-description {
    margin: 2rem 0 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtext {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stat-highlight {
    font-weight: 700;
    color: #3A8DFF;
    font-size: 1.1em;
    text-shadow: 0 0 20px rgba(58, 141, 255, 0.4);
    display: inline-block;
    position: relative;
}

.stat-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3A8DFF, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

/* Value Propositions Grid */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.value-icon {
    color: #06B6D4;
    font-size: 0.6em;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.value-text strong {
    color: #3A8DFF;
    font-weight: 700;
}

/* Enhanced CTA Section */
.hero-cta-section {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Primary Button - Premium Design */
.btn-primary-enhanced {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #3A8DFF 0%, #06B6D4 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(58, 141, 255, 0.3);
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(58, 141, 255, 0.5);
}

.btn-main-text {
    font-weight: 600;
}

.btn-price {
    font-size: 1.3em;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    animation: btnPulse 2s ease-out infinite;
}

@keyframes btnPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Secondary Button - Minimal Style */
.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-enhanced:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #3A8DFF;
    color: #3A8DFF;
    transform: translateX(5px);
}

.btn-icon {
    font-size: 1.2em;
}

/* Data particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: float 10s linear infinite;
}

@keyframes float {
    from { 
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to { 
        transform: translateY(-400px) translateX(100px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Stats Section */
.enhanced-stats-section {
    padding: 100px 20px 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.enhanced-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #0A84FF 50%, transparent 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.stats-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0A84FF 0%, #00D4FF 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.stats-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0A0E27 0%, #0A84FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A84FF 0%, #00D4FF 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(10, 132, 255, 0.12);
    border-color: rgba(10, 132, 255, 0.2);
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #0A84FF 0%, #00D4FF 100%);
    transform: scale(1.05);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    color: #0A84FF;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon svg {
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0A0E27 0%, #0A84FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #0A0E27;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #10B981;
    font-weight: 500;
}

.stat-trend svg {
    width: 16px;
    height: 16px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.badge-img {
    width: 72px !important;
    height: 72px !important;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 5px rgba(10, 132, 255, 0.3));
}

.trust-badge:hover .badge-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(10, 132, 255, 0.5));
    transition: all 0.3s ease;
}

/* Interactive Map Section */
.interactive-map-section {
    padding: 100px 20px;
    background: #f8f9fe;
    position: relative;
    overflow: hidden;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.map-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.map-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0A0E27 0%, #0A84FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Industry Tabs */
.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
}

.industry-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.industry-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(10, 132, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.industry-tab:hover::before {
    width: 200px;
    height: 200px;
}

.tab-icon {
    font-size: 18px;
}

.industry-tab:hover {
    border-color: #0A84FF;
    color: #0A84FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.15);
}

.industry-tab.active {
    background: linear-gradient(135deg, #0A84FF 0%, #00D4FF 100%);
    color: white;
    border-color: transparent;
}

.industry-tab .count {
    font-size: 13px;
    opacity: 0.8;
}

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.country-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A84FF 0%, #00D4FF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.country-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.country-card:active::after {
    transform: translate(-50%, -50%) scale(2);
}

.country-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 132, 255, 0.15);
    border-color: #0A84FF;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.country-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid rgba(10, 132, 255, 0.2);
}

.country-flag {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1;
    filter: saturate(1.2);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.country-card.featured .country-flag {
    font-size: 90px;
    transform: scale(1.2);
}

.country-card:hover .country-flag {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1.2) translateY(0); }
    50% { transform: scale(1.2) translateY(-10px); }
}

.country-name {
    font-size: 20px;
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 8px;
}

.lead-count {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #0A84FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.country-card:hover .lead-count {
    transform: scale(1.1);
}

.country-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

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

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0A0E27;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.growth-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #10B981;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
}

.growth-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.country-card:hover .growth-badge {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Heat map classes */
.country-card.heat-low {
    border-color: #E3F2FD;
}

.country-card.heat-medium {
    border-color: #64B5F6;
}

.country-card.heat-high {
    border-color: #1976D2;
}

.country-card.heat-very-high {
    border-color: #0D47A1;
    background: linear-gradient(135deg, #ffffff 0%, #E3F2FD 100%);
}

/* Stats Summary */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0 40px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.summary-value {
    font-size: 36px;
    font-weight: 800;
    color: #0A84FF;
    margin-bottom: 8px;
}

.summary-label {
    font-size: 16px;
    color: #666;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.country-detail {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

.country-detail.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    color: #666;
}

.close-modal:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.detail-flag {
    font-size: 80px;
    line-height: 1;
}

.detail-title h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0A0E27;
    margin-bottom: 8px;
}

.detail-total {
    font-size: 20px;
    color: #0A84FF;
    font-weight: 600;
}

.industry-breakdown {
    margin-top: 32px;
}

.industry-breakdown h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 24px;
}

.industry-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.industry-item:last-child {
    border-bottom: none;
}

.industry-name {
    min-width: 140px;
    font-weight: 600;
    text-transform: capitalize;
}

.industry-bar {
    flex: 1;
    height: 12px;
    background: #f3f4f6;
    border-radius: 6px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.industry-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #0A84FF 0%, #00D4FF 100%);
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.industry-count {
    min-width: 80px;
    text-align: right;
    font-weight: 700;
    color: #0A84FF;
}

/* See More Button */
.more-countries {
    text-align: center;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: white;
    border: 2px solid #0A84FF;
    color: #0A84FF;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #0A84FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 132, 255, 0.3);
}

/* Data Journey Section Styling */
.data-journey-section {
    padding: 5rem 0;
    background: #0A0E27;
    position: relative;
    overflow: hidden;
}

.data-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(58, 141, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    background: linear-gradient(135deg, #3A8DFF 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-top: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(58, 141, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    padding-top: 3.5rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3A8DFF 0%, #06B6D4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(58, 141, 255, 0.4);
    box-shadow: 0 20px 40px rgba(58, 141, 255, 0.2);
}

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

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3A8DFF 0%, #06B6D4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(58, 141, 255, 0.4);
    z-index: 10;
}

.step-number span {
    position: relative;
    z-index: 1;
}

.step-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #3A8DFF;
    animation: stepPulse 2s ease-out infinite;
}

@keyframes stepPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.step-content {
    margin-top: 2rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1rem;
    color: #FFFFFF !important;
    line-height: 1.6;
    opacity: 1 !important;
}

.step-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    opacity: 0.4;
    transform: scale(1.1);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(58, 141, 255, 0.3) 20%,
        rgba(58, 141, 255, 0.3) 80%,
        transparent 100%
    );
    position: relative;
    overflow: hidden;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        #3A8DFF, 
        transparent
    );
    animation: flowRight 3s ease-in-out infinite;
}

@keyframes flowRight {
    to {
        left: 100%;
    }
}

.step-card[data-step="1"] {
    animation-delay: 0.1s;
}

.step-card[data-step="2"] {
    animation-delay: 0.3s;
}

.step-card[data-step="3"] {
    animation-delay: 0.5s;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(10, 132, 255, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.header-badge {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #0A84FF 0%, #00D4FF 100%);
    color: white;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 32px;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(10, 132, 255, 0.4); }
}

.pricing-title {
    font-size: 48px;
    font-weight: 800;
    color: #0A0E27;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #0A84FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.subtitle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #374151;
}

.subtitle-item svg {
    flex-shrink: 0;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-option {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-option:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.pricing-option.recommended {
    border-color: #0A84FF;
    border-width: 2px;
    box-shadow: 0 20px 40px rgba(10, 132, 255, 0.1);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #ffffff 0%, #f8fbff 100%);
}

.pricing-option.recommended:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 25px 50px rgba(10, 132, 255, 0.15);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0A84FF;
    color: white;
    padding: 4px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.savings-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FEF3C7;
    color: #B45309;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.package-name {
    font-size: 28px;
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 8px;
}

.package-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.price-info {
    margin-bottom: 32px;
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: #0A0E27;
}

.price-period {
    font-size: 20px;
    color: #666;
}

.package-includes {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.leads-amount {
    font-size: 24px;
    font-weight: 700;
    color: #0A0E27;
    margin-bottom: 12px;
}

.delivery-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.select-package-wrapper {
    text-align: center;
    margin-top: auto;
}

.customer-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
}

.activity-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.activity-number {
    font-weight: 700;
    color: #0A84FF;
}

.select-package {
    display: inline-block;
    width: auto;
    padding: 20px 60px;
    background: #ffffff;
    border: 3px solid #0A84FF;
    color: #0A84FF;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-package:hover {
    background: #0A84FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 132, 255, 0.25);
}

.recommended-btn {
    background: #0A84FF;
    color: white;
    border-color: #0A84FF;
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { box-shadow: 0 10px 25px rgba(10, 132, 255, 0.3); }
    50% { box-shadow: 0 15px 35px rgba(10, 132, 255, 0.4); }
}

.recommended-btn:hover {
    background: #0066CC;
    border-color: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(10, 132, 255, 0.4);
    animation: none;
}

.package-note {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
    transition: color 0.2s ease;
}

.trust-item:hover {
    color: #0A84FF;
}

.alternative-section

.data-stream {
    position: fixed;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(64, 224, 255, 0.1) 20%,
        rgba(64, 224, 255, 0.8) 50%,
        rgba(64, 224, 255, 0.1) 80%,
        transparent 100%
    );
    filter: blur(0.5px);
    animation: beamFlow 25s ease-in-out infinite, beamDirection 60s ease-in-out infinite;
    z-index: 10;
}

.data-stream::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(64, 224, 255, 0.05) 20%,
        rgba(64, 224, 255, 0.3) 50%,
        rgba(64, 224, 255, 0.05) 80%,
        transparent 100%
    );
    filter: blur(2px);
    animation: inherit;
}

.data-stream::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(64, 224, 255, 0.6);
    animation: coreBeam 8s ease-in-out infinite;
}

.flow-particles {
    position: fixed;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 1px;
    transform: translateY(-50%);
    z-index: 11;
    animation: beamDirection 60s ease-in-out infinite;
}

.flow-particles::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(
        circle,
        rgba(64, 224, 255, 0.8) 0%,
        rgba(64, 224, 255, 0.4) 30%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(1px);
    animation: particleFlow1 12s linear infinite, beamDirection 60s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(64, 224, 255, 0.5),
        0 0 20px rgba(64, 224, 255, 0.2);
}

.flow-particles::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(64, 224, 255, 0.6) 40%,
        transparent 80%
    );
    border-radius: 50%;
    animation: particleFlow2 18s linear infinite, beamDirection 60s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(64, 224, 255, 0.3);
}

@keyframes beamFlow {
    0%, 100% {
        opacity: 0.6;
        filter: blur(0.5px) brightness(1);
    }
    25% {
        opacity: 0.9;
        filter: blur(0.3px) brightness(1.2);
    }
    50% {
        opacity: 0.7;
        filter: blur(0.8px) brightness(0.9);
    }
    75% {
        opacity: 1;
        filter: blur(0.2px) brightness(1.3);
    }
}

@keyframes beamDirection {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
        top: 50%;
    }
    25% {
        transform: translateY(-50%) rotate(0.5deg);
        top: 45%;
    }
    50% {
        transform: translateY(-50%) rotate(-0.3deg);
        top: 55%;
    }
    75% {
        transform: translateY(-50%) rotate(0.8deg);
        top: 40%;
    }
}

@keyframes coreBeam {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(64, 224, 255, 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 40px rgba(64, 224, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.2);
    }
}

@keyframes particleFlow1 {
    0% {
        left: -30px;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(0.8);
    }
    100% {
        left: 110%;
        opacity: 0;
        transform: scale(0.3);
    }
}

@keyframes particleFlow2 {
    0% {
        left: -20px;
        opacity: 0;
        transform: scale(0.3);
    }
    15% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    85% {
        opacity: 0.8;
        transform: scale(0.9);
    }
    100% {
        left: 110%;
        opacity: 0;
        transform: scale(0.2);
    }
}

/* Additional subtle enhancement layers */
.data-stream {
    box-shadow: 
        0 0 10px rgba(64, 224, 255, 0.3),
        0 0 30px rgba(64, 224, 255, 0.1),
        0 0 50px rgba(64, 224, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .data-stream {
        height: 2px;
    }
    
    .data-stream::before {
        height: 5px;
        top: -1.5px;
    }
    
    .flow-particles::before,
    .flow-particles::after {
        width: 15px;
        height: 15px;
    }
}

/* Performance optimization */
.data-stream,
.flow-particles,
.data-stream::before,
.data-stream::after,
.flow-particles::before,
.flow-particles::after {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}