/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #08080c;
    color: #e4e4e7;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ИНЛАЙН SVG-ИКОНКИ ===== */
.ic {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 12, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1a22;
    z-index: 100;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
}

.logo .ic {
    color: #4facfe;
    font-size: 26px;
}

.logo span {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: #8888a0;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.nav a:hover {
    color: #e4e4e7;
}

.btn-nav {
    padding: 8px 20px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 30px;
    color: #08080c;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
}

.btn-nav-mobile {
    display: none;
}

.desktop-only {
    display: flex;
}

/* ===== БУРГЕР-МЕНЮ ===== */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #e4e4e7;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: #8888a0;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-desc strong {
    color: #e4e4e7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    border-radius: 30px;
    color: #08080c;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(79, 172, 254, 0.35);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid #2a2a36;
    border-radius: 30px;
    color: #e4e4e7;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #1a1a22;
    border-color: #4facfe;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #e4e4e7;
}

.stat-label {
    font-size: 14px;
    color: #666680;
}

/* ============================================================
   АНИМЕ-ГЛАЗ — НОВАЯ ВЕРСИЯ
   Без бровей и век, чистая магия и свечение
   ============================================================ */

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-scene {
    width: 420px;
    height: 420px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ============================================================
   МАГИЧЕСКИЕ КОЛЬЦА ВРАЩЕНИЯ
   ============================================================ */
.eye-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-top-color: rgba(79, 172, 254, 0.4);
    border-right-color: rgba(0, 242, 254, 0.2);
    animation: ringSpin 8s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    border-bottom-color: rgba(79, 172, 254, 0.3);
    border-left-color: rgba(0, 242, 254, 0.15);
    animation: ringSpin 12s linear infinite reverse;
}

.ring-3 {
    width: 200px;
    height: 200px;
    border-top-color: rgba(79, 172, 254, 0.25);
    border-right-color: rgba(0, 242, 254, 0.1);
    animation: ringSpin 6s linear infinite;
    border-style: dashed;
}

@keyframes ringSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Злой режим — кольца становятся красными и быстрее */
.eye-scene.evil .ring-1 {
    border-top-color: rgba(255, 50, 50, 0.6);
    border-right-color: rgba(255, 100, 100, 0.3);
    animation-duration: 3s;
}

.eye-scene.evil .ring-2 {
    border-bottom-color: rgba(255, 50, 50, 0.5);
    border-left-color: rgba(255, 100, 100, 0.25);
    animation-duration: 4s;
}

.eye-scene.evil .ring-3 {
    border-top-color: rgba(255, 50, 50, 0.4);
    border-right-color: rgba(255, 100, 100, 0.2);
    animation-duration: 2s;
}

/* ============================================================
   ВНЕШНЕЕ СВЕЧЕНИЕ (АУРА)
   ============================================================ */
.eye-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(79, 172, 254, 0.2) 0%, 
        rgba(79, 172, 254, 0.08) 40%, 
        rgba(0, 242, 254, 0.04) 70%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
    animation: auraPulse 3s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.eye-scene.evil .eye-aura {
    background: radial-gradient(circle, 
        rgba(255, 30, 30, 0.35) 0%, 
        rgba(255, 30, 30, 0.12) 40%, 
        rgba(200, 0, 0, 0.06) 70%, 
        transparent 100%);
    animation: auraEvil 0.6s ease-in-out infinite alternate;
}

