/* ============================================
   CRITICAL VISIBILITY FIXES - MUST SEE EVERYTHING!
   ============================================ */

/* 1. WHITE TEXT IN CTA SECTIONS - FORCED! */
.cta-section h2,
.cta-section p,
.cta-section span,
.cta-section * {
    color: white !important;
    -webkit-text-fill-color: white !important;
    text-fill-color: white !important;
    opacity: 1 !important;
}

.cta-section h2 {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
}

/* Small text under form */
.cta-section small,
.cta-section .text-muted,
.cta-section .form-note {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
}

/* 2. VIBRO WAVES ON TOP OF EVERYTHING! */
.robot-container::before,
.robot-container::after,
.robot-image::before,
.robot-image::after,
.robot-placeholder::before,
.robot-placeholder::after {
    z-index: 9999 !important;
    position: absolute !important;
    border: 4px solid #00D4FF !important;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 1),
        0 0 100px rgba(0, 212, 255, 0.8),
        0 0 150px rgba(0, 212, 255, 0.6),
        inset 0 0 50px rgba(0, 212, 255, 0.5) !important;
}

/* Make waves HUGE and VISIBLE */
@keyframes mega-visible-wave {
    0% {
        width: 150px;
        height: 150px;
        opacity: 1;
        border-width: 5px;
        box-shadow: 
            0 0 60px rgba(0, 212, 255, 1),
            0 0 120px rgba(0, 212, 255, 0.8),
            inset 0 0 60px rgba(0, 212, 255, 0.6);
    }
    50% {
        width: 350px;
        height: 350px;
        opacity: 0.7;
        border-width: 3px;
        box-shadow: 
            0 0 80px rgba(0, 212, 255, 0.8),
            0 0 160px rgba(0, 212, 255, 0.6),
            inset 0 0 80px rgba(0, 212, 255, 0.4);
    }
    100% {
        width: 550px;
        height: 550px;
        opacity: 0;
        border-width: 1px;
    }
}

.robot-container::before,
.robot-image::before,
.robot-placeholder::before {
    animation: mega-visible-wave 2.5s linear infinite !important;
}

.robot-container::after,
.robot-image::after,
.robot-placeholder::after {
    animation: mega-visible-wave 2.5s linear infinite !important;
    animation-delay: 1.25s !important;
}

/* 3. RATING BADGE NEXT TO ROBOT */
.robot-container {
    position: relative !important;
}

.robot-container::after {
    content: '⭐ 5.0' !important;
    position: absolute !important;
    top: -30px !important;
    right: -20px !important;
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000000 !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6) !important;
    z-index: 10000 !important;
    animation: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
}

/* Add separate rating badge */
.rating-badge {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000000 !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7) !important;
    z-index: 10001 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    animation: rating-glow 2s ease-in-out infinite !important;
}

@keyframes rating-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(255, 215, 0, 0.9);
    }
}

/* 4. MAKE ROBOT ICON SUPER VISIBLE */
.fa-robot,
.robot-placeholder i,
.robot-image i {
    font-size: 150px !important;
    color: #2573D1 !important;
    text-shadow: 
        0 0 30px rgba(37, 115, 209, 0.8),
        0 0 60px rgba(37, 115, 209, 0.6),
        0 0 90px rgba(37, 115, 209, 0.4) !important;
    animation: robot-pulse 2s ease-in-out infinite !important;
    z-index: 100 !important;
    position: relative !important;
}

@keyframes robot-pulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1) translateY(-5px);
        filter: brightness(1.3) drop-shadow(0 0 40px rgba(37, 115, 209, 1));
    }
}

/* Robot container improvements */
.robot-container,
.robot-image,
.robot-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 300px !important;
    position: relative !important;
    background: radial-gradient(
        circle at center,
        rgba(37, 115, 209, 0.1) 0%,
        rgba(37, 115, 209, 0.05) 40%,
        transparent 70%
    ) !important;
}

/* 5. FIRE NUMBERS IN STATS - ULTRA VISIBLE */
.stats-number,
.stats-item .number,
.metric-value,
.stats-item h3 {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    background: linear-gradient(90deg, 
        #FF0000 0%, 
        #FF4500 15%,
        #FF6B00 30%, 
        #FFA500 45%,
        #FFD700 60%,
        #FFA500 75%,
        #FF6B00 90%,
        #FF0000 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: fire-move 1s linear infinite !important;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.9)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) !important;
    text-shadow: none !important;
    position: relative !important;
    z-index: 10 !important;
    display: inline-block !important;
}

@keyframes fire-move {
    0% {
        background-position: 0% center;
        filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.9)) 
                drop-shadow(0 0 30px rgba(255, 107, 0, 0.6));
    }
    100% {
        background-position: 200% center;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) 
                drop-shadow(0 0 40px rgba(255, 140, 0, 0.6));
    }
}

/* Add fire emojis to stats */
.stats-item {
    position: relative !important;
    overflow: visible !important;
}

.stats-item::before {
    content: '🔥' !important;
    position: absolute !important;
    top: -15px !important;
    left: -10px !important;
    font-size: 35px !important;
    animation: fire-float-left 2s ease-in-out infinite !important;
    z-index: 5 !important;
}

.stats-item::after {
    content: '🔥' !important;
    position: absolute !important;
    top: -15px !important;
    right: -10px !important;
    font-size: 35px !important;
    animation: fire-float-right 2s ease-in-out infinite !important;
    animation-delay: 1s !important;
    z-index: 5 !important;
}

@keyframes fire-float-left {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-10deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-10px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes fire-float-right {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(10deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(10px) rotate(-10deg);
        opacity: 1;
    }
}

/* Make stats labels also visible */
.stats-item p,
.stats-label {
    color: #333333 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

/* Add glow to entire stats section */
.stats {
    background: linear-gradient(to bottom, 
        rgba(255, 107, 0, 0.05) 0%,
        transparent 50%,
        rgba(255, 215, 0, 0.05) 100%) !important;
    padding: 60px 0 !important;
    position: relative !important;
    overflow: visible !important;
}

/* Additional wave rings for maximum visibility */
.wave-ring-visible {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    border: 5px solid rgba(0, 212, 255, 0.8) !important;
    border-radius: 50% !important;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 1),
        0 0 80px rgba(0, 212, 255, 0.7),
        inset 0 0 40px rgba(0, 212, 255, 0.5) !important;
    animation: wave-expand 2s linear infinite !important;
    pointer-events: none !important;
    z-index: 9998 !important;
}

@keyframes wave-expand {
    0% {
        width: 200px;
        height: 200px;
        opacity: 1;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}