/* Modern Dark Theme with Neon Glow Effects - Triumphant Financial Group */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --bg-dark: #0a0a0f;
    --bg-dark-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222f;
    
    /* Neon Colors */
    --neon-blue: #00d9ff;
    --neon-purple: #bd00ff;
    --neon-pink: #ff0080;
    --neon-green: #00ff88;
    --neon-orange: #ff6b35;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #bd00ff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --text-muted: #6b6b85;
    
    /* Shadows & Glows */
    --glow-blue: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3);
    --glow-purple: 0 0 20px rgba(189, 0, 255, 0.5), 0 0 40px rgba(189, 0, 255, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 0, 128, 0.3);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
    
    /* Spacing */
    --section-padding: 120px 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

/* Prevent any loading overlays */
body:before,
body:after {
    display: none !important;
}

/* Remove AOS placeholder effects */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(189, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, #1a1a24 0%, #0a0a0f 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
    }
    25% {
        background-position: 100% 0%, 0% 100%, 30% 70%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 70% 30%, 0% 0%;
    }
    75% {
        background-position: 0% 100%, 100% 0%, 50% 50%, 0% 0%;
    }
}

.stars, .twinkling {
    display: none;
}

/* Floating orbs animation */
.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.animated-bg::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.animated-bg::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.3) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation: floatOrb2 30s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, 100px) scale(1.2);
    }
    50% {
        transform: translate(200px, -50px) scale(0.9);
    }
    75% {
        transform: translate(-50px, 150px) scale(1.1);
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-150px, -100px) scale(1.3);
    }
    66% {
        transform: translate(100px, -200px) scale(0.8);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientTextShift 4s ease infinite, textGlow 3s ease-in-out infinite;
}

@keyframes gradientTextShift {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(20deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.25));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.4)) drop-shadow(0 0 20px rgba(189, 0, 255, 0.3));
    }
}

.glow-text {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
    animation: pulseGlowText 2s ease-in-out infinite;
}

@keyframes pulseGlowText {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(0, 217, 255, 0.8),
            0 0 20px rgba(0, 217, 255, 0.6),
            0 0 30px rgba(0, 217, 255, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(0, 217, 255, 1),
            0 0 35px rgba(0, 217, 255, 0.8),
            0 0 50px rgba(0, 217, 255, 0.6),
            0 0 75px rgba(189, 0, 255, 0.4);
    }
}

.highlight-glow {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    animation: highlightPulse 2.5s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 255, 136, 0.8),
            0 0 20px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 1),
            0 0 40px rgba(0, 255, 136, 0.8),
            0 0 60px rgba(0, 217, 255, 0.5);
    }
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 217, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
    transition: all 0.3s ease;
}

.nav-logo .logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    transform: scale(1.05);
}

/* Buttons */
.btn-glow,
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--neon-blue);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow:before,
.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-glow:hover:before,
.cta-button:hover:before {
    left: 0;
}

.btn-glow:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.pulse-glow {
    animation: pulse-button 2s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(0, 217, 255, 0.6), var(--glow-blue);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 100px;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: badgeFloat 3s ease-in-out infinite, badgeGlow 2s ease-in-out infinite;
}

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

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 0 45px rgba(0, 217, 255, 0.4);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.15);
    animation: titleEntrance 1.5s ease-out, titleFloat 6s ease-in-out 1.5s infinite;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 50px;
    line-height: 1.8;
    color: var(--text-secondary);
    animation: subtitleFade 1.5s ease-out 0.3s both;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
    animation: statsSlideIn 1.5s ease-out 0.6s both;
}

@keyframes statsSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    animation: cardPulse 3s ease-in-out infinite;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.3), 0 0 60px rgba(189, 0, 255, 0.2);
    }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
    animation: benefitsFade 1.5s ease-out 0.9s both;
}

@keyframes benefitsFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(189, 0, 255, 0.1);
    border: 1px solid rgba(189, 0, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pillFloat 4s ease-in-out infinite;
}

.benefit-pill:nth-child(1) { animation-delay: 0s; }
.benefit-pill:nth-child(2) { animation-delay: 1s; }
.benefit-pill:nth-child(3) { animation-delay: 2s; }

@keyframes pillFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 0 25px rgba(189, 0, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.benefit-pill:hover {
    background: rgba(189, 0, 255, 0.2);
    border-color: var(--neon-purple);
    box-shadow: var(--glow-purple);
    transform: scale(1.1);
}

.benefit-pill i {
    color: var(--neon-purple);
}

.trust-indicator {
    margin-top: 40px;
    font-size: 1rem;
    font-weight: 500;
}

.trust-indicator i {
    color: var(--neon-orange);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

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

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0; transform: translate(-50%, 10px); }
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    animation: sectionTitleReveal 1s ease-out;
}

@keyframes sectionTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us / Comparison Section */
.why-choose-us {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--bg-card);
    border: 2px solid rgba(107, 107, 133, 0.2);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.3s ease;
}

.comparison-card.highlight-card {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
    position: relative;
}