@keyframes auraEvil {
    0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

/* ============================================================
   САМ ГЛАЗ
   ============================================================ */
.eye-main {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Склера */
.eye-sclera {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 50% 45%, 
        #ffffff 0%, 
        #f8f8ff 30%, 
        #e8e8f0 60%, 
        #d5d5e0 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 40px rgba(79, 172, 254, 0.3),
        0 0 80px rgba(79, 172, 254, 0.15),
        inset 0 0 30px rgba(79, 172, 254, 0.05);
    transition: all 0.3s ease;
    overflow: visible;
}

.eye-scene.evil .eye-sclera {
    background: radial-gradient(circle at 50% 45%, 
        #fff5f5 0%, 
        #ffe0e0 30%, 
        #ffcccc 60%, 
        #ffb8b8 100%);
    box-shadow: 
        0 0 50px rgba(255, 30, 30, 0.5),
        0 0 100px rgba(255, 30, 30, 0.2),
        inset 0 0 30px rgba(255, 0, 0, 0.1);
}

/* РАДУЖКА */
.eye-iris {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, 
        #7ec8f8 0%, 
        #4facfe 20%, 
        #2d8ae0 45%, 
        #1a5fb4 65%, 
        #0e3d7a 85%, 
        #072550 100%);
    box-shadow: 
        0 0 25px rgba(79, 172, 254, 0.5),
        inset 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.eye-scene.evil .eye-iris {
    background: radial-gradient(circle at 40% 35%, 
        #ff5555 0%, 
        #ff1a1a 20%, 
        #cc0000 45%, 
        #990000 65%, 
        #660000 85%, 
        #330000 100%);
    box-shadow: 
        0 0 35px rgba(255, 0, 0, 0.6),
        inset 0 2px 8px rgba(0,0,0,0.25);
}

/* ЗРАЧОК */
.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #050510;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 6px rgba(0,0,0,0.8),
        0 0 15px rgba(0,0,0,0.3);
}

.eye-scene.evil .eye-pupil {
    width: 50px;
    height: 50px;
    background: #000;
    box-shadow: 
        inset 0 3px 10px rgba(0,0,0,0.9),
        0 0 25px rgba(0,0,0,0.5);
}

/* БЛИКИ В ЗРАЧКЕ */
.pupil-sparkle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
}

.ps-main {
    width: 12px;
    height: 12px;
    top: 6px;
    right: 8px;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.ps-small {
    width: 5px;
    height: 5px;
    bottom: 8px;
    left: 6px;
    opacity: 0.7;
}

.ps-tiny {
    width: 3px;
    height: 3px;
    top: 15px;
    left: 8px;
    opacity: 0.5;
}

/* БЛИК НА СКЛЕРЕ */
.sclera-shine {
    position: absolute;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    pointer-events: none;
}

.shine-1 {
    top: 20px;
    left: 30px;
    width: 35px;
    height: 18px;
    transform: rotate(-15deg);
}

.shine-2 {
    bottom: 18px;
    right: 25px;
    width: 22px;
    height: 11px;
    transform: rotate(8deg);
}

/* ============================================================
   ПАРЯЩИЕ ЧАСТИЦЫ
   ============================================================ */
.eye-particles {
    position: absolute;
    inset: -80px;
    pointer-events: none;
    z-index: 3;
}

.eye-particle {
    position: absolute;
    color: rgba(79, 172, 254, 0.4);
    animation: particleFloat 6s ease-in-out infinite;
    transition: color 0.3s ease;
}

.eye-scene.evil .eye-particle {
    color: rgba(255, 50, 50, 0.6);
}

.ep1 { top: 10%; left: 10%; font-size: 18px; animation-delay: 0s; }
.ep2 { top: 5%; right: 15%; font-size: 14px; animation-delay: 0.8s; }
.ep3 { top: 45%; left: 2%; font-size: 22px; animation-delay: 1.6s; }
.ep4 { top: 45%; right: 2%; font-size: 16px; animation-delay: 2.4s; }
.ep5 { bottom: 10%; left: 18%; font-size: 20px; animation-delay: 3.2s; }
.ep6 { bottom: 5%; right: 12%; font-size: 15px; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1); 
        opacity: 0.2; 
    }
    20% { 
        transform: translateY(-20px) translateX(10px) scale(1.3); 
        opacity: 0.7; 
    }
    40% { 
        transform: translateY(-5px) translateX(-5px) scale(0.9); 
        opacity: 0.4; 
    }
    60% { 
        transform: translateY(15px) translateX(-10px) scale(1.1); 
        opacity: 0.6; 
    }
    80% { 
        transform: translateY(5px) translateX(8px) scale(0.8); 
        opacity: 0.3; 
    }
}

/* ============================================================
   ВСПЫШКИ ПРИ НАВЕДЕНИИ
   ============================================================ */
.eye-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: none;
}

.eye-scene.evil .eye-flash {
    animation: flashBurst 0.5s ease-out forwards;
}

@keyframes flashBurst {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(30); opacity: 0; }
}

