
body { font-family: 'Inter', sans-serif; }

.no-wrap {
	display: inline-block;
	white-space: nowrap;
}

/* ✅ НЕЙРОНКА НА ФОНЕ */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.35;
	pointer-events: none !important;
}
/* ✅ СТИЛИ КАРТОЧЕК И ЭФФЕКТЫ */
.glass-card {
    background: rgba(28, 25, 23, 0.2);  
	backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.glass-card-2 {
    background: rgba(28, 25, 23, 0.7);  
	backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.glass-card-hover {
    background: rgba(28, 25, 23, 0.2);  
	backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.glass-card-hover:hover {
	box-shadow: 0 0 30px rgba(245, 158, 11, 0.3), inset 0 0 20px rgba(245, 158, 11, 0.1);
}

.glow-text { 
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.3); 
}

.glow-border {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.3), inset 0 0 20px rgba(245, 158, 11, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ✅ ТАРИФЫ */
.pricing-card { transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4); }
.pricing-card.popular { border: 2px solid #f59e0b; box-shadow: 0 0 40px rgba(245, 158, 11, 0.5); }

/* ✅ АНИМАЦИИ */
.scan-line {
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    animation: scan 1.5s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

.pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ==========================================
   ПЛАВНАЯ ПРОКРУТКА (SMOOTH SCROLL)
   ========================================== */

/* ✅ ПОДСВЕТКА АКТИВНОЙ СЕКЦИИ В МЕНЮ */
nav a.active {
    color: #f59e0b !important;
    font-weight: 600;
}

/* Опционально: плавное появление секций при скролле 
section {
    scroll-snap-align: start;
}
*/
/* Анимация подсветки активной секции в меню: 
nav a.active {
    color: #f59e0b !important;
    font-weight: 600;
}
*/

/* ==========================================
   FAQ АККОРДЕОН — УЛУЧШЕННАЯ АНИМАЦИЯ
   ========================================== */

.faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateX(-1px);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(245, 158, 11, 0.05);
}

.faq-icon {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Плавное раскрытие через max-height */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Анимация текста внутри ответа */
.faq-answer p {
    transition: transform 0.4s ease;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

/* Эффект свечения для активного вопроса */
.faq-item.active .faq-question {
    background: rgba(245, 158, 11, 0.08);
}

.quest_pict {
	height: 1.5rem;
	line-height: 1.5rem;
}

#footer {
	background: rgba(28, 25, 23, 0.2);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-copyrite {
	max-width:90%;
}

/* Альтернативный вариант — ещё плавнее 
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > div {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}
*/

/* ==========================================
   FAQ АККОРДЕОН
   ========================================== 
#faq {
    scroll-margin-top: 100px !important;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-question {
    cursor: pointer;
}

.faq-answer {
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}
*/