.comparison-card.highlight-card:before {
    content: '✓ CHOOSE TRIUMPHANT';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.card-header i {
    font-size: 2rem;
    color: var(--neon-green);
}

.card-header.other-companies i {
    color: var(--text-muted);
}

.card-header h3 {
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(107, 107, 133, 0.1);
    line-height: 1.6;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list i {
    color: var(--neon-green);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-list.dimmed i {
    color: var(--text-muted);
}

.comparison-list.dimmed li {
    opacity: 0.6;
}

/* Benefits Section */
.benefits {
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.benefit-card:hover:before {
    opacity: 0.05;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(0, 217, 255, 0.2);
    box-shadow: var(--glow-blue);
}

.benefit-card:hover .icon-glow {
    opacity: 0.3;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.benefit-list i {
    color: var(--neon-purple);
    font-size: 1rem;
}

/* Integrity Stats Section */
.integrity-stats {
    background: var(--bg-dark);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.integrity-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 30px;
}

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

.fact-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fact-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.integrity-tagline {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

/* Industry Comparison Table */
.comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(0, 217, 255, 0.05);
}

.comparison-table th {
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.comparison-table td {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(107, 107, 133, 0.1);
    color: var(--text-secondary);
    font-size: 1rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 217, 255, 0.03);
}

.comparison-table .highlight-row {
    background: rgba(0, 255, 136, 0.05);
    border-left: 4px solid var(--neon-green);
}

.comparison-table .highlight-row td {
    font-weight: 600;
}

.comparison-table .highlight-row:hover {
    background: rgba(0, 255, 136, 0.08);
}

/* Carriers Section */
.carriers-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 100px 0;
}

.carriers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.carrier-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.15);
    border-radius: 25px;
    padding: 40px 30px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.carrier-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.carrier-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.carrier-card:hover:before {
    opacity: 0.05;
}

/* Carrier Logo Wrapper */
.carrier-logo-wrapper {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.carrier-card:hover .carrier-logo-wrapper {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.carrier-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.carrier-card:hover .carrier-logo {
    transform: scale(1.05);
}

/* Individual Carrier Brand Colors */
.carrier-mutual {
    border-color: rgba(0, 117, 201, 0.3);
}

.carrier-mutual:hover {
    border-color: rgb(0, 117, 201);
    box-shadow: 0 0 40px rgba(0, 117, 201, 0.4);
}

.carrier-amicable {
    border-color: rgba(0, 51, 160, 0.3);
}

.carrier-amicable:hover {
    border-color: rgb(0, 51, 160);
    box-shadow: 0 0 40px rgba(0, 51, 160, 0.4);
}

.carrier-foresters {
    border-color: rgba(0, 166, 81, 0.3);
}

.carrier-foresters:hover {
    border-color: rgb(0, 166, 81);
    box-shadow: 0 0 40px rgba(0, 166, 81, 0.4);
}

.carrier-americo {
    border-color: rgba(0, 102, 204, 0.3);
}

.carrier-americo:hover {
    border-color: rgb(0, 102, 204);
    box-shadow: 0 0 40px rgba(0, 102, 204, 0.4);
}

.carrier-gerber {
    border-color: rgba(0, 123, 255, 0.3);
}

.carrier-gerber:hover {
    border-color: rgb(0, 123, 255);
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.4);
}

.carrier-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.carrier-rating {
    font-size: 0.95rem;
    color: var(--neon-orange);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.carrier-rating i {
    color: var(--neon-orange);
    font-size: 1rem;
    margin: 0;
}

.carrier-founded {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.carrier-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* More Carriers Card */
.carrier-card.more-carriers {
    border-color: var(--neon-purple);
    background: rgba(189, 0, 255, 0.05);
}

.carrier-card.more-carriers:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 40px rgba(189, 0, 255, 0.5);
}

.more-carriers-icon {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.more-carriers-icon i {
    font-size: 4rem;
    color: var(--neon-purple);
    margin: 0;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.carrier-examples {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(189, 0, 255, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Integrity Partners Section */
.integrity-partners {
    background: var(--bg-dark);
    padding: 80px 0;
}

.integrity-partners .section-header {
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.partner-card:hover:before {
    opacity: 0.05;
}

.partner-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
}

.partner-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.partner-card strong {
    color: var(--neon-blue);
}

.partner-card i {
    font-size: 3rem;
    color: var(--neon-purple);
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Income Calculator Section */
.income-calculator {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 100px 0;
}

/* Enhanced Income Calculator with Attention-Grabbing Elements */
.income-calculator-enhanced {
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(0, 217, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(189, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 120px 0;
    overflow: hidden;
}

/* Animated Attention Rings */
.calculator-attention-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid rgba(0, 217, 255, 0.6);
    border-radius: 50%;
    animation: pulseRing 3s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

.calculator-attention-ring.ring-delay-1 {
    animation-delay: 1s;
    border-color: rgba(189, 0, 255, 0.5);
}

.calculator-attention-ring.ring-delay-2 {
    animation-delay: 2s;
    border-color: rgba(0, 255, 136, 0.4);
}

@keyframes pulseRing {
    0% {
        width: 300px;
        height: 300px;
        opacity: 1;
    }
    80% {
        width: 1200px;
        height: 1200px;
        opacity: 0;
    }
    100% {
        width: 1200px;
        height: 1200px;
        opacity: 0;
    }
}

/* Calculator Badge */
.calculator-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(189, 0, 255, 0.2) 100%);
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.4),
        inset 0 0 20px rgba(0, 217, 255, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

.calculator-badge i {
    font-size: 1.2rem;
    animation: iconSpin 3s linear infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 0.4),
            inset 0 0 20px rgba(0, 217, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(0, 217, 255, 0.6),
            0 0 80px rgba(189, 0, 255, 0.3),
            inset 0 0 30px rgba(0, 217, 255, 0.2);
    }
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* Enhanced Title */
.calculator-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    text-shadow: 
        0 0 20px rgba(0, 217, 255, 0.8),
        0 0 40px rgba(189, 0, 255, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
        filter: 
            drop-shadow(0 0 20px rgba(0, 217, 255, 0.8))
            drop-shadow(0 0 40px rgba(189, 0, 255, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: 
            drop-shadow(0 0 30px rgba(0, 217, 255, 1))
            drop-shadow(0 0 60px rgba(189, 0, 255, 0.7));
    }
}

/* Enhanced Subtitle */
.calculator-subtitle {
    font-size: 1.4rem !important;
    color: var(--neon-blue) !important;
    font-weight: 600 !important;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

/* Arrow Indicator */
.calculator-arrow-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--neon-orange);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounceArrow 1.5s ease infinite;
}

.calculator-arrow-indicator i {
    font-size: 2rem;
    animation: arrowPulse 1.5s ease infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateY(0);
        color: var(--neon-orange);
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    }
    50% {
        transform: translateY(10px);
        color: var(--neon-pink);
        text-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
    }
}

.calculator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calculator-wrapper-enhanced {
    position: relative;
    z-index: 2;
    background: 
        linear-gradient(135deg, rgba(26, 26, 36, 0.98) 0%, rgba(18, 18, 26, 0.98) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 217, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: wrapperGlow 4s ease-in-out infinite;
}

.calculator-wrapper-enhanced::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink), var(--neon-green));
    border-radius: 30px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

@keyframes wrapperGlow {
    0%, 100% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(0, 217, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.5),
            0 0 100px rgba(0, 217, 255, 0.5),
            0 0 140px rgba(189, 0, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.calculator-input-section {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.1);
}

/* Highlighted Input Section */
.calculator-input-highlighted {
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    margin-bottom: 60px;
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.2),
        inset 0 0 30px rgba(0, 217, 255, 0.05);
    animation: inputSectionPulse 3s ease-in-out infinite;
}

@keyframes inputSectionPulse {
    0%, 100% {
        border-color: rgba(0, 217, 255, 0.3);
        box-shadow: 
            0 0 40px rgba(0, 217, 255, 0.2),
            inset 0 0 30px rgba(0, 217, 255, 0.05);
    }
    50% {
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 
            0 0 60px rgba(0, 217, 255, 0.4),
            0 0 100px rgba(189, 0, 255, 0.2),
            inset 0 0 40px rgba(0, 217, 255, 0.1);
    }
}

/* "START HERE" Badge */
.input-highlight-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-pink) 100%);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 0, 128, 0.4);
    animation: badgeBounce 1.5s ease-in-out infinite;
    z-index: 10;
}

.input-highlight-badge i {
    font-size: 1.2rem;
    animation: pointHand 1.5s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-5px) scale(1.05);
    }
}

@keyframes pointHand {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Pulse Ring Around Input */
.input-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 120%;
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 25px;
    pointer-events: none;
    animation: inputRingPulse 2s ease-out infinite;
}

@keyframes inputRingPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.calculator-input-section label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.calculator-input-section label i {
    color: var(--neon-blue);
    font-size: 1.5rem;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 20px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: rgba(18, 18, 26, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
    background: rgba(18, 18, 26, 1);
}

/* Enhanced Input Group */
.input-group-enhanced input {
    font-size: 2rem;
    padding: 25px 35px;
    border: 3px solid var(--neon-blue);
    background: rgba(18, 18, 26, 0.95);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.3),
        inset 0 2px 10px rgba(0, 217, 255, 0.1);
    animation: inputGlow 2s ease-in-out infinite;
}

.input-group-enhanced input:focus {
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 50px rgba(255, 0, 128, 0.5),
        0 0 80px rgba(0, 217, 255, 0.3),
        inset 0 2px 15px rgba(255, 0, 128, 0.2);
    transform: scale(1.02);
}

.input-group-enhanced .input-suffix {
    font-size: 1.3rem;
    color: var(--neon-blue);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

@keyframes inputGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 0.3),
            inset 0 2px 10px rgba(0, 217, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(0, 217, 255, 0.5),
            0 0 80px rgba(189, 0, 255, 0.2),
            inset 0 2px 15px rgba(0, 217, 255, 0.15);
    }
}

.input-suffix {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.result-section {
    background: rgba(10, 10, 15, 0.5);
    border: 2px solid rgba(107, 107, 133, 0.2);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
}

.result-section:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.result-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    font-family: 'Orbitron', sans-serif;
}

.result-title i {
    color: var(--neon-blue);
    font-size: 1.4rem;
}

.result-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.result-card:last-child {
    margin-bottom: 0;
}

.result-card:hover {
    background: rgba(26, 26, 36, 0.8);
    border-color: rgba(0, 217, 255, 0.3);
}

.result-card.highlight-card {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.3);
}

.result-card.total-card {
    background: rgba(0, 217, 255, 0.08);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-label i {
    color: var(--neon-orange);
}

.result-value {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    animation: valueUpdate 0.5s ease;
}

@keyframes valueUpdate {
    0% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bonus-tier {
    margin-top: 10px;
    padding: 8px 15px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-blue);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-tier.elite-tier {
    background: rgba(189, 0, 255, 0.1);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.bonus-tier.high-tier {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.calculator-disclaimer {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    align-items: flex-start;
}

.calculator-disclaimer i {
    color: var(--neon-orange);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.calculator-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.calculator-disclaimer strong {
    color: var(--neon-orange);
}

/* Income Potential Section */
.income-potential {
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
}

.income-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.tier-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.tier-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.tier-featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.tier-featured:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-green);
}

.tier-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tier-badge.featured {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.tier-badge.elite {
    background: rgba(189, 0, 255, 0.1);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.tier-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tier-icon i {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.tier-income {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.tier-income span {
    font-size: 1.2rem;
    font-weight: 400;
}

.tier-description {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.tier-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 107, 133, 0.1);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features i {
    color: var(--neon-green);
}

.tier-highlight {
    padding: 15px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.tier-cta-button {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.tier-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.tier-cta-button:hover:before {
    left: 0;
}

.tier-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tier-cta-button.featured-btn {
    background: var(--gradient-primary);
    border: 2px solid var(--neon-green);
    animation: featuredButtonPulse 2s ease-in-out infinite;
}

@keyframes featuredButtonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.7), 0 0 60px rgba(0, 217, 255, 0.4);
    }
}

.tier-cta-button.featured-btn:hover {
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.8), 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.income-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Success Path Section */
.success-path {
    background: var(--bg-dark);
    position: relative;
}

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

.step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-blue);
}

.step-duration i {
    color: var(--neon-blue);
}

.step-line {
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--neon-blue) 0%, transparent 100%);
}

.step:last-child .step-line {
    display: none;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(0, 217, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.testimonial-info .role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating {
    color: var(--neon-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.earnings {
    font-weight: 700;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-blue);
}

.faq-item.active {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--neon-blue);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Application Form Section */
.application {
    background: linear-gradient(180deg, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
    padding: 120px 0;
}

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

.application-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.application-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--neon-orange);
    border-radius: 50px;
    font-weight: 700;
    color: var(--neon-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-badge i {
    color: var(--neon-orange);
}

.application-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--neon-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(18, 18, 26, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    background: rgba(18, 18, 26, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--neon-blue);
}

.form-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.form-footer strong {
    color: var(--neon-orange);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scale-in 0.5s ease;
}

.success-icon i {
    font-size: 4rem;
    color: var(--text-primary);
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.success-message p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.success-badge {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.cta-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-subtext strong {
    color: var(--neon-blue);
}

.urgency-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 15px 35px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--neon-orange);
    border-radius: 50px;
    font-weight: 600;
    color: var(--neon-orange);
}

/* Footer */
.footer {
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.footer-section i {
    margin-right: 10px;
    color: var(--neon-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.social-links i {
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-blue);
}

.scroll-top i {
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-logo .logo-img {
        height: 45px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .income-tiers,
    .testimonials-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .integrity-quick-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
    
    .integrity-tagline {
        font-size: 0.9rem;
    }
    
    .carriers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .carrier-card {
        min-height: 350px;
        padding: 30px 25px;
    }
    
    .carrier-logo-wrapper {
        height: 70px;
        padding: 12px;
    }
    
    .application-form-wrapper {
        padding: 30px 20px;
    }
    
    .tier-featured {
        transform: scale(1);
    }
    
    .tier-featured:hover {
        transform: scale(1.05);
    }
    
    /* Make comparison table responsive */
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 15px;
    }
    
    .comparison-table th {
        font-size: 0.95rem;
    }
    
    /* Calculator responsive */
    .calculator-wrapper {
        padding: 35px 25px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .calculator-input-section label {
        font-size: 1.1rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    /* Enhanced Calculator Mobile Styles */
    .income-calculator-enhanced {
        padding: 80px 0;
    }
    
    .calculator-attention-ring {
        width: 200px;
        height: 200px;
    }
    
    @keyframes pulseRing {
        0% {
            width: 200px;
            height: 200px;
            opacity: 1;
        }
        80% {
            width: 800px;
            height: 800px;
            opacity: 0;
        }
        100% {
            width: 800px;
            height: 800px;
            opacity: 0;
        }
    }
    
    .calculator-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
    }
    
    .calculator-title {
        font-size: 2.5rem !important;
    }
    
    .calculator-subtitle {
        font-size: 1.1rem !important;
    }
    
    .calculator-arrow-indicator {
        font-size: 0.9rem;
    }
    
    .calculator-arrow-indicator i {
        font-size: 1.5rem;
    }
    
    .calculator-input-highlighted {
        padding: 30px 20px;
    }
    
    .input-highlight-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .input-group-enhanced input {
        font-size: 1.5rem;
        padding: 20px 25px;
    }
    
    .input-group-enhanced .input-suffix {
        font-size: 1.1rem;
    }
    
    .input-group input {
        width: 100%;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .btn-glow,
    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced Calculator Extra Small Screens */
    .calculator-title {
        font-size: 2rem !important;
    }
    
    .calculator-subtitle {
        font-size: 1rem !important;
    }
    
    .calculator-badge {
        font-size: 0.7rem;
        padding: 8px 15px;
    }
    
    .calculator-input-highlighted {
        padding: 25px 15px;
    }
    
    .input-group-enhanced input {
        font-size: 1.3rem;
        padding: 18px 20px;
    }
    
    .input-group-enhanced .input-suffix {
        font-size: 1rem;
    }
    
    .input-highlight-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .calculator-arrow-indicator {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .calculator-arrow-indicator i {
        font-size: 1.3rem;
    }
    
    /* Stack comparison table on mobile */
    .comparison-table {
        display: block;
        border: none;
        background: transparent;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tbody {
        display: block;
    }
    
    .comparison-table tr {
        display: block;
        margin-bottom: 20px;
        background: var(--bg-card);
        border: 2px solid rgba(0, 217, 255, 0.2);
        border-radius: 20px;
        padding: 20px;
    }
    
    .comparison-table tr.highlight-row {
        border-color: var(--neon-green);
        background: rgba(0, 255, 136, 0.05);
    }
    
    .comparison-table td {
        display: block;
        padding: 8px 0;
        border: none;
        text-align: left;
    }
    
    .comparison-table td:first-child {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 8px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(107, 107, 133, 0.2);
    }
    
    .comparison-table td:last-child {
        font-size: 1.2rem;
    }
    
    /* Reduce partner card padding on mobile */
    .partner-card {
        padding: 35px 25px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   VSL CINEMATIC HERO SECTION
   =================================== */

/* VSL Mode - Lock Body Scroll */
body.vsl-mode {
    overflow: hidden;
}

body.unlocked {
    overflow-y: auto;
}

/* VSL Hero Container */
.vsl-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(189, 0, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(75, 0, 130, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, #0a0014 0%, #1a0a2e 50%, #0a0014 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    animation: heroGradientShift 15s ease infinite;
}

@keyframes heroGradientShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
    }
    25% {
        background-position: 100% 0%, 0% 100%, 30% 70%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 70% 30%, 0% 0%;
    }
    75% {
        background-position: 0% 100%, 100% 0%, 50% 50%, 0% 0%;
    }
}

.vsl-hero.active {
    opacity: 1;
    pointer-events: all;
}

.vsl-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(189, 0, 255, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 20%, rgba(138, 43, 226, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(148, 0, 211, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 70%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Floating Purple Orbs */
.vsl-background-overlay::before,
.vsl-background-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.vsl-background-overlay::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.6) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatPurpleOrb1 20s ease-in-out infinite;
}

.vsl-background-overlay::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: floatPurpleOrb2 25s ease-in-out infinite;
}

@keyframes floatPurpleOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(150px, 100px) scale(1.3);
    }
    50% {
        transform: translate(200px, -80px) scale(0.9);
    }
    75% {
        transform: translate(-100px, 120px) scale(1.2);
    }
}

@keyframes floatPurpleOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-180px, -120px) scale(1.4);
    }
    66% {
        transform: translate(120px, -180px) scale(0.85);
    }
}

.vsl-container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 120px; /* Add extra space to prevent header from covering video top */
    padding-bottom: 3rem; /* Add bottom padding for timer bar visibility */
}

/* Video Wrapper */
.vsl-video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(189, 0, 255, 0.5),
        0 0 100px rgba(138, 43, 226, 0.4),
        0 0 150px rgba(148, 0, 211, 0.3),
        inset 0 0 0 1px rgba(189, 0, 255, 0.2);
    animation: videoFadeIn 1s ease 0.3s both, videoGlow 4s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% {
        box-shadow: 
            0 25px 60px rgba(189, 0, 255, 0.5),
            0 0 100px rgba(138, 43, 226, 0.4),
            0 0 150px rgba(148, 0, 211, 0.3),
            inset 0 0 0 1px rgba(189, 0, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 30px 80px rgba(189, 0, 255, 0.7),
            0 0 120px rgba(138, 43, 226, 0.6),
            0 0 180px rgba(148, 0, 211, 0.5),
            0 0 220px rgba(0, 217, 255, 0.3),
            inset 0 0 0 1px rgba(189, 0, 255, 0.4);
    }
}

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

#youtube-player {
    width: 100%;
    height: 100%;
}

/* Overlay Content */
.vsl-overlay-content {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.vsl-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0,212,255,0.5);
}

.vsl-title .reveal-text {
    display: inline-block;
    opacity: 0;
    animation: revealText 0.8s ease forwards;
}

.vsl-title .delay-1 {
    animation-delay: 0.3s;
}

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

/* Countdown Ring */
.vsl-countdown-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

.countdown-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.countdown-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.countdown-circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 4;
}

.countdown-circle {
    fill: none;
    stroke: url(#countdownGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
    filter: drop-shadow(0 0 10px rgba(0,212,255,0.8));
}

.countdown-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#countdown-timer {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Unlock Message */
.vsl-unlock-message {
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--neon-orange);
    text-shadow: 0 0 20px rgba(255,107,53,0.5);
    transition: opacity 0.5s ease;
}

.vsl-unlock-message.show {
    opacity: 1;
    animation: pulseGlow 2s ease infinite;
}

.pulse-arrow {
    animation: bounceArrow 1.5s ease infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255,107,53,0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255,107,53,0.8);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: opacity 0.5s ease;
}

.scroll-indicator.show {
    opacity: 1;
    animation: fadeInUp 0.5s ease;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   MINI PLAYER
   =================================== */

.mini-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: 225px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mini-player.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

#mini-youtube-player {
    width: 100%;
    height: 100%;
}

.close-mini-player {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-mini-player:hover {
    background: rgba(255,0,0,0.8);
    transform: scale(1.1);
}

/* ===================================
   MAIN FUNNEL LOCKED STATE
   =================================== */

.main-funnel {
    position: relative;
    min-height: 100vh;
    padding-top: 100vh;
    transition: filter 0.8s ease, opacity 0.8s ease;
}

.main-funnel.locked {
    filter: blur(20px);
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
}

.main-funnel.unlocked {
    filter: blur(0);
    opacity: 1;
    pointer-events: all;
    animation: unlockFunnel 1s ease;
}

@keyframes unlockFunnel {
    from {
        filter: blur(20px);
        opacity: 0.3;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

/* ===================================
   VSL HEADER (OUTSIDE VIDEO FRAME)
   =================================== */

.vsl-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: 
        linear-gradient(180deg, 
            rgba(26, 10, 40, 0.98) 0%, 
            rgba(18, 8, 30, 0.95) 50%,
            rgba(10, 5, 20, 0.85) 80%,
            transparent 100%);
    backdrop-filter: blur(10px);
    z-index: 5;
    animation: headerSlideDown 0.8s ease 0.5s both, headerGlow 6s ease-in-out infinite;
    box-shadow: 
        0 4px 30px rgba(189, 0, 255, 0.3),
        0 0 60px rgba(138, 43, 226, 0.2);
}

@keyframes headerGlow {
    0%, 100% {
        box-shadow: 
            0 4px 30px rgba(189, 0, 255, 0.3),
            0 0 60px rgba(138, 43, 226, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 40px rgba(189, 0, 255, 0.5),
            0 0 80px rgba(138, 43, 226, 0.4),
            0 0 120px rgba(148, 0, 211, 0.2);
    }
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vsl-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.vsl-header-logo {
    flex-shrink: 0;
}

.header-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(189, 0, 255, 0.5))
            drop-shadow(0 0 15px rgba(138, 43, 226, 0.3));
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(189, 0, 255, 0.5))
                drop-shadow(0 0 15px rgba(138, 43, 226, 0.3));
    }
    50% {
        filter: drop-shadow(0 3px 12px rgba(189, 0, 255, 0.7))
                drop-shadow(0 0 25px rgba(138, 43, 226, 0.5));
    }
}

.vsl-header-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    background: 
        linear-gradient(135deg, 
            rgba(189, 0, 255, 0.15) 0%, 
            rgba(138, 43, 226, 0.1) 100%);
    border: 1px solid rgba(189, 0, 255, 0.4);
    border-radius: 50px;
    box-shadow: 
        0 4px 20px rgba(189, 0, 255, 0.3),
        0 0 30px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: messageGlow 3s ease-in-out infinite;
}

@keyframes messageGlow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(189, 0, 255, 0.3),
            0 0 30px rgba(138, 43, 226, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(189, 0, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(189, 0, 255, 0.5),
            0 0 50px rgba(138, 43, 226, 0.4),
            0 0 70px rgba(148, 0, 211, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        border-color: rgba(189, 0, 255, 0.6);
    }
}

.vsl-header-message i {
    color: #bd00ff;
    font-size: 1.2rem;
    animation: playPulse 2s ease infinite;
    filter: drop-shadow(0 0 8px rgba(189, 0, 255, 0.8));
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(189, 0, 255, 0.8));
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
        filter: drop-shadow(0 0 15px rgba(189, 0, 255, 1));
    }
}

.vsl-header-message span {
    text-shadow: 
        0 2px 10px rgba(189, 0, 255, 0.4),
        0 0 20px rgba(138, 43, 226, 0.2);
}

/* ===================================
   TIMER BAR (BELOW VIDEO)
   =================================== */

.vsl-timer-bar {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto 2rem; /* Add bottom margin for visibility */
    background: 
        linear-gradient(135deg, 
            rgba(26, 10, 40, 0.95) 0%, 
            rgba(18, 8, 30, 0.95) 100%);
    border: 1px solid rgba(189, 0, 255, 0.4);
    border-radius: 16px;
    overflow: hidden; /* Keep hidden for background clipping */
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(189, 0, 255, 0.3),
        0 0 90px rgba(138, 43, 226, 0.2),
        inset 0 1px 0 rgba(189, 0, 255, 0.15);
    animation: timerBarFadeIn 0.8s ease 1s both, timerBarGlow 5s ease-in-out infinite;
}

@keyframes timerBarGlow {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(189, 0, 255, 0.3),
            0 0 90px rgba(138, 43, 226, 0.2),
            inset 0 1px 0 rgba(189, 0, 255, 0.15);
        border-color: rgba(189, 0, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(189, 0, 255, 0.5),
            0 0 120px rgba(138, 43, 226, 0.4),
            0 0 160px rgba(148, 0, 211, 0.2),
            inset 0 1px 0 rgba(189, 0, 255, 0.25);
        border-color: rgba(189, 0, 255, 0.6);
    }
}

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

.timer-bar-content {
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    min-height: 80px; /* Ensure minimum height for content */
}

.timer-bar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

/* Compact countdown ring for timer bar */
.countdown-ring-small {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.countdown-svg-small {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.countdown-text-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.countdown-text-small span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-bar-message {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timer-message-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.timer-message-text strong {
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.countdown-status-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-status-inline i {
    color: var(--neon-green);
    font-size: 1rem;
}

.countdown-status-inline.paused i {
    color: var(--neon-orange);
}

/* Premium progress bar */
.timer-bar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 217, 255, 0.1);
    overflow: hidden;
    border-radius: 0 0 16px 16px; /* Match parent border radius */
    z-index: 1;
}

.timer-bar-progress .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 1s linear;
    box-shadow: 
        0 0 20px rgba(0, 217, 255, 0.8),
        0 0 40px rgba(0, 217, 255, 0.4);
    position: relative;
}

.timer-bar-progress .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2s ease infinite;
}

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

/* Unlock message inside timer bar */
.vsl-timer-bar .vsl-unlock-message {
    display: none;
    padding: 2rem;
    text-align: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: unlockMessageFade 0.8s ease both;
    width: 100%;
    box-sizing: border-box;
}

.vsl-timer-bar .vsl-unlock-message.show {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

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

/* Hide timer content when unlocked */
.vsl-timer-bar.unlocked .timer-bar-content {
    display: none;
}

/* ===================================
   TAP TO START OVERLAY (MOBILE AUTOPLAY)
   =================================== */

.tap-to-start-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(189, 0, 255, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 10001; /* Above VSL hero */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.tap-to-start-overlay.active {
    opacity: 1;
    pointer-events: all;
    animation: overlayFadeIn 0.8s ease forwards;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.tap-to-start-content {
    text-align: center;
    padding: 3rem 2rem;
    animation: contentSlideUp 1s ease 0.3s both;
}

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

/* Tap Icon with Ripples */
.tap-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tap-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(189, 0, 255, 0.6);
    animation: tapRipple 2s ease-out infinite;
}

.tap-ripple.delay-1 {
    animation-delay: 0.4s;
    border-color: rgba(138, 43, 226, 0.5);
}

.tap-ripple.delay-2 {
    animation-delay: 0.8s;
    border-color: rgba(148, 0, 211, 0.4);
}

@keyframes tapRipple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    80% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.tap-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.3) 0%, rgba(138, 43, 226, 0.2) 100%);
    border: 3px solid rgba(189, 0, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(189, 0, 255, 0.6),
        0 0 80px rgba(138, 43, 226, 0.4),
        inset 0 0 30px rgba(189, 0, 255, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(189, 0, 255, 0.6),
            0 0 80px rgba(138, 43, 226, 0.4),
            inset 0 0 30px rgba(189, 0, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 60px rgba(189, 0, 255, 0.8),
            0 0 120px rgba(138, 43, 226, 0.6),
            inset 0 0 40px rgba(189, 0, 255, 0.3);
    }
}

.tap-icon i {
    font-size: 4rem;
    color: #bd00ff;
    filter: drop-shadow(0 0 20px rgba(189, 0, 255, 1));
    animation: iconFloat 3s ease-in-out infinite;
}

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

/* Title and Subtitle */
.tap-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(189, 0, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(189, 0, 255, 0.9))
                drop-shadow(0 0 60px rgba(138, 43, 226, 0.6));
    }
}

.tap-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(189, 0, 255, 0.3);
}