/* ===== КНОПКИ — КРАСНЫЙ ЭФФЕКТ ===== */
.evil-trigger {
    transition: all 0.25s ease;
}

.evil-trigger:hover,
.evil-trigger:active {
    background: linear-gradient(135deg, #cc0000, #ff1a1a) !important;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4) !important;
    border-color: #ff3333 !important;
    color: #fff !important;
}

.btn-secondary.evil-trigger:hover,
.btn-secondary.evil-trigger:active {
    background: rgba(255, 0, 0, 0.12) !important;
    border: 1px solid rgba(255, 0, 0, 0.3) !important;
    color: #ff6666 !important;
}

.step-btn.evil-trigger:hover,
.step-btn.evil-trigger:active {
    background: linear-gradient(135deg, #cc0000, #ff1a1a) !important;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4) !important;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    --accent: #4facfe;
    position: relative;
    background:
        radial-gradient(120% 120% at 0% 0%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 45%),
        linear-gradient(160deg, #14141d 0%, #0d0d14 100%);
    border: 1px solid #1e1e28;
    border-radius: 22px;
    padding: 32px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Верхняя акцентная линия, "заливающаяся" на hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

/* Мягкое свечение акцентом по краю на hover */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 55%, transparent), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow:
        0 20px 50px -12px color-mix(in srgb, var(--accent) 35%, transparent),
        0 4px 16px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Декоративное угловое пятно */
.feature-corner {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent) 0%, transparent 70%);
    opacity: 0.6;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.feature-card:hover .feature-corner {
    opacity: 1;
    transform: scale(1.15);
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--accent);
    background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 24%, #12121a), color-mix(in srgb, var(--accent) 8%, #101018));
    border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--accent) 25%, transparent);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px) rotate(-6deg) scale(1.06);
    box-shadow: 0 10px 26px -6px color-mix(in srgb, var(--accent) 55%, transparent);
}

.feature-card h3 {
    position: relative;
    font-size: 19px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--accent);
}

.feature-card p {
    position: relative;
    color: #8b8ba2;
    font-size: 14.5px;
    line-height: 1.7;
}

/* ===== КАРУСЕЛЬ ===== */
.mobile-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
    margin: 0 -10px;
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0;
    padding: 4px 0;
    width: 100%;
    max-width: 100%;
}

.carousel-track .feature-card {
    min-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
}

.carousel-track .feature-card h3 {
    font-size: 17px !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
}

.carousel-track .feature-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    color: #8888a0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.carousel-track .feature-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
    flex-shrink: 0 !important;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a2a36;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot.active {
    background: #4facfe;
    width: 24px;
    border-radius: 4px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 16, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #1a1a22;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #e4e4e7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: #1a1a28;
    border-color: #4facfe;
    color: #4facfe;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: #0a0a10;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(79, 172, 254, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 242, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #4facfe;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #e4e4e7, #c8c8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 18px;
    color: #8888a0;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== ШАГИ ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 70px;
    bottom: 70px;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(79, 172, 254, 0.4) 0%, 
        rgba(79, 172, 254, 0.15) 50%,
        rgba(79, 172, 254, 0.4) 100%);
    z-index: 0;
}

