:root {
    --bg-graphite: #1a1a1a;
    --bg-darker: #121212;
    --neon-purple: #a020f0;
    --neon-glow: 0 0 20px rgba(160, 32, 240, 0.6);
    --white-glow: 0 0 15px rgba(255, 255, 255, 0.5);
    --font-header: 'Orbitron', sans-serif;
}

/* ✅ ВИПРАВЛЕНО: додано * */
* { 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
    margin: 0; 
    padding: 0; 
}

body { 
    background-color: var(--bg-darker); 
    color: #fff; 
    font-family: 'Roboto', sans-serif; 
    line-height: 1.6; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Navbar */
.navbar { 
    background: rgba(18, 18, 18, 0.95); 
    padding: 15px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 2px solid var(--neon-purple); 
}

.nav-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-text { 
    font-family: var(--font-header); 
    font-size: 1.3rem; 
    font-weight: bold; 
}

.logo-text span { 
    color: var(--neon-purple); 
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    margin: 0; 
    padding: 0; 
}

.nav-links a { 
    color: #ccc; 
    text-decoration: none; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    font-weight: bold; 
    transition: 0.3s; 
}

.nav-links a:hover { 
    color: var(--neon-purple); 
}

.nav-btn { 
    background: var(--neon-purple); 
    padding: 10px 20px; 
    border-radius: 5px; 
    box-shadow: var(--neon-glow); 
    color: #fff; 
    text-decoration: none; 
    font-weight: bold; 
}

/* Hero */
.hero { 
    min-height: 100vh; 
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(18, 18, 18, 0.8)), url('bg.jpg') no-repeat center center/cover; 
    background-size: cover; 
    padding-top: 100px; 
    display: flex; 
    align-items: flex-start; 
}

.hero-layout { 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.hero-top-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    padding: 0 20px; 
    margin-bottom: 30px; 
}

.service-name { 
    font-family: var(--font-header); 
    font-size: clamp(2rem, 5vw, 3.5rem); 
    color: #fff; 
    text-shadow: var(--neon-glow); 
    margin: 0; 
}

.main-logo-clean { 
    max-width: 150px; 
    filter: drop-shadow(0 0 10px var(--neon-purple)); 
}

.hero-center-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
    margin-bottom: 50px; 
}

/* Slider */
.slider-wrapper { 
    max-width: 1000px; 
    width: 100%; 
    overflow: hidden; 
    border-radius: 15px; 
    border: 2px solid rgba(160,32,240,0.5); 
    box-shadow: 0 15px 50px rgba(0,0,0,0.8); 
}

.slider { 
    display: flex; 
    width: 1000%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide { 
    width: 10%;
    min-width: 10%;
}

.slide img { 
    width: 100%; 
    height: 500px; 
    object-fit: cover; 
}

.slider-dots { 
    display: flex; 
    gap: 12px; 
    justify-content: center; 
    margin-top: 20px; 
}

.slider-dot { 
    width: 14px; 
    height: 14px; 
    border-radius: 50%; 
    background: rgba(160, 32, 240, 0.3); 
    cursor: pointer; 
    transition: 0.3s; 
}

.slider-dot.active { 
    background: var(--neon-purple); 
    box-shadow: var(--neon-glow); 
}

.hero-bottom-info { 
    margin-top: 50px; 
    text-align: center; 
    width: 100%; 
}

.sub-logo-elite-large { 
    color: var(--neon-purple); 
    text-shadow: var(--white-glow); 
    font-family: var(--font-header); 
    letter-spacing: 12px; 
    margin-bottom: 45px; 
    font-size: clamp(1rem, 3vw, 1.8rem); 
    font-weight: 900; 
    text-transform: uppercase; 
}

.btn-neon { 
    padding: 20px 60px; 
    border: 2px solid var(--neon-purple); 
    color: #fff; 
    text-decoration: none; 
    font-family: var(--font-header); 
    box-shadow: var(--neon-glow); 
    transition: 0.3s; 
    font-size: 1.2rem; 
    display: inline-block; 
}

.btn-neon:hover { 
    background: var(--neon-purple); 
    box-shadow: 0 0 40px var(--neon-purple); 
}

/* About Section */
.about-section { 
    padding: 100px 0; 
    background: var(--bg-darker); 
}

.about-content { 
    max-width: 800px; 
    margin: 0 auto 40px; 
    text-align: center; 
    padding: 0 20px;
}

.section-title-left { 
    font-family: var(--font-header); 
    font-size: 2rem; 
    margin-bottom: 30px; 
    color: #fff; 
    line-height: 1.3; 
    text-align: center;
}

.about-intro { 
    font-size: 1.3rem; 
    color: #ccc; 
    margin-bottom: 25px; 
    font-style: italic; 
    line-height: 1.6; 
}

.about-text { 
    color: #aaa; 
    line-height: 1.8; 
    margin-bottom: 40px; 
    font-size: 1.1rem; 
}

.bonus-box { 
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.2), rgba(160, 32, 240, 0.1)); 
    border: 2px solid var(--neon-purple); 
    border-radius: 15px; 
    padding: 30px; 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
    margin: 0 auto 40px; 
    box-shadow: var(--neon-glow); 
}