/* Hand Pointer Indicator */
.tap-hand-indicator {
    font-size: 3rem;
    color: var(--neon-orange);
    animation: handBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.8));
}

@keyframes handBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Hide overlay with fade out animation */
.tap-to-start-overlay.hidden {
    animation: overlayFadeOut 0.8s ease forwards;
}

@keyframes overlayFadeOut {
    from {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
        pointer-events: none;
    }
}

/* ===================================
   LOADING TRANSITION
   =================================== */

.vsl-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.vsl-loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--neon-blue);
    border-radius: 50%;
    animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: var(--neon-purple);
    animation-delay: 0.15s;
}

.spinner-ring:nth-child(3) {
    border-top-color: var(--neon-green);
    animation-delay: 0.3s;
}

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

.loading-text {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ===================================
   AUDIO ACTIVATION OVERLAY
   =================================== */

.audio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audio-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.audio-overlay:hover {
    background: rgba(0,0,0,0.8);
}

.audio-button {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.audio-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    animation: audioRipple 2s ease-out infinite;
    opacity: 0;
}

.audio-ripple.delay-1 {
    animation-delay: 0.5s;
}

.audio-ripple.delay-2 {
    animation-delay: 1s;
}

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

.audio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0,212,255,0.5);
    animation: audioIconPulse 1.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.audio-overlay:hover .audio-icon {
    transform: scale(1.1);
}

