/* Базовые инженерные настройки и шрифты */
@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* КИБЕР-ФОН С НЕОНОВЫМ СВЕЧЕНИЕМ И КИНЕМАТОГРАФИЧЕСКИМ ГРАДИЕНТОМ */
body {
    background-color: #0d0f0d; /* Ультра-темный графит */
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(44, 62, 37, 0.4) 0%, transparent 40%), /* Оливковый свет */
        radial-gradient(circle at 20% 60%, rgba(76, 175, 80, 0.15) 0%, transparent 50%), /* Зеленый био-блик */
        radial-gradient(circle at 50% 50%, rgba(13, 15, 13, 1) 0%, #050605 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
}

/* ГЛАВНЫЙ ЭКРАН HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #a2bfa2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #b0b5b0;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ТЕХНОЛОГИЧНАЯ КНОПКА С ЭФФЕКТОМ МАТОВОГО СТЕКЛА И БЕГУЩИМ БЛИКОМ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(44,62,37,0.8) 0%, rgba(30,45,26,0.9) 100%);
    border: 1px solid rgba(162, 191, 162, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Бегущий глянцевый блик (Shine-эффект) */
.cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: rotate(30deg);
    animation: shine-loop 4s infinite linear;
}

@keyframes shine-loop {
    0% { left: -60%; }
    15% { left: 140%; }
    100% { left: 140%; }
}

.cta-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(162, 191, 162, 0.7);
    box-shadow: 0 12px 40px 0 rgba(76, 175, 80, 0.25);
    background: linear-gradient(135deg, rgba(53, 74, 45, 0.9) 0%, rgba(37, 56, 32, 0.95) 100%);
}

/* КОНТЕЙНЕР ДЛЯ КРУТОЙ 3D БУТЫЛКИ С ПОДСВЕТКОЙ СЗАДИ */
.bottle-container {
    margin-top: 50px;
    position: relative;
    display: inline-block;
}

/* Эффект ядерного Glow за бутылкой */
.bottle-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 400px;
    background: #3a5431;
    filter: blur(120px);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.bottle-container img {
    max-height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.6)); /* Инженерная мягкая тень */
    animation: float-bottle 6s ease-in-out infinite; /* Эффект невесомости */
}

/* Левитация бутылки (Живой интерфейс) */
@keyframes float-bottle {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ВИДЖЕТ ИИ-ЧАТА (ФРОНТЕНД-КОРПУС) */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: #2c3e25;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.05);
    background: #354a33;
}