.bonus-icon { 
    font-size: 3rem; 
}

.bonus-text { 
    color: #fff; 
    line-height: 1.6; 
    font-size: 1.1rem; 
}

.bonus-text strong { 
    color: var(--neon-purple); 
    font-size: 1.2rem; 
}

/* ✅ КНОПКА ПО ЦЕНТРУ */
.btn-about { 
    display: inline-block; 
    padding: 20px 60px; 
    background: var(--neon-purple); 
    color: #fff; 
    text-decoration: none; 
    font-family: var(--font-header); 
    font-size: 1.1rem; 
    border-radius: 8px; 
    transition: 0.3s; 
    box-shadow: var(--neon-glow);
    border: none;
    cursor: pointer;
}

.btn-about:hover { 
    background: #8b1a8b; 
    box-shadow: 0 0 40px var(--neon-purple); 
    transform: translateY(-3px); 
}

.about-image { 
    max-width: 900px; 
    width: 90%; 
    margin: 40px auto; 
    display: block;
}

.about-image img { 
    width: 100%; 
    border-radius: 15px; 
    border: 2px solid var(--neon-purple); 
    box-shadow: 0 10px 40px rgba(160, 32, 240, 0.4); 
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-graphite);
}

.section-title { 
    font-family: var(--font-header); 
    text-align: center; 
    margin-bottom: 60px; 
    font-size: 2.2rem; 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--neon-purple);
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.feature-card.featured {
    border: 2px solid var(--neon-purple);
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.1), #1a1a1a);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-header);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: #aaa;
    line-height: 1.7;
    font-size: 1rem;
}

/* Steps Section */
.steps-section { 
    padding: 100px 0; 
    background: var(--bg-graphite); 
}

.steps-grid { 
    display: flex; 
    gap: 30px; 
}

.step-card { 
    flex: 1; 
    padding: 40px; 
    background: #222; 
    border-radius: 15px; 
    position: relative; 
    border-left: 4px solid var(--neon-purple); 
}

.step-num { 
    font-family: var(--font-header); 
    color: rgba(160,32,240,0.2); 
    font-size: 4rem; 
    position: absolute; 
    top: 10px; 
    right: 20px; 
    font-weight: 900; 
}

.step-card h3 { 
    margin-bottom: 15px; 
    font-family: var(--font-header); 
}

.step-card p { 
    color: #aaa; 
    line-height: 1.6; 
}

/* Pricing */
.pricing-section { 
    padding: 100px 0; 
    background: var(--bg-darker); 
}

.price-grid { 
    display: flex; 
    gap: 30px; 
    justify-content: center; 
}

.price-card { 
    background: #1a1a1a; 
    padding: 40px; 
    border-radius: 15px; 
    border: 1px solid #333; 
    text-align: center; 
    flex: 1; 
    max-width: 350px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    transition: 0.3s; 
    position: relative;
}

.price-card:hover { 
    border-color: var(--neon-purple); 
    transform: translateY(-5px); 
}

.price-card h3 { 
    font-family: var(--font-header); 
    margin-bottom: 15px; 
    font-size: 1.4rem; 
}

.cost { 
    font-size: 3rem; 
    font-weight: 900; 
    margin: 20px 0; 
    font-family: var(--font-header); 
}

.price-card p { 
    color: #aaa; 
    margin-bottom: 20px; 
    line-height: 1.6; 
}

.btn-small { 
    margin-top: 25px; 
    padding: 12px 30px; 
    border: 1px solid var(--neon-purple); 
    color: #fff; 
    text-decoration: none; 
    font-family: var(--font-header); 
    font-size: 0.9rem; 
    transition: 0.3s; 
    display: inline-block;
}

.btn-small:hover { 
    background: var(--neon-purple); 
    box-shadow: var(--neon-glow); 
}

.price-card.bonus { 
    border: 2px solid #00ff88; 
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), #1a1a1a); 
}

.badge-free { 
    position: absolute; 
    top: -15px; 
    background: #00ff88; 
    color: #000; 
    padding: 5px 20px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: bold; 
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6); 
}

