		    /* Основний контейнер - ТУТ ЗМІНИ */
    .ai-wrapper {
        position: fixed; /* Фіксує елемент відносно вікна браузера */
        bottom: 20px;    /* Відступ знизу */
        left: 20px;      /* Відступ зліва */
        z-index: 9999;   /* Щоб кнопка була поверх усіх інших елементів сайту */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    /* Кнопка */
    .ai-btn {
        background: white;
        border: none;
        cursor: pointer;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 2; /* Кнопка вище за меню */
        transition: transform 0.1s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* Трохи більше тіні для контрасту з контентом */
        
        /* Градієнтна рамка */
        background-image: linear-gradient(white, white), 
                          linear-gradient(90deg, #FF4D6D, #5E60CE);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        border: 2px solid transparent;
        color: #5E60CE;
    }

    /* Градієнтний текст */
    .ai-btn-text {
        background: linear-gradient(90deg, #FF4D6D, #5E60CE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .ai-btn:hover {
        box-shadow: 0 6px 20px rgba(94, 96, 206, 0.25);
    }

    .ai-btn:active {
        transform: scale(0.98);
    }

    /* Іконка стрілки */
    .ai-arrow {
        width: 12px;
        height: 12px;
        fill: #5E60CE;
        transition: transform 0.3s ease;
    }
    
    .ai-btn.open .ai-arrow {
        transform: rotate(180deg);
    }

    /* Випадаюче меню - ЗМІНЕНО НАПРЯМОК */
    .ai-dropdown {
        position: absolute;
        bottom: calc(100% + 15px); /* Меню з'являється НАД кнопкою */
        left: 0;
        width: 220px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        
        /* Анімація появи знизу вгору */
        transform: translateY(10px); 
        transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1;
        border: 1px solid #eee;
    }

    /* Стрілочка-вказівник внизу меню (декоративна, опціонально) */
    .ai-dropdown::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 20px;
        width: 10px;
        height: 10px;
        background: white;
        transform: rotate(45deg);
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
    }

    .ai-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Пункти меню */
    .ai-dropdown a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        transition: background 0.2s;
    }

    .ai-dropdown a:hover {
        background-color: #f5f5f7;
    }

    /* Перший та останній елементи заокруглені */
    .ai-dropdown a:first-child { border-radius: 12px 12px 0 0; }
    .ai-dropdown a:last-child { border-radius: 0 0 12px 12px; }

    .service-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }