/* === ГЛАВНАЯ СТРАНИЦА === */
.hero { text-align: center; padding: 80px 20px 40px 20px; }
.hero h2 { margin-bottom: 15px; }
.hero-btn-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(to right, #0ea5e9, #0284c7); border: none; padding: 14px 30px; border-radius: 30px; color: white; font-weight: bold; cursor: pointer; font-size: 16px; transition: 0.2s; box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4); }
.btn-primary:hover { transform: scale(1.05); }
.btn-secondary { background: var(--input-bg); border: 1px solid var(--border-color); padding: 14px 30px; border-radius: 30px; color: var(--text-main); font-weight: bold; cursor: pointer; font-size: 16px; transition: 0.2s; display: flex; align-items: center; gap: 10px; }
.btn-secondary:hover { background: var(--border-color); }

/* ДОБАВЛЕНО: Стили для мокапа браузера и слайдера на главной */
.browser-mockup {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    margin: 60px auto 20px auto;
    box-shadow: 0 20px 50px var(--shadow-color);
}
.browser-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}
[data-theme="light"] .browser-header {
    background: #f8fafc;
}
.browser-dots {
    display: flex;
    gap: 8px;
}
.b-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.b-dot.red { background: #ef4444; }
.b-dot.yellow { background: #f59e0b; }
.b-dot.green { background: #10b981; }
.browser-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--input-bg);
    padding: 4px 30px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-gray);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-color); 
}
.hero-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    /* ИЗМЕНЕНО: Добавлена минимальная высота, чтобы блок не схлопывался, если картинки нет */
    min-height: 300px; 
    background: var(--input-bg);
}
.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Кнопки перелистывания */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    opacity: 0.7;
}
.hero-slider-btn:hover {
    background: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
[data-theme="dark"] .hero-slider-btn {
    background: rgba(15, 23, 42, 0.8);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .hero-slider-btn:hover {
    background: #1e293b;
}
.hero-slider-btn.prev { left: 20px; }
.hero-slider-btn.next { right: 20px; }

/* Пагинация (точки) под слайдером */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-slider-dot:hover {
    background: var(--text-gray);
}
.hero-slider-dot.active {
    background: var(--accent-blue);
    width: 28px;
    border-radius: 5px;
}

.real-stats-section { padding: 40px 20px 60px 20px; max-width: 1000px; margin: 0 auto; }
.stats-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
.stat-box { display: flex; flex-direction: column; align-items: center; }
.stat-icon { width: 60px; height: 60px; background: rgba(14, 165, 233, 0.1); color: var(--accent-blue); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; margin-bottom: 15px; }
.stat-box h3 { font-size: 32px; color: var(--text-main); margin-bottom: 5px; }
.stat-box p { color: var(--text-gray); font-size: 14px; }

.modules-section { max-width: 800px; margin: 0 auto; padding: 0 20px 60px 20px; }
.modules-container-wrap { position: relative; padding-bottom: 10px; }

.modules-list { display: flex; flex-direction: column; gap: 10px; transition: max-height 0.5s ease; padding: 10px; margin: -10px; }
.modules-list.collapsed { max-height: 440px; overflow: hidden; }

.module-row { background: var(--card-bg); border: 1px solid var(--border-color); padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 20px; transition: 0.3s; cursor: pointer; }
.module-row:hover { background: rgba(14, 165, 233, 0.1); border-color: var(--accent-blue); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15); }
.module-row:hover .mod-number { background: var(--accent-blue); color: white; box-shadow: 0 0 15px rgba(14, 165, 233, 0.4); }

.mod-number { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; color: var(--text-main); flex-shrink: 0; transition: 0.3s; }
.mod-text h4 { margin-bottom: 5px; color: var(--text-main); font-size: 16px; transition: 0.3s; }
.mod-text p { color: var(--text-gray); font-size: 14px; line-height: 1.4; margin: 0; transition: 0.3s; }

.scroll-down-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 160px; background: linear-gradient(to bottom, transparent, var(--bg-color) 80%); display: flex; justify-content: center; align-items: flex-end; padding-bottom: 10px; pointer-events: none; }
.scroll-down-text-btn { pointer-events: auto; background: none; border: none; color: var(--accent-blue); font-size: 14px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 5px; font-weight: 500; transition: 0.2s; }
.scroll-down-text-btn:hover { color: var(--accent-gold); }