@keyframes audioIconPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(0,212,255,0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(0,212,255,0.8), 0 0 80px rgba(0,212,255,0.4);
    }
}

.audio-icon i {
    font-size: 2.5rem;
    color: white;
    animation: audioIconBounce 1.5s ease-in-out infinite;
}

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

.audio-text {
    text-align: center;
    margin-bottom: 1.5rem;
}

.audio-primary {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0,212,255,0.5);
}

.audio-secondary {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.audio-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.audio-wave {
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: audioWave 1s ease-in-out infinite;
}

.audio-wave:nth-child(1) {
    animation-delay: 0s;
}

.audio-wave:nth-child(2) {
    animation-delay: 0.1s;
}

.audio-wave:nth-child(3) {
    animation-delay: 0.2s;
}

.audio-wave:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes audioWave {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 40px;
    }
}

/* ===================================
   ENHANCED COUNTDOWN WITH PROGRESS
   =================================== */

.countdown-circle-progress {
    fill: none;
    stroke: rgba(0,212,255,0.2);
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.countdown-status {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--neon-green);
    white-space: nowrap;
    opacity: 0.8;
}

.countdown-status.paused {
    color: var(--neon-orange);
}

.countdown-status i {
    font-size: 1rem;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.countdown-progress-bar {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 1s linear;
    box-shadow: 0 0 10px rgba(0,212,255,0.8);
}

/* ===================================
   ENHANCED MINI PLAYER WITH DRAG
   =================================== */

.mini-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.8),
        0 0 0 1px rgba(255,255,255,0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--bg-dark);
}