.price-card.bonus .cost { 
    color: #00ff88; 
}

.price-card.featured { 
    border: 2px solid var(--neon-purple); 
}

.badge { 
    position: absolute; 
    top: -15px; 
    background: var(--neon-purple); 
    color: #fff; 
    padding: 5px 20px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: bold; 
    box-shadow: var(--neon-glow);
}

.how-to-book { 
    margin-top: 60px; 
    text-align: center; 
    padding: 50px; 
    background: #1a1a1a; 
    border-radius: 15px; 
    border: 1px solid #333; 
}

.how-to-book h3 { 
    font-family: var(--font-header); 
    font-size: 1.8rem; 
    margin-bottom: 20px; 
}

.how-to-book p { 
    color: #aaa; 
    font-size: 1.1rem; 
    margin-bottom: 30px; 
    line-height: 1.8; 
}

.how-to-book a { 
    color: var(--neon-purple); 
    text-decoration: none; 
}

.btn-telegram-footer { 
    display: inline-block; 
    padding: 20px 60px; 
    background-color: #ffffff; 
    color: #a020f0; 
    text-decoration: none; 
    font-family: var(--font-header); 
    font-size: 1.2rem; 
    font-weight: bold; 
    border-radius: 10px; 
    transition: 0.3s; 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); 
}

.btn-telegram-footer:hover { 
    background-color: var(--neon-purple); 
    color: #ffffff; 
    box-shadow: 0 0 40px var(--neon-purple); 
}

/* Modal */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(5px); 
}

.modal-content { 
    background: #1a1a1a; 
    margin: 5% auto; 
    padding: 40px; 
    border: 2px solid var(--neon-purple); 
    border-radius: 15px; 
    width: 90%; 
    max-width: 500px; 
    position: relative; 
    box-shadow: var(--neon-glow); 
}

.close-modal { 
    position: absolute; 
    right: 20px; 
    top: 20px; 
    font-size: 2rem; 
    cursor: pointer; 
    color: #fff; 
}

.close-modal:hover { 
    color: var(--neon-purple); 
}

.modal-content h2 { 
    font-family: var(--font-header); 
    margin-bottom: 30px; 
    text-align: center; 
}

.form-group { 
    margin-bottom: 20px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    color: #ccc; 
    font-weight: bold; 
}

.form-group input, 
.form-group select { 
    width: 100%; 
    padding: 12px; 
    background: #0f0f0f; 
    border: 1px solid #333; 
    color: #fff; 
    border-radius: 5px; 
    font-size: 1rem; 
}

.form-group input:focus, 
.form-group select:focus { 
    outline: none; 
    border-color: var(--neon-purple); 
}

.btn-submit { 
    width: 100%; 
    padding: 15px; 
    background: var(--neon-purple); 
    border: none; 
    color: #fff; 
    font-family: var(--font-header); 
    font-size: 1.1rem; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: 0.3s; 
    box-shadow: var(--neon-glow); 
}

.btn-submit:hover { 
    background: #8b1a8b; 
    box-shadow: 0 0 30px var(--neon-purple); 
}

/* Footer */
.footer { 
    padding: 50px 0; 
    text-align: center; 
    color: #444; 
    border-top: 1px solid #222; 
    font-size: 0.8rem; 
}

.footer-tagline { 
    margin-top: 10px; 
    color: var(--neon-purple); 
    font-style: italic; 
}

/* AI Chat Widget - ✅ ВИПРАВЛЕНО ДЛЯ GIF */
.ai-widget { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 1100; 
    cursor: pointer; 
}

.ai-trigger { 
    width: 85px; 
    height: 85px; 
    border-radius: 50%; 
    border: 2px solid var(--neon-purple); 
    box-shadow: var(--neon-glow);
    object-fit: cover; /* ✅ Зберігає пропорції GIF */
    object-position: center;
}

.ai-hint { 
    position: absolute; 
    top: -45px; 
    right: 0; 
    background: #fff; 
    color: #000; 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: bold; 
    white-space: nowrap; 
}

.chat-window { 
    position: fixed; 
    bottom: 130px; 
    right: 30px; 
    width: 320px; 
    background: #0f0f0f; 
    border: 1px solid var(--neon-purple); 
    border-radius: 15px; 
    display: none; 
    flex-direction: column; 
    z-index: 1101; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); 
}

.chat-window.visible { 
    display: flex; 
}

.chat-header { 
    background: #1a1a1a; 
    padding: 15px; 
    display: flex; 
    justify-content: space-between; 
    border-radius: 15px 15px 0 0; 
    font-family: var(--font-header); 
    font-size: 0.8rem; 
}