.step {
    display: flex;
    gap: 28px;
    background: #101018;
    border: 1px solid #1a1a22;
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.step:hover {
    transform: translateX(8px);
    border-color: rgba(79, 172, 254, 0.4);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.1), 
                inset 0 1px 0 rgba(79, 172, 254, 0.1);
    background: #141428;
}

.step:hover::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.step-number {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.step-number span {
    position: relative;
    z-index: 2;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(79, 172, 254, 0.3);
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(79, 172, 254, 0.1);
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.step:hover .step-icon-wrapper {
    background: rgba(79, 172, 254, 0.2);
    transform: scale(1.05);
}

.step-icon {
    font-size: 22px;
    color: #4facfe;
    transition: all 0.4s ease;
}

.step:hover .step-icon {
    color: #00f2fe;
    transform: rotate(-10deg);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e4e4e7;
    transition: color 0.3s;
}

.step:hover .step-content h3 {
    color: #4facfe;
}

.step-content > p {
    color: #8888a0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-content > p strong {
    color: #c8c8d4;
    font-weight: 600;
}

.step-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(79, 172, 254, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(79, 172, 254, 0.08);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #a0a0b8;
    line-height: 1.5;
}

.detail-item .ic {
    color: #4facfe;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item strong {
    color: #c8c8d4;
    font-weight: 600;
}

.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 30px;
    color: #08080c;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.35);
}

.step-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(241, 196, 15, 0.06);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 12px;
    font-size: 13px;
    color: #b8a040;
}

.step-note .ic {
    font-size: 16px;
    color: #f1c40f;
    flex-shrink: 0;
}

.step-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(46, 204, 113, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #5ddb92;
    margin-top: 8px;
}

.step-success .ic {
    font-size: 20px;
    flex-shrink: 0;
}

/* ===== ПРОГРЕСС-БАР ===== */
.steps-progress {
    max-width: 600px;
    margin: 0 auto;
}

.progress-track {
    height: 4px;
    background: #1a1a22;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 4px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.progress-label {
    font-size: 13px;
    color: #555570;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.progress-label.active {
    color: #4facfe;
    font-weight: 600;
}

.progress-label.completed {
    color: #2ecc71;
}

.progress-label:hover {
    color: #8888a0;
}

.progress-label.active:hover {
    color: #4facfe;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #1a1a22;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question span {
    color: #e4e4e7;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    gap: 16px;
    user-select: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 2px solid #4facfe;
    outline-offset: 4px;
    border-radius: 6px;
}

.faq-question span {
    transition: color 0.3s ease;
    color: #c8c8d4;
}

