/* Estilos migrados desde index.html para el robot y animaciones */
.ai-hero-robot-outer {
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:36px 0 28px 0;
    background:
        radial-gradient(60% 50% at 50% 40%, rgba(154, 216, 255, 0.12), rgba(0, 0, 0, 0) 70%),
        radial-gradient(80% 80% at 50% 90%, rgba(255, 230, 166, 0.08), rgba(0, 0, 0, 0) 70%);
}
.ai-hero-mobile {
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.ai-hero-bot-card-mobile {
    display:flex;
    flex-direction:column;
    align-items:center;
    --ai-bot-progress: 0;
}
.ai-hero-bot-anim-mobile {
    position:relative;
    width:200px;
    height:200px;
    max-width:90vw;
    max-height:40vw;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ai-hero-bot-anim-mobile::before,
.ai-hero-bot-anim-mobile::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    pointer-events: none;
}
.ai-hero-bot-anim-mobile::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(154, 216, 255, 0.18), rgba(154, 216, 255, 0) 55%),
        radial-gradient(circle at 30% 30%, rgba(255, 230, 166, 0.12), rgba(0, 0, 0, 0) 60%);
    filter: blur(2px);
    animation: auraPulse 3.8s ease-in-out infinite, auraHue 7.2s ease-in-out infinite;
}
.ai-hero-bot-anim-mobile::after {
    border: 1px solid rgba(154, 216, 255, 0.35);
    box-shadow: 0 0 24px rgba(154, 216, 255, 0.28), inset 0 0 18px rgba(255, 230, 166, 0.18);
    animation: orbitSpin 7.5s linear infinite;
}
.ai-hero-radar {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, rgba(154, 216, 255, 0.0), rgba(154, 216, 255, 0.25), rgba(154, 216, 255, 0.0) 35%),
        radial-gradient(circle at 50% 50%, rgba(154, 216, 255, 0.06), rgba(0, 0, 0, 0) 60%);
    mix-blend-mode: screen;
    opacity: 0.5;
    filter: blur(0.2px);
    animation: radarSweep 3.2s linear infinite;
    pointer-events: none;
}
.ai-hero-particles {
    position: absolute;
    inset: -6px;
    pointer-events: none;
    animation: particlesOrbit 12s linear infinite;
}
.ai-hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(154, 216, 255, 0.95);
    box-shadow: 0 0 6px rgba(154, 216, 255, 0.6);
    animation: particleFloat 3.6s ease-in-out infinite, particleTwinkle 1.6s ease-in-out infinite;
}
.ai-hero-particle.p1 { left: 10%; top: 16%; animation-delay: 0.1s; }
.ai-hero-particle.p2 { left: 78%; top: 18%; animation-delay: 0.6s; }
.ai-hero-particle.p3 { left: 20%; top: 76%; animation-delay: 1.1s; }
.ai-hero-particle.p4 { left: 84%; top: 70%; animation-delay: 1.5s; }
.ai-hero-particle.p5 { left: 48%; top: 8%; animation-delay: 0.9s; }
.ai-hero-particle.p6 { left: 50%; top: 88%; animation-delay: 1.8s; }
.ai-hero-particle.p7 { left: 32%; top: 28%; animation-delay: 0.3s; }
.ai-hero-particle.p8 { left: 64%; top: 34%; animation-delay: 1.3s; }
.ai-hero-particle.p9 { left: 30%; top: 62%; animation-delay: 0.8s; }
.ai-hero-particle.p10 { left: 70%; top: 60%; animation-delay: 1.9s; }
#ai-robot-svg {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    animation: robotFloat 4.8s ease-in-out infinite, robotGlow 3.2s ease-in-out infinite;
}
#robotMouth {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.12s ease-out;
}
.ai-bot-icons-animated {
    position:absolute;
    left:50%;
    top:-18px;
    width:200px;
    height:48px;
    pointer-events:none;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:32px;
}
.ai-bot-icons-bottom {
    position:absolute;
    left:50%;
    top:calc(100% + 4px);
    width:200px;
    height:48px;
    pointer-events:none;
    transform:translateX(-50%);
    z-index:3;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:32px;
}
.ai-hero-bot-progress,
.ai-hero-bot-progress-mobile {
    position: absolute;
    left: 50%;
    top: calc(100% + 68px);
    transform: translate(-50%,0);
    width: 220px;
    height: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.32);
    border-radius: 14px;
    box-shadow: 0 2px 12px #00eaff33;
    overflow: hidden;
}
.ai-bot-bar-animated {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg,#00d7ff 0%,#43c8ff 40%,#f7f6c5 100%);
    background-size: 200% 100%;
    animation: aiBotBarMove 4.2s linear infinite;
    box-shadow: 0 0 10px rgba(0, 215, 255, 0.7), 0 2px 10px rgba(0, 215, 255, 0.3);
    transition: width 2.2s cubic-bezier(.4,0,.2,1);
    border-radius: 12px;
    position: absolute;
    left: 0; top: 0;
}
#ai-bot-bar-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #0b1b26;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 4px rgba(0, 215, 255, 0.45), 0 0 2px rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 2;
    width: 100%;
    text-align: center;
}
@keyframes aiBotBarMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}
.ai-hero-bot-title-mobile {
    margin-top:110px;
    text-align:center;
    font-size:1.1em;
    animation:fadeInUp 1s 0.2s both;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    display: inline-block;
    color: #eaf8ff;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 10px;
}
.ai-hero-bot-desc-mobile {
    margin-top:12px;
    text-align:center;
    font-size:1em;
    animation:fadeInUp 1s 1s both;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    display: inline-block;
    color: #d6f3ff;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 10px;
}
.page-index .ai-hero-bot-title.tech-hide,
.page-index .ai-hero-bot-desc.tech-hide {
    opacity: 0;
    transform: translateY(5px);
    filter: blur(0.4px);
    transition: opacity 1.2s cubic-bezier(.22,.61,.36,1), transform 1.2s cubic-bezier(.22,.61,.36,1), filter 1.2s cubic-bezier(.22,.61,.36,1);
}
.page-index .ai-hero-bot-title.tech-show,
.page-index .ai-hero-bot-desc.tech-show {
    opacity: 1;
    transform: translateY(0);
    filter: none;
    transition: opacity 1.2s cubic-bezier(.22,.61,.36,1), transform 1.2s cubic-bezier(.22,.61,.36,1), filter 1.2s cubic-bezier(.22,.61,.36,1);
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.ai-bot-icons-animated .tech-icon,
.ai-bot-icons-bottom .tech-icon {
    font-size: 2.1em;
    color: #9ad8ff;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(154, 216, 255, 0.6));
    animation: techIconFloat 3.2s infinite ease-in-out;
    position: static;
}
.ai-bot-icons-animated .icon0 { animation-delay: 0s; }
.ai-bot-icons-animated .icon1 { animation-delay: 0.3s; }
.ai-bot-icons-animated .icon3 { animation-delay: 0.6s; }
.ai-bot-icons-bottom .iconb0 { animation-delay: 0s; }
.ai-bot-icons-bottom .iconb1 { animation-delay: 0.3s; }
.ai-bot-icons-bottom .iconb2 { animation-delay: 0.6s; }
@media (max-width: 600px) {
    .ai-hero-robot-outer {
        padding: 24px 0 18px 0;
    }

    .ai-hero-mobile,
    .ai-hero-bot-card-mobile {
        width: 100%;
        align-items: center;
    }

    .ai-hero-bot-anim-mobile {
        width: 200px;
        height: 200px;
        max-width: 90vw;
        max-height: 90vw;
        margin: 0 auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ai-bot-icons-animated,
    .ai-bot-icons-bottom {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 48px;
        gap: 26px;
    }

    .ai-bot-icons-animated {
        top: -18px;
    }

    .ai-bot-icons-bottom {
        top: calc(100% + 4px);
    }

    .ai-hero-bot-progress-mobile {
        position: absolute;
        left: 50%;
        top: calc(100% + 68px);
        transform: translateX(-50%);
        width: 220px;
        height: 22px;
        margin: 0;
        background: rgba(5, 20, 35, 0.6);
        border-radius: 12px;
        box-shadow: 0 2px 14px rgba(0, 234, 255, 0.25);
    }

    #ai-bot-bar {
        height: 100%;
        min-height: 16px;
        border-radius: 12px;
    }

    #ai-bot-bar-label {
        font-size: 0.95em;
        line-height: 22px;
        color: #ffffff;
        text-shadow: 0 1px 6px rgba(0, 234, 255, 0.7), 0 0 2px rgba(0, 0, 0, 0.6);
    }

    #ai-robot-svg {
        width: 140px;
        height: 140px;
        max-width: 70vw;
        max-height: 70vw;
        display: block;
        margin: 0 auto;
    }

    .ai-hero-bot-title-mobile {
        margin-top: 110px;
        font-size: 1.05em;
    }

    .ai-hero-bot-desc-mobile {
        margin-top: 10px;
        font-size: 0.98em;
    }

    /* Mobile perf: soften effects */
    .ai-hero-radar {
        display: none;
    }
    .ai-hero-bot-anim-mobile::before {
        opacity: 0.45;
        filter: blur(1.2px);
    }
    .ai-hero-bot-anim-mobile::after {
        box-shadow: 0 0 12px rgba(0, 234, 255, 0.28), inset 0 0 10px rgba(0, 234, 255, 0.2);
    }
    .ai-hero-particles {
        animation-duration: 16s;
    }
    .ai-hero-particle {
        width: 4px;
        height: 4px;
        box-shadow: 0 0 6px rgba(0, 234, 255, 0.7);
    }
    .ai-hero-particle.p7,
    .ai-hero-particle.p8,
    .ai-hero-particle.p9,
    .ai-hero-particle.p10 {
        display: none;
    }
    #ai-robot-svg {
        animation-duration: 6s, 4.6s;
    }
}
@keyframes techIconFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
    50% { transform: translateY(-18px) scale(1.13); opacity: 1; }
}
@keyframes robotFloat {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(-1.1deg); }
    50% { transform: translateY(0) rotate(0.6deg); }
    75% { transform: translateY(3px) rotate(0deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
@keyframes robotGlow {
    0% { filter: drop-shadow(0 0 6px rgba(0, 234, 255, 0.35)); }
    50% { filter: drop-shadow(0 0 14px rgba(0, 234, 255, 0.75)); }
    100% { filter: drop-shadow(0 0 6px rgba(0, 234, 255, 0.35)); }
}
@keyframes auraPulse {
    0% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(1); }
}
@keyframes auraHue {
    0% { filter: blur(2px) hue-rotate(0deg); }
    50% { filter: blur(2px) hue-rotate(40deg); }
    100% { filter: blur(2px) hue-rotate(0deg); }
}
@keyframes orbitSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.02); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes radarSweep {
    0% { transform: rotate(0deg); opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { transform: rotate(360deg); opacity: 0.6; }
}
@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes particleTwinkle {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
@keyframes particlesOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ai-hero-particles .ai-hero-particle {
    transform-origin: 50% 50%;
}
#ai-robot-svg.ai-hero-eye-flash #eyeL,
#ai-robot-svg.ai-hero-eye-flash #eyeR {
    animation: eyePulse 0.8s ease-in-out 2;
}
@keyframes eyePulse {
    0% { fill: #fff; filter: drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
    50% { fill: #b2fefa; filter: drop-shadow(0 0 10px rgba(0,234,255,0.9)); }
    100% { fill: #fff; filter: drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
}
.ai-hero-bot-anim-mobile.ai-hero-boost::before {
    opacity: 1;
    transform: scale(1.12);
    filter: blur(1.6px);
}
.ai-hero-bot-anim-mobile.ai-hero-boost #ai-robot-svg {
    animation-duration: 2.8s, 1.8s;
}
.animated-letters {
    display: inline-block;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    will-change: transform, opacity;
}
.animated-letters span {
    display: inline-block;
    opacity: 1;
    transform: translate3d(0, 12px, 0);
    animation: letterIn 0.75s cubic-bezier(.22,.61,.36,1) forwards;
    backface-visibility: hidden;
    will-change: transform, opacity;
}
.ai-bot-message span[class^="letter-"], .ai-bot-desc-message span[class^="letter-"] {
    display: inline-block;
    opacity: 1;
    transform-origin: center;
    will-change: transform, opacity;
    animation: letterFloat 4.2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.05s);
}
@keyframes letterFloat {
    0% { transform: translateY(0); opacity: 0.95; }
    35% { transform: translateY(-6px); opacity: 1; }
    70% { transform: translateY(3px); opacity: 0.9; }
    100% { transform: translateY(0); opacity: 0.95; }
}
.animated-letters span.letter-0 { animation-delay: 0.02s; }
.animated-letters span.letter-1 { animation-delay: 0.05s; }
.animated-letters span.letter-2 { animation-delay: 0.08s; }
.animated-letters span.letter-3 { animation-delay: 0.11s; }
.animated-letters span.letter-4 { animation-delay: 0.14s; }
.animated-letters span.letter-5 { animation-delay: 0.17s; }
.animated-letters span.letter-6 { animation-delay: 0.20s; }
.animated-letters span.letter-7 { animation-delay: 0.23s; }
.animated-letters span.letter-8 { animation-delay: 0.26s; }
.animated-letters span.letter-9 { animation-delay: 0.29s; }
.animated-letters span.letter-10 { animation-delay: 0.32s; }
.animated-letters span.letter-11 { animation-delay: 0.35s; }
.animated-letters span.letter-12 { animation-delay: 0.38s; }
.animated-letters span.letter-13 { animation-delay: 0.41s; }
.animated-letters span.letter-14 { animation-delay: 0.44s; }
.animated-letters span.letter-15 { animation-delay: 0.47s; }
@keyframes letterIn {
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.ai-hero-bot-title-highlight { color:#9ad8ff;font-weight:600; }

/* Improve readability while keeping glow */
.page-index .ai-hero-bot-title,
.page-index .ai-hero-bot-desc {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 234, 255, 0.4);
    letter-spacing: 0.01em;
}
.page-index .ai-hero-bot-title::after,
.page-index .ai-hero-bot-desc::after {
    content: "";
    position: absolute;
    left: -8%;
    top: 50%;
    width: 116%;
    height: 1.2em;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 234, 255, 0.18), rgba(0, 0, 0, 0));
    opacity: 0.45;
    mix-blend-mode: screen;
    animation: techScan 4.8s ease-in-out infinite;
    pointer-events: none;
}
.page-index .ai-hero-bot-title span[class^="letter-"],
.page-index .ai-hero-bot-desc span[class^="letter-"] {
    animation:
        letterIn 0.75s cubic-bezier(.22,.61,.36,1) both,
        techLetter 4.8s ease-in-out infinite,
        techLedBlink 7.2s steps(1, end) infinite,
        techGlitchX 6.8s steps(1, end) infinite;
    animation-delay:
        calc(var(--i, 0) * 0.03s),
        calc(var(--i, 0) * 0.05s),
        calc(var(--i, 0) * 0.09s),
        calc(var(--i, 0) * 0.11s);
}
.page-index .ai-hero-bot-title span[class^="letter-"]:nth-child(4n),
.page-index .ai-hero-bot-title span[class^="letter-"]:nth-child(6n),
.page-index .ai-hero-bot-desc span[class^="letter-"]:nth-child(5n),
.page-index .ai-hero-bot-desc span[class^="letter-"]:nth-child(7n) {
    animation:
        letterIn 0.75s cubic-bezier(.22,.61,.36,1) both,
        techLetterWarm 5.4s ease-in-out infinite,
        techLedBlink 7.2s steps(1, end) infinite,
        techGlitchX 6.8s steps(1, end) infinite;
}
@keyframes techLetter {
    0% {
        transform: translateY(0) translateX(0);
        color: #e8eef5;
        text-shadow: 0 0 4px rgba(232, 238, 245, 0.4);
    }
    25% {
        transform: translateY(-1px) translateX(0);
        color: #ffffff;
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
    }
    50% {
        transform: translateY(0) translateX(0);
        color: #ffe67a;
        text-shadow: 0 0 8px rgba(255, 230, 122, 0.5);
    }
    75% {
        transform: translateY(1px) translateX(0);
        color: #9ad8ff;
        text-shadow: 0 0 8px rgba(154, 216, 255, 0.45);
    }
    100% {
        transform: translateY(0) translateX(0);
        color: #e8eef5;
        text-shadow: 0 0 4px rgba(232, 238, 245, 0.4);
    }
}
@keyframes techLetterWarm {
    0% {
        transform: translateY(0) translateX(0);
        color: #f1f1f1;
        text-shadow: 0 0 4px rgba(241, 241, 241, 0.35);
    }
    25% {
        transform: translateY(-1px) translateX(0);
        color: #fff6dc;
        text-shadow: 0 0 6px rgba(255, 246, 220, 0.45);
    }
    50% {
        transform: translateY(0) translateX(0);
        color: #ffdca8;
        text-shadow: 0 0 7px rgba(255, 220, 168, 0.5);
    }
    75% {
        transform: translateY(1px) translateX(0);
        color: #bfe6ff;
        text-shadow: 0 0 8px rgba(191, 230, 255, 0.45);
    }
    100% {
        transform: translateY(0) translateX(0);
        color: #f1f1f1;
        text-shadow: 0 0 4px rgba(241, 241, 241, 0.35);
    }
}
@keyframes techLedBlink {
    0%, 100% { opacity: 1; }
    48% { opacity: 0.95; }
    49% { opacity: 1; }
    78% { opacity: 0.94; }
    79% { opacity: 1; }
}
@keyframes techGlitchX {
    0% { transform: translateY(0) translateX(0); }
    70% { transform: translateY(0) translateX(0); }
    71% { transform: translateY(0) translateX(1px); }
    72% { transform: translateY(0) translateX(-1px); }
    73% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(0) translateX(0); }
}
@keyframes techScan {
    0% { transform: translate(-18%, -50%); opacity: 0.15; }
    50% { opacity: 0.55; }
    100% { transform: translate(18%, -50%); opacity: 0.15; }
}
.ai-hero-bot-card-mobile.ai-hero-breathe .ai-hero-bot-title,
.ai-hero-bot-card-mobile.ai-hero-breathe .ai-hero-bot-desc {
    animation: textBreath 3.6s ease-in-out infinite;
}
@keyframes textBreath {
    0% {
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(0, 234, 255, 0.4);
        transform: translateY(0);
    }
    50% {
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.45),
            0 0 16px rgba(0, 234, 255, 0.7),
            0 0 26px rgba(255, 77, 216, 0.25);
        transform: translateY(-1px);
    }
    100% {
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(0, 234, 255, 0.4);
        transform: translateY(0);
    }
}
.ai-hero-bot-card-mobile.ai-hero-sync .ai-hero-bot-title,
.ai-hero-bot-card-mobile.ai-hero-sync .ai-hero-bot-desc {
    animation: textPulse 1.2s ease-in-out;
}
.ai-hero-bot-card-mobile.ai-hero-sync .ai-hero-bot-title span[class^="letter-"],
.ai-hero-bot-card-mobile.ai-hero-sync .ai-hero-bot-desc span[class^="letter-"] {
    animation-duration: 0.9s, 2.6s, 3.2s, 2.4s;
}
.ai-hero-bot-card-mobile.ai-hero-flash::before {
    opacity: 1;
    filter: blur(2px);
    transform: scale(1.08);
}
.ai-hero-bot-card-mobile.ai-hero-flash::after {
    opacity: 0.9;
}
.ai-hero-bot-card-mobile.ai-hero-flash {
    animation: aiHeroFlash 0.45s ease-out 1;
}
@keyframes aiHeroFlash {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.18); }
    100% { filter: brightness(1); }
}
@keyframes textPulse {
    0% {
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(0, 234, 255, 0.4);
        transform: translateY(0);
    }
    50% {
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.45),
            0 0 18px rgba(0, 234, 255, 0.75),
            0 0 28px rgba(255, 77, 216, 0.35);
        transform: translateY(-2px);
    }
    100% {
        text-shadow:
            0 1px 2px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(0, 234, 255, 0.4);
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    #ai-robot-svg,
    .ai-hero-bot-anim-mobile::before,
    .ai-hero-bot-anim-mobile::after,
    .ai-hero-radar,
    .ai-hero-particle,
    .ai-bot-icons-animated .tech-icon,
    .ai-bot-icons-bottom .tech-icon {
        animation: none !important;
    }
    .ai-hero-particles {
        animation: none !important;
    }
    #robotMouth {
        transition: none;
    }
    .page-index .ai-hero-bot-title::after,
    .page-index .ai-hero-bot-desc::after,
    .page-index .ai-hero-bot-title span[class^="letter-"],
    .page-index .ai-hero-bot-desc span[class^="letter-"] {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