.chat-header button { 
    background: none; 
    border: none; 
    color: #fff; 
    font-size: 1.2rem; 
    cursor: pointer; 
}

.chat-content { 
    height: 300px; 
    padding: 15px; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    font-size: 0.9rem; 
}

.msg { 
    padding: 10px 14px; 
    border-radius: 12px; 
    max-width: 85%; 
}

.msg.ai { 
    background: #1e1e1e; 
    align-self: flex-start; 
}

.msg.user { 
    background: var(--neon-purple); 
    align-self: flex-end; 
}

.chat-footer { 
    padding: 12px; 
    display: flex; 
    gap: 8px; 
    background: #000; 
    border-radius: 0 0 15px 15px; 
}

.chat-footer input { 
    flex: 1; 
    background: #111; 
    border: 1px solid #333; 
    color: #fff; 
    padding: 10px; 
    border-radius: 5px; 
}

.chat-footer button { 
    background: var(--neon-purple); 
    border: none; 
    color: #fff; 
    padding: 5px 15px; 
    border-radius: 5px; 
    cursor: pointer; 
}

/* =========================================
   📱 TABLET VERSION (769px - 1024px)
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide img { height: 350px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card { max-width: 300px; }
}

/* =========================================
   📱 MOBILE VERSION (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
    .navbar { padding: 10px 0; }
    .nav-flex { flex-direction: column; gap: 10px; }
    .logo-text { font-size: 1.1rem; }
    
    .nav-links { 
        flex-direction: column; 
        align-items: center; 
        gap: 12px; 
        width: 100%;
        padding: 10px 0;
    }
    .nav-links a { font-size: 0.75rem; }
    .nav-btn { 
        width: 90%; 
        text-align: center; 
        padding: 12px;
        font-size: 0.9rem;
    }

    .hero { 
        padding-top: 140px; 
        min-height: auto; 
        padding-bottom: 40px; 
    }
    .hero-top-row { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
        padding: 0 15px;
    }
    .service-name { font-size: 1.8rem; }
    .main-logo-clean { max-width: 100px; }
    
    .slider-wrapper { max-width: 95%; border-width: 1px; }
    .slide img { height: 220px; }
    .slider-dots { margin-top: 15px; }
    .slider-dot { width: 12px; height: 12px; }
    
    .hero-bottom-info { margin-top: 40px; }
    .sub-logo-elite-large { 
        font-size: 0.85rem; 
        letter-spacing: 4px; 
        margin-bottom: 25px; 
    }
    .btn-neon { 
        width: 90%; 
        padding: 18px 30px; 
        font-size: 1rem; 
    }

    .about-section { padding: 60px 0; }
    .section-title-left { font-size: 1.5rem; }
    .bonus-box { 
        flex-direction: column; 
        text-align: center; 
        padding: 20px; 
    }
    .btn-about { 
        width: 90%; 
        text-align: center; 
    }
    
    .features-section { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; }
    
    .steps-section { padding: 60px 0; }
    .section-title { font-size: 1.5rem; margin-bottom: 40px; }
    .steps-grid { flex-direction: column; gap: 20px; }
    .step-card { 
        padding: 25px; 
        border-left-width: 3px;
    }
    .step-num { font-size: 3rem; }
    .step-card h3 { font-size: 1.1rem; }
    .step-card p { font-size: 0.9rem; }
    
    .pricing-section { padding: 60px 0; }
    .price-grid { flex-direction: column; gap: 20px; }
    .price-card { 
        max-width: 100%; 
        width: 100%;
        padding: 30px 20px;
    }
    .price-card h3 { font-size: 1.2rem; }
    .cost { font-size: 2.5rem; }
    .btn-small { width: 100%; padding: 15px; }
    
    .btn-telegram-footer { 
        width: 90%; 
        padding: 18px; 
        font-size: 1.1rem; 
    }
    
    .ai-widget { bottom: 20px; right: 20px; }
    .ai-trigger { 
        width: 60px; 
        height: 60px; 
    }
    .ai-hint { display: none; }
    .chat-window { 
        width: 90%; 
        right: 5%; 
        bottom: 90px;
        max-height: 70vh;
    }
    .chat-content { height: 250px; }
}

/* =========================================
   📱 SMALL MOBILE (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .slide img { height: 180px; }
    .service-name { font-size: 1.5rem; }
    .cost { font-size: 2rem; }
    .btn-neon { padding: 15px 20px; font-size: 0.95rem; }
    .sub-logo-elite-large { font-size: 0.75rem; letter-spacing: 2px; }
}