.faq-question .ic {
    color: #8888a0;
    transition: all 0.3s ease;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item.open .faq-question .ic {
    transform: rotate(180deg);
    color: #4facfe;
}

.faq-item.open .faq-question span {
    color: #e4e4e7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    color: #8888a0;
    font-size: 15px;
    opacity: 0;
    padding-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 12px;
    opacity: 1;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #13132a, #1a1a3a);
    border: 1px solid #2a2a4a;
    border-radius: 30px;
    padding: 64px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-box p {
    color: #8888a0;
    font-size: 18px;
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid #1a1a22;
    background: #08080c;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand .ic {
    color: #4facfe;
    font-size: 24px;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    color: #666680;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #8888a0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #e4e4e7;
}

.footer-bottom {
    border-top: 1px solid #1a1a22;
    padding-top: 24px;
    text-align: center;
    color: #666680;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #8888a0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-legal a:hover {
    color: #4facfe;
}

/* ===== ПРАВОВЫЕ СТРАНИЦЫ ===== */
.legal {
    padding: 140px 0 80px;
    min-height: 70vh;
}

.legal .container {
    max-width: 820px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8888a0;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 28px;
    transition: 0.2s;
}

.legal-back:hover {
    color: #4facfe;
}

.legal h1 {
    font-size: 38px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #e4e4e7, #c8c8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal .legal-updated {
    color: #666680;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal h2 {
    font-size: 22px;
    margin: 36px 0 14px;
    color: #e4e4e7;
}

.legal p,
.legal li {
    color: #a0a0b8;
    font-size: 15px;
    line-height: 1.8;
}

.legal ul {
    padding-left: 22px;
    margin: 10px 0;
}

.legal li {
    margin-bottom: 8px;
}

.legal a {
    color: #4facfe;
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

.legal .legal-note {
    margin-top: 40px;
    padding: 20px 24px;
    background: rgba(79, 172, 254, 0.06);
    border: 1px solid rgba(79, 172, 254, 0.15);
    border-radius: 14px;
    color: #b8c4d8;
    font-size: 14px;
}

@media (max-width: 600px) {
    .legal { padding: 110px 0 60px; }
    .legal h1 { font-size: 28px; }
    .legal h2 { font-size: 19px; }
}

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin: 0 auto 32px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px 40px;
    }

    .stat {
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-box {
        padding: 48px 32px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .eye-scene {
        width: 320px;
        height: 320px;
    }

    .eye-sclera {
        width: 130px;
        height: 130px;
    }

    .eye-iris {
        width: 75px;
        height: 75px;
    }

    .eye-pupil {
        width: 32px;
        height: 32px;
    }

    .eye-scene.evil .eye-pupil {
        width: 42px;
        height: 42px;
    }

    .ring-1 { width: 260px; height: 260px; }
    .ring-2 { width: 210px; height: 210px; }
    .ring-3 { width: 160px; height: 160px; }

    .steps {
        max-width: 100%;
        gap: 24px;
    }
    
    .steps::before {
        left: 31px;
        top: 55px;
        bottom: 55px;
    }
    
    .step {
        padding: 28px 24px;
        gap: 20px;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
    }
    
    .step-number span {
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 19px;
    }
    
    .step-content > p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0f0f18;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 20px;
        border-left: 1px solid #1a1a22;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        font-size: 18px;
        padding: 8px 0;
        width: 100%;
        border-bottom: 1px solid transparent;
    }

    .nav a:hover {
        border-bottom-color: #4facfe;
    }

    .btn-nav-mobile {
        display: flex;
        padding: 12px 24px;
        background: linear-gradient(135deg, #4facfe, #00f2fe);
        border-radius: 30px;
        color: #08080c;
        font-weight: 600;
        text-decoration: none;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
        width: 100%;
        justify-content: center;
        transition: 0.3s;
    }

    .btn-nav-mobile:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
    }

    .desktop-grid {
        display: none !important;
    }

    .mobile-carousel {
        display: block;
    }

    .features-grid {
        display: none !important;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-nav {
        padding: 6px 16px;
        font-size: 14px;
        margin-left: auto;
    }

    .logo {
        font-size: 18px;
    }

    .logo .ic {
        font-size: 20px;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 13px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 16px;
    }

    .section-tag {
        font-size: 12px;
    }

    .features {
        padding: 50px 0;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .steps {
        gap: 20px;
        margin-bottom: 40px;
    }

    .steps::before {
        left: 24px;
        top: 45px;
        bottom: 45px;
        width: 1.5px;
    }

    .step {
        padding: 20px 16px;
        gap: 16px;
        border-radius: 18px;
    }

    .step:hover {
        transform: translateX(4px);
    }

    .step-number {
        width: 36px;
        height: 36px;
    }

    .step-number span {
        font-size: 16px;
    }

    .step-ring {
        border-width: 1.5px;
    }

    .step-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .step-icon {
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .step-content > p {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .step-detail {
        padding: 14px;
        gap: 8px;
        margin-bottom: 14px;
        border-radius: 10px;
    }

    .detail-item {
        font-size: 12px;
        gap: 8px;
    }

    .detail-item .ic {
        font-size: 12px;
    }

    .step-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .step-note {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
        border-radius: 10px;
    }

    .step-note .ic {
        font-size: 14px;
    }

    .step-success {
        padding: 12px 16px;
        font-size: 13px;
        gap: 8px;
        border-radius: 10px;
    }

    .step-success .ic {
        font-size: 16px;
    }

    .steps-progress {
        max-width: 100%;
    }

    .progress-track {
        height: 3px;
    }

    .progress-labels {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .progress-label {
        font-size: 11px;
    }

    .faq {
        padding: 50px 0;
    }

    .faq-question {
        font-size: 15px;
        gap: 12px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-item {
        padding: 14px 0;
    }

    .cta {
        padding: 50px 0;
    }

    .cta-box {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-box .btn-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .footer {
        padding: 32px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand span {
        font-size: 18px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 16px;
    }

    .eye-scene {
        width: 260px;
        height: 260px;
    }

    .eye-sclera {
        width: 110px;
        height: 110px;
    }

    .eye-iris {
        width: 62px;
        height: 62px;
    }

    .eye-pupil {
        width: 26px;
        height: 26px;
    }

    .eye-scene.evil .eye-pupil {
        width: 35px;
        height: 35px;
    }

    .ring-1 { width: 210px; height: 210px; }
    .ring-2 { width: 170px; height: 170px; }
    .ring-3 { width: 130px; height: 130px; }

    .eye-particle { font-size: 12px; }
    .ep3 { font-size: 16px; }
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .mobile-carousel {
        padding: 0 20px;
    }

    .carousel-arrow.prev {
        left: -2px;
    }

    .carousel-arrow.next {
        right: -2px;
    }

    .step {
        padding: 16px 14px;
        gap: 12px;
        border-radius: 16px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
    }
    
    .step-number span {
        font-size: 14px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content > p {
        font-size: 12px;
    }
    
    .detail-item {
        font-size: 11px;
    }
    
    .step-btn {
        width: 100%;
        justify-content: center;
    }

    .eye-scene {
        width: 200px;
        height: 200px;
    }

    .eye-sclera {
        width: 90px;
        height: 90px;
    }

    .eye-iris {
        width: 50px;
        height: 50px;
    }

    .eye-pupil {
        width: 22px;
        height: 22px;
    }

    .eye-scene.evil .eye-pupil {
        width: 30px;
        height: 30px;
    }

    .ring-1 { width: 170px; height: 170px; }
    .ring-2 { width: 135px; height: 135px; }
    .ring-3 { width: 105px; height: 105px; }

    .eye-particle { font-size: 10px; }
    .ep3 { font-size: 13px; }
}

@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 14px;
        padding: 12px 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .cta-box h2 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .step {
        padding: 16px 12px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .eye-scene {
        width: 160px;
        height: 160px;
    }

    .eye-sclera {
        width: 75px;
        height: 75px;
    }

    .eye-iris {
        width: 42px;
        height: 42px;
    }

    .eye-pupil {
        width: 18px;
        height: 18px;
    }

    .eye-scene.evil .eye-pupil {
        width: 25px;
        height: 25px;
    }

    .ring-1 { width: 140px; height: 140px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 85px; height: 85px; }

    .eye-particle { font-size: 8px; }
    .ep3 { font-size: 11px; }
}

/* ============================================================
   ПЛАВАЮЩИЙ ГЛАЗ (ПК и мобильные): бегает по горизонтали
   и наводит лазер на кнопки запуска бота. По умолчанию — размер
   для ПК (крупнее), ниже переопределяется под мобильные.
   ============================================================ */
.floating-eye {
    display: block;
    position: fixed;
    left: 0;
    bottom: 32px;
    width: 88px;
    height: 88px;
    z-index: 95;
    pointer-events: none;
    opacity: 0;
    transform: translateX(var(--eye-x, 24px));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.floating-eye.visible {
    opacity: 1;
}

.fe-ball {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #e8f4ff 45%, #b6d2ec 100%);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5), 0 0 26px rgba(79, 172, 254, 0.6), inset 0 -6px 14px rgba(60, 90, 130, 0.35);
    overflow: hidden;
    transform: scale(0.4);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.floating-eye.visible .fe-ball {
    transform: scale(1);
}

.fe-iris {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #6fc0ff 0%, #1a6fd4 58%, #0a3b7a 100%);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.18s ease-out, background 0.4s ease;
    will-change: transform;
}

.fe-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 21px;
    height: 21px;
    margin: -10.5px 0 0 -10.5px;
    border-radius: 50%;
    background: #05060a;
}

.fe-glint {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.fe-lid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px rgba(120, 160, 210, 0.4);
}

.fe-laser {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 5px;
    width: 0;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(255, 45, 45, 0) 0%, rgba(255, 70, 70, 0.85) 25%, #ff2b2b 100%);
    border-radius: 5px;
    opacity: 0;
    box-shadow: 0 0 12px 2px rgba(255, 45, 45, 0.85);
    z-index: -1;
    transition: opacity 0.2s ease;
}

.fe-laser::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
    border-radius: 50%;
    background: #ff6060;
    box-shadow: 0 0 16px 5px rgba(255, 45, 45, 0.9);
}

.floating-eye.firing .fe-laser {
    opacity: 1;
    animation: laserFlicker 0.1s infinite alternate;
}

/* Сильная дрожь глаза при наведении на кнопку */
.floating-eye.firing .fe-ball {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 45, 45, 0.9), inset 0 -6px 14px rgba(130, 40, 40, 0.4);
    animation: eyeShake 0.07s linear infinite;
}

.floating-eye.firing .fe-iris {
    background: radial-gradient(circle at 50% 45%, #ff8080 0%, #d41a1a 58%, #7a0a0a 100%);
}

@keyframes laserFlicker {
    from { filter: brightness(1); }
    to { filter: brightness(1.5); }
}

@keyframes eyeShake {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    15%  { transform: translate(-4px, 3px) rotate(-10deg) scale(1.07); }
    30%  { transform: translate(4px, -3px) rotate(9deg) scale(0.95); }
    45%  { transform: translate(-4px, -3px) rotate(-8deg) scale(1.06); }
    60%  { transform: translate(4px, 3px) rotate(10deg) scale(0.96); }
    75%  { transform: translate(-3px, 4px) rotate(-9deg) scale(1.05); }
    90%  { transform: translate(3px, -4px) rotate(7deg) scale(0.98); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* Уменьшенный вариант для мобильных */
@media (max-width: 768px) {
    .floating-eye {
        bottom: 22px;
        width: 54px;
        height: 54px;
        transform: translateX(var(--eye-x, 16px));
    }

    .fe-ball {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 18px rgba(79, 172, 254, 0.55), inset 0 -4px 10px rgba(60, 90, 130, 0.35);
    }

    .fe-iris {
        width: 28px;
        height: 28px;
        margin: -14px 0 0 -14px;
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    }

    .fe-pupil {
        width: 13px;
        height: 13px;
        margin: -6.5px 0 0 -6.5px;
    }

    .fe-glint {
        top: 2px;
        right: 2px;
        width: 4px;
        height: 4px;
    }

    .fe-lid {
        box-shadow: inset 0 0 0 2px rgba(120, 160, 210, 0.4);
    }

    .fe-laser {
        height: 3px;
        border-radius: 3px;
        box-shadow: 0 0 8px 1px rgba(255, 45, 45, 0.8);
    }

    .fe-laser::after {
        right: -3px;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        box-shadow: 0 0 12px 4px rgba(255, 45, 45, 0.9);
    }

    .floating-eye.firing .fe-ball {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 45, 45, 0.9), inset 0 -4px 10px rgba(130, 40, 40, 0.4);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-eye,
    .fe-iris,
    .fe-ball,
    .fe-laser {
        transition: none;
    }
    .floating-eye.firing .fe-laser,
    .floating-eye.firing .fe-ball {
        animation: none;
    }
}