/* ============================================
   VISIBLE EFFECTS - STRONGER & MORE APPARENT
   ============================================ */

/* 1. CTA SECTION - FORCE WHITE TEXT */
.cta-section,
#cta {
    background: linear-gradient(135deg, #2573D1 0%, #4A90E2 100%) !important;
    color: #FFFFFF !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section * {
    color: #FFFFFF !important;
}

.cta-section h2,
.cta-section .section-title {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.cta-section p,
.cta-section .section-subtitle,
.cta-section .cta-text {
    color: #FFFFFF !important;
    opacity: 1 !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2) !important;
}

.cta-section .form-hint,
.cta-section .privacy-note,
.cta-section small {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
}

.cta-section .form-hint i,
.cta-section .privacy-note i {
    color: #FFFFFF !important;
    opacity: 0.9 !important;
}

/* 2. HERO BACKGROUND PATTERN - MORE VISIBLE */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: gradient-float 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
    animation: pattern-slide 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradient-float {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
}

@keyframes pattern-slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

/* 3. ROBOT WAVE EFFECTS - MUCH MORE VISIBLE */
.robot-display {
    position: relative !important;
}

/* Create visible pulsing waves */
.robot-display::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: wave-pulse-1 3s ease-out infinite;
    pointer-events: none;
    z-index: 5;
}

.robot-display::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: wave-pulse-2 3s ease-out infinite;
    animation-delay: 1s;
    pointer-events: none;
    z-index: 5;
}

@keyframes wave-pulse-1 {
    0% {
        width: 200px;
        height: 200px;
        opacity: 0.8;
        border-width: 4px;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes wave-pulse-2 {
    0% {
        width: 200px;
        height: 200px;
        opacity: 0.8;
        border-width: 4px;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
        border-width: 1px;
    }
}

/* Signal beams from robot head */
.robot-3d {
    position: relative !important;
}

.robot-3d::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 20%,
        rgba(255, 255, 255, 0.8) 80%,
        transparent 100%);
    animation: beam-scan 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.robot-3d::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 20%,
        rgba(255, 255, 255, 0.6) 80%,
        transparent 100%);
    animation: beam-scan 2s ease-in-out infinite;
    animation-delay: 0.5s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@keyframes beam-scan {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
}

/* Glowing particles around robot head */
.robot-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 11;
}

.robot-glow::before,
.robot-glow::after {
    content: '•';
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: particle-orbit 4s linear infinite;
}

.robot-glow::before {
    animation-delay: 0s;
}

.robot-glow::after {
    animation-delay: 2s;
}

@keyframes particle-orbit {
    0% {
        transform: rotate(0deg) translateX(60px) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(60px) rotate(-360deg);
        opacity: 0;
    }
}

/* Add more visible dots */
.glow-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glow-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: dot-float 3s ease-in-out infinite;
}

.glow-dot:nth-child(1) {
    top: 10%;
    left: 45%;
    animation-delay: 0s;
}

.glow-dot:nth-child(2) {
    top: 10%;
    left: 55%;
    animation-delay: 0.5s;
}

.glow-dot:nth-child(3) {
    top: 15%;
    left: 40%;
    animation-delay: 1s;
}

.glow-dot:nth-child(4) {
    top: 15%;
    left: 60%;
    animation-delay: 1.5s;
}

@keyframes dot-float {
    0%, 100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    25% {
        transform: translateY(-30px) scale(1);
        opacity: 1;
    }
    75% {
        transform: translateY(-60px) scale(0.5);
        opacity: 0.5;
    }
}

/* Rating badge closer to robot */
.rating-badge,
.conversion-card.rating {
    position: absolute !important;
    top: 10px !important;
    right: calc(50% - 150px) !important;
    z-index: 20 !important;
}

/* Force footer text colors */
footer .logo span {
    color: #1F2937 !important; /* Dark black */
}

footer .footer-text,
footer p {
    color: #4B5563 !important; /* Dark gray */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .robot-display::before,
    .robot-display::after,
    .robot-3d::before,
    .robot-3d::after,
    .robot-glow {
        display: none;
    }
    
    .rating-badge,
    .conversion-card.rating {
        position: static !important;
        margin: 1rem auto;
    }
}