/* ============================================
   FINAL ROBOT HERO - ФИНАЛЬНАЯ ВЕРСИЯ
   ============================================ */

/* ЧИСТЫЙ ФОН HERO СЕКЦИИ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2573D1 0%, #4A90E2 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Простая сетка на фоне */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* КОНТЕЙНЕР ДЛЯ ПРАВОЙ ЧАСТИ С РОБОТОМ */
.hero-visual {
    position: relative;
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ГЛАВНЫЙ КОНТЕЙНЕР РОБОТА */
.robot-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* КОНТЕЙНЕРЫ ДЛЯ ЦЕНТРИРОВАНИЯ */
.robot-image,
.robot-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ГОЛОВА РОБОТА - ПРОСТАЯ И ЧЕТКАЯ */
.hero-visual .fa-robot {
    font-size: 240px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
}

/* Легкое свечение позади робота */
.robot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* КОНТЕЙНЕР ДЛЯ ТРЕХ ПЛАШЕК */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

/* СТИЛЬ ПЛАШЕК */
.float-card {
    position: absolute;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 14px 24px;
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
}

.float-card i {
    font-size: 1.2rem;
    color: #000000;
}

/* ПОЗИЦИИ ТРЕХ ПЛАШЕК */
/* Плашка 1: 5.0 рейтинг - слева сверху */
.float-card:nth-child(1) {
    top: 70px;
    left: 30px;
    animation: float-animation 4s ease-in-out infinite;
}

/* Плашка 2: +300% конверсия - справа сверху */
.float-card:nth-child(2) {
    top: 70px;
    right: 30px;
    animation: float-animation 4s ease-in-out infinite;
    animation-delay: 1.3s;
}

/* Плашка 3: 10K+ контактов/день - снизу по центру */
.float-card:nth-child(3) {
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-animation 4s ease-in-out infinite;
    animation-delay: 2.6s;
}

/* ПРОСТАЯ АНИМАЦИЯ ПЛАВАНИЯ */
@keyframes float-animation {
    0%, 100% {
        transform: translateY(0) translateX(var(--translate-x, 0));
    }
    50% {
        transform: translateY(-20px) translateX(var(--translate-x, 0));
    }
}

/* Для центральной нижней плашки */
.float-card:nth-child(3) {
    --translate-x: -50%;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .robot-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-visual .fa-robot {
        font-size: 200px !important;
    }
    
    .float-card {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

@media (max-width: 992px) {
    .hero-visual .fa-robot {
        font-size: 180px !important;
    }
    
    .float-card:nth-child(1) {
        left: 10px;
    }
    
    .float-card:nth-child(2) {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .robot-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-visual .fa-robot {
        font-size: 150px !important;
    }
    
    .float-card {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .float-card:nth-child(1),
    .float-card:nth-child(2) {
        top: 50px;
    }
    
    .float-card:nth-child(3) {
        bottom: 50px;
    }
}

/* УБИРАЕМ ВСЕ СТАРОЕ */
.robot-vibration-ring,
.vibration-ring-1,
.vibration-ring-2,
.vibration-ring-3,
.wave-ring-visible,
.pulse-ring,
.head-wave,
.floating-shape,
.shape-1,
.shape-2,
.shape-3 {
    display: none !important;
}