.collapse-list-btn { background: transparent; border: 1px solid var(--border-color); color: var(--text-gray); padding: 10px 20px; border-radius: 8px; cursor: pointer; font-weight: bold; transition: 0.2s; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.collapse-list-btn:hover { background: var(--hover-bg); color: var(--text-main); border-color: var(--text-main); }

/* === ТАБЛИЦА СРАВНЕНИЯ === */
.compare-section { max-width: 1000px; margin: 0 auto; padding: 40px 20px 80px 20px; }
.compare-table-wrapper { background: var(--card-bg); border-radius: 20px; border: 1px solid var(--border-color); overflow-x: auto; box-shadow: 0 10px 40px var(--shadow-color); margin-bottom: 30px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 700px; text-align: center; }
.compare-table th { padding: 20px 15px; font-size: 14px; color: var(--text-main); border-bottom: 1px dashed var(--border-color); font-weight: 700; }
.compare-table th.highlight { color: var(--accent-blue); background: rgba(14, 165, 233, 0.05); }
.compare-table td { padding: 15px; border-bottom: 1px dashed var(--border-color); color: var(--text-gray); font-size: 14px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text-main); }
.compare-table td.highlight-col { background: rgba(14, 165, 233, 0.05); }

/* Иконки в таблице */
.c-icon { display: inline-flex; justify-content: center; align-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 14px; }
.c-yes { background: #10b981; color: white; }
.c-part { background: #f59e0b; color: white; }
.c-no { background: var(--input-bg); color: var(--text-gray); border: 1px solid var(--border-color); }

.compare-legend { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; font-size: 14px; color: var(--text-gray); }
.compare-legend div { display: flex; align-items: center; gap: 8px; }

/* === ОТЗЫВЫ === */
.reviews-section { max-width: 800px; margin: 0 auto; padding: 40px 20px 80px 20px; }
.review-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; margin-bottom: 20px; box-shadow: 0 10px 30px var(--shadow-color); position: relative; }
.review-quote-icon { width: 44px; height: 44px; background: rgba(14, 165, 233, 0.1); color: var(--accent-blue); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; margin-bottom: 20px; }
.review-text { font-size: 15px; line-height: 1.6; color: var(--text-main); margin-bottom: 25px; }
.review-author { display: flex; align-items: center; gap: 15px; border-top: 1px dashed var(--border-color); padding-top: 20px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: #0ea5e9; color: white; display: flex; justify-content: center; align-items: center; font-weight: bold; font-size: 18px; position: relative; }
.review-verified { position: absolute; bottom: -2px; right: -2px; width: 16px; height: 16px; background: #10b981; border-radius: 50%; border: 2px solid var(--card-bg); display: flex; justify-content: center; align-items: center; color: white; font-size: 8px; }
.review-name { font-weight: 700; color: var(--text-main); font-size: 15px; margin-bottom: 4px; }
.review-stars { color: #f59e0b; font-size: 12px; }
.review-fade { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, transparent, var(--card-bg)); border-radius: 0 0 20px 20px; pointer-events: none; }


/* --- FAQ --- */
.faq-section { max-width: 800px; margin: 0 auto; padding: 50px 20px; }
.faq-container { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:last-child { border-bottom: none; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; color: var(--text-main); transition: 0.3s; background: transparent; }
.faq-question:hover { background: var(--input-bg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 20px; color: var(--text-gray); line-height: 1.6; font-size: 14px; background: var(--input-bg); }
.faq-item.active .faq-answer { padding: 0 20px 20px 20px; max-height: 600px; }
.faq-item.active .faq-question { color: var(--accent-blue); background: rgba(14, 165, 233, 0.05); }
.faq-icon { transition: transform 0.3s ease; color: var(--text-gray); }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--accent-blue); }
.faq-list { padding-left: 20px; margin-top: 10px; }
.faq-list li { margin-bottom: 5px; }

/* --- ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ --- */
.policy-content h3 { margin-top: 40px; margin-bottom: 10px; color: var(--text-main); padding-top: 20px; }
.policy-content p { margin-bottom: 15px; }
.policy-toc { list-style: none; padding-left: 0; }
.policy-toc li { margin-bottom: 8px; }
.policy-toc a { color: var(--accent-blue); text-decoration: none; transition: 0.3s; font-weight: 500; font-size: 15px; display: inline-block;}
.policy-toc a:hover { color: var(--accent-gold); text-shadow: 0 0 8px rgba(197, 168, 106, 0.5); transform: translateX(5px); }
.policy-list { padding-left: 20px; margin-bottom: 20px; }
.policy-list li { margin-bottom: 8px; }

/* === ПРОФИЛЬ И АДМИНКА === */
.profile-container { display: flex; flex-wrap: wrap; gap: 30px; max-width: 1000px; margin: 0 auto; padding: 0 20px 50px 20px; justify-content: center; align-items: flex-start;}
.profile-block { background: var(--card-bg); border: 1px solid var(--border-color); padding: 30px; border-radius: 15px; width: 400px; }
.profile-block h3 { margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; color: var(--text-main);}
.admin-ticket { background: var(--card-bg); border: 1px solid var(--border-color); padding: 20px; border-radius: 12px; margin-bottom: 15px; color: var(--text-main); text-align: left; }
.admin-ticket-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.admin-ticket-title { color: var(--accent-gold); font-weight: bold; font-size: 18px; }
.admin-ticket-date { font-size: 12px; color: var(--text-gray); }
.admin-ticket-msg { margin-bottom: 15px; color: var(--text-gray); }
.admin-reply-box { margin-top: 15px; border-top: 1px dashed var(--border-color); padding-top: 15px; }

/* ПОДПИСКИ В ПРОФИЛЕ */
.sub-item-card { background: var(--input-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 15px; display: flex; justify-content: space-between; align-items: center; text-align: left; margin-bottom: 10px;}
.sub-item-name { color: var(--text-main); font-weight: bold; font-size: 14px; margin-bottom: 5px;}
.sub-item-date { color: var(--text-gray); font-size: 12px;}
.sub-item-status { background: rgba(16,185,129,0.1); color: #10b981; padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: bold; border: 1px solid #10b981;}

/* ========================================================= */
/* === СТИЛИ НОВОГО ПРОФИЛЯ (ЛИЧНОГО КАБИНЕТА) === */
/* ========================================================= */
.profile-menu { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.profile-view { display: none; }
.profile-view.active { display: block; animation: fadeIn 0.3s ease; }

.prof-input { width: 100%; background: var(--input-bg); border: 1px solid var(--border-color); color: var(--text-main); padding: 12px 15px; border-radius: 10px; font-size: 14px; outline: none; transition: 0.2s; font-family: inherit; }
.prof-input:focus { border-color: var(--accent-blue); background: var(--hover-bg); }
.prof-input:disabled { opacity: 0.6; cursor: not-allowed; }

.prof-static-box { background: var(--input-bg); border: 1px solid var(--border-color); padding: 15px; border-radius: 10px; display: flex; flex-direction: column; gap: 5px; }
.prof-static-label { color: var(--text-gray); font-size: 11px; font-weight: bold; letter-spacing: 0.5px; text-transform: uppercase; }
.prof-static-val { color: var(--text-main); font-size: 14px; font-weight: 600; word-break: break-all;}

.prof-save-btn { background: #10b981; color: white; border: none; padding: 12px 25px; border-radius: 10px; font-weight: bold; font-size: 14px; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); }
.prof-save-btn:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3); }

/* === НОВЫЙ КАЛЬКУЛЯТОР ТАРИФОВ === */
.tariffs-header-block { text-align: center; padding: 60px 20px 40px; }
.tariffs-header-block h2 { font-size: 38px; margin-bottom: 15px; color: var(--text-main); font-weight: 700;}
.tariffs-header-block p { color: var(--text-gray); font-size: 15px; max-width: 600px; margin: 0 auto 30px;}
.tariffs-toggle-main { display: inline-flex; background: var(--input-bg); border-radius: 20px; padding: 4px; border: 1px solid var(--border-color); }
.tariffs-toggle-main button { background: transparent; border: none; color: var(--text-gray); padding: 10px 25px; font-size: 14px; font-weight: 600; border-radius: 16px; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 8px;}
.tariffs-toggle-main button.active { background: rgba(255,255,255,0.1); color: var(--text-main); }

.tariffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 20px 50px 20px; }
.tariff-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; cursor: pointer; transition: 0.3s; position: relative; }
.tariff-card:hover { border-color: rgba(255,255,255,0.3); }
.tariff-card.selected { border-color: var(--accent-blue); background: linear-gradient(135deg, rgba(14,165,233,0.1), var(--card-bg)); box-shadow: 0 5px 20px rgba(14,165,233,0.15); }
.tariff-card.owned { border-color: #10b981; background: linear-gradient(135deg, rgba(16,185,129,0.1), var(--card-bg)); pointer-events: auto !important; }

.t-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.t-period-toggles { display: flex; background: rgba(0,0,0,0.4); border-radius: 20px; padding: 2px; }
.t-period-toggles span { padding: 4px 12px; font-size: 11px; font-weight: bold; color: var(--text-gray); border-radius: 18px; cursor: pointer; transition: 0.2s; }
.t-period-toggles span.active { background: var(--accent-blue); color: white; }
.t-checkbox { display: flex; align-items: center; justify-content: center; }

.t-info h3 { font-size: 17px; color: var(--text-main); margin-bottom: 5px; font-weight: 600; }
.t-price { font-size: 26px; font-weight: 800; color: var(--text-main); margin-bottom: 15px; }
.t-learn-more { background: transparent; border: none; color: var(--accent-blue); font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 5px; padding: 0;}
.t-learn-more:hover { color: var(--text-main); transform: translateX(5px); }

/* ЛИПКАЯ КОРЗИНА */
.sticky-checkout-panel { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--card-bg); border-top: 1px solid var(--border-color); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100; box-shadow: 0 -10px 40px var(--shadow-color); backdrop-filter: blur(10px); }
.checkout-left h3 { font-size: 14px; margin: 0 0 5px 0; color: var(--text-main); }
.checkout-left ul { list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--text-gray); display: flex; flex-direction: column; gap: 4px; max-height: 120px; overflow-y: auto; padding-right: 10px; }
.checkout-left ul::-webkit-scrollbar { width: 4px; }
.checkout-left ul::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
.checkout-right { text-align: right; }
.checkout-total-label { font-size: 12px; color: var(--text-gray); margin-bottom: 2px;}
.checkout-total-price { font-size: 28px; font-weight: 800; color: var(--text-main); margin-bottom: 5px; line-height: 1; }

.checkout-buy-btn { background: #10b981; color: white; padding: 12px 40px; border-radius: 8px; border: none; font-weight: bold; font-size: 15px; cursor: pointer; transition: 0.2s; width: 100%; box-shadow: 0 4px 15px rgba(16,185,129,0.3); }
.checkout-buy-btn:hover { background: #059669; transform: translateY(-2px); }
.checkout-buy-btn.get-btn { background: var(--accent-blue); box-shadow: 0 4px 15px rgba(14,165,233,0.3); }
.checkout-buy-btn.get-btn:hover { background: #0284c7; }

/* === ПЛАВАЮЩАЯ КНОПКА ИИ-ЧАТА === */
.ai-chat-fab { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #8b5cf6, #0ea5e9); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 28px; cursor: pointer; box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4); z-index: 10002; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); animation: pulse-glow 2s infinite; }
.ai-chat-fab:hover { transform: scale(1.1); animation: none; box-shadow: 0 15px 30px rgba(14, 165, 233, 0.6); }

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

/* === ОКНО ИИ-ЧАТА === */
.ai-chat-window { position: fixed; bottom: 110px; right: 30px; width: 380px; max-width: 90vw; height: 500px; max-height: 80vh; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; box-shadow: 0 15px 40px var(--shadow-color); display: flex; flex-direction: column; z-index: 10003; overflow: hidden; backdrop-filter: blur(15px); transform: translateY(20px); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ai-chat-window.active { transform: translateY(0); opacity: 1; visibility: visible; }

.ai-chat-header { padding: 15px 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: var(--input-bg); }
.ai-chat-header-info { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--text-main); }
.ai-avatar { width: 32px; height: 32px; background: linear-gradient(135deg, #8b5cf6, #0ea5e9); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; color: white;}
.ai-chat-close { background: transparent; border: none; color: var(--text-gray); font-size: 20px; cursor: pointer; transition: 0.2s; }
.ai-chat-close:hover { color: var(--text-main); }

.ai-chat-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.ai-chat-body::-webkit-scrollbar { width: 4px; }
.ai-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.ai-message { display: flex; gap: 10px; align-items: flex-end; max-width: 85%; }
.ai-message.ai-received { align-self: flex-start; }
.ai-message.ai-sent { align-self: flex-end; flex-direction: row-reverse; }

.ai-avatar-small { width: 24px; height: 24px; background: linear-gradient(135deg, #8b5cf6, #0ea5e9); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 12px; color: white; flex-shrink: 0; }
.ai-bubble { padding: 12px 15px; border-radius: 15px; font-size: 13px; line-height: 1.5; color: var(--text-main); }
.ai-received .ai-bubble { background: var(--input-bg); border: 1px solid var(--border-color); border-bottom-left-radius: 4px; }
.ai-sent .ai-bubble { background: var(--accent-blue); color: white; border-bottom-right-radius: 4px; }

.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; }
.ai-chip { background: transparent; border: 1px solid var(--border-color); color: var(--text-gray); padding: 8px 12px; border-radius: 20px; font-size: 12px; cursor: pointer; transition: 0.2s; white-space: nowrap; }
.ai-chip:hover { background: var(--hover-bg); color: var(--text-main); border-color: var(--text-main); }

.ai-chat-footer { padding: 15px; border-top: 1px solid var(--border-color); display: flex; gap: 10px; background: var(--input-bg); }
.ai-chat-footer input { flex: 1; background: var(--bg-color); border: 1px solid var(--border-color); padding: 12px 15px; border-radius: 12px; color: var(--text-main); font-family: inherit; font-size: 13px; outline: none; }
.ai-chat-footer input:focus { border-color: var(--accent-blue); }
.ai-send-btn { background: var(--accent-blue); border: none; width: 42px; height: 42px; border-radius: 12px; color: white; font-size: 16px; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.2s; }
.ai-send-btn:hover { background: #0284c7; }