.mini-player.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.mini-player.dragging {
    transition: none;
    cursor: grabbing;
}

.mini-player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(189,0,255,0.1) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: grab;
    user-select: none;
}

.mini-player-header:active {
    cursor: grabbing;
}

.drag-indicator {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.6;
}

.mini-player-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#mini-youtube-player {
    width: 100%;
    height: 225px;
}

.close-mini-player {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.close-mini-player:hover {
    background: rgba(255,0,0,0.8);
    transform: scale(1.1);
}

/* ===================================
   SMOOTH UNLOCK ANIMATIONS
   =================================== */

@keyframes unlockFunnel {
    0% {
        filter: blur(20px);
        opacity: 0.3;
    }
    50% {
        filter: blur(10px);
        opacity: 0.6;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.main-funnel.unlocked {
    animation: unlockFunnel 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   VSL MOBILE RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    /* Tap to Start Overlay - Mobile */
    .tap-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .tap-icon {
        width: 100px;
        height: 100px;
    }
    
    .tap-icon i {
        font-size: 3rem;
    }
    
    .tap-title {
        font-size: 2rem;
    }
    
    .tap-subtitle {
        font-size: 1.1rem;
    }
    
    .tap-hand-indicator {
        font-size: 2.5rem;
    }

    .vsl-video-wrapper {
        width: 95%;
        aspect-ratio: 16/9;
    }

    .vsl-header {
        padding: 1rem 1.5rem;
    }

    .vsl-header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-logo-img {
        height: 40px;
    }

    .vsl-header-message {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .vsl-timer-bar {
        width: 95%;
        margin: 1.5rem auto 0;
    }

    .timer-bar-content {
        padding: 1.25rem 1.5rem;
    }

    .timer-display {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }

    .countdown-ring-small {
        width: 50px;
        height: 50px;
    }

    .countdown-text-small span {
        font-size: 1.2rem;
    }

    .timer-message-text {
        font-size: 1rem;
    }

    .timer-message-text strong {
        font-size: 1.1rem;
    }

    .countdown-status-inline {
        font-size: 0.8rem;
    }

    .vsl-timer-bar .vsl-unlock-message {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
    }

    .audio-button {
        width: 100px;
        height: 100px;
    }

    .audio-icon {
        width: 70px;
        height: 70px;
    }

    .audio-icon i {
        font-size: 2rem;
    }

    .audio-primary {
        font-size: 1.5rem;
    }

    .audio-secondary {
        font-size: 0.9rem;
    }

    .mini-player {
        width: 280px;
        bottom: 10px;
        right: 10px;
    }

    #mini-youtube-player {
        height: 158px;
    }
}

@media (max-width: 480px) {
    /* Tap to Start Overlay - Small Mobile */
    .tap-to-start-content {
        padding: 2rem 1.5rem;
    }
    
    .tap-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .tap-icon {
        width: 80px;
        height: 80px;
    }
    
    .tap-icon i {
        font-size: 2.5rem;
    }
    
    .tap-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .tap-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tap-hand-indicator {
        font-size: 2rem;
    }

    .vsl-video-wrapper {
        width: 100%;
        border-radius: 0;
    }

    .vsl-container {
        padding: 1rem;
        padding-top: 90px;
        padding-bottom: 2rem;
        min-height: 100vh;
    }

    .vsl-header {
        padding: 0.75rem 1rem;
    }

    .header-logo-img {
        height: 35px;
    }

    .vsl-header-message {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .vsl-header-message i {
        font-size: 1rem;
    }

    .vsl-timer-bar {
        width: 100%;
        margin: 1rem auto 1.5rem;
        border-radius: 0;
    }

    .timer-bar-content {
        padding: 1rem;
    }

    .timer-display {
        gap: 0.75rem;
    }

    .countdown-ring-small {
        width: 45px;
        height: 45px;
    }

    .countdown-text-small span {
        font-size: 1.1rem;
    }

    .timer-message-text {
        font-size: 0.9rem;
    }

    .timer-message-text strong {
        font-size: 1rem;
    }

    .vsl-timer-bar .vsl-unlock-message {
        font-size: 0.9rem;
        padding: 1rem;
        gap: 0.5rem;
    }

    .audio-button {
        width: 80px;
        height: 80px;
    }

    .audio-icon {
        width: 60px;
        height: 60px;
    }

    .audio-icon i {
        font-size: 1.5rem;
    }

    .audio-primary {
        font-size: 1.2rem;
    }

    .mini-player {
        width: 240px;
        bottom: 10px;
        right: 10px;
    }

    #mini-youtube-player {
        height: 135px;
    }

    .mini-player-header {
        padding: 8px 10px;
    }

    .mini-player-title {
        font-size: 0.75rem;
    }
    
    /* VSL Container mobile fixes */
    .vsl-container {
        padding-top: 100px;
        padding-bottom: 2rem;
        min-height: 100vh;
    }
    
    /* Timer bar mobile centering */
    .vsl-timer-bar {
        width: 95%;
        margin: 1.5rem auto 1.5rem;
    }
    
    .timer-bar-content {
        padding: 1rem;
    }
    
    .vsl-timer-bar .vsl-unlock-message {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
}