/* ==========================================
STABLEPROFIT LANDING — ТЕМНАЯ ТЕМА
========================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; 
background: linear-gradient(135deg, #1c1814 0%, #2a2420 50%, #1c1814 100%); 
background: black;
color: #f5f1ea; line-height: 1.6; overflow-x: hidden; }

#neural-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.35; pointer-events: none !important; }

header { position: fixed; top: 0; left: 0; right: 0; background: rgba(28, 25, 23, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(245, 158, 11, 0.2); z-index: 1000; padding: 1rem 0; }
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: #f5f1ea; }
.logo-pulse { position: relative; display: flex; align-items: center; justify-content: center; }
/* .logo-pulse::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(245, 158, 11, 0.4); animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; z-index: -1; } */
.logo-pulse::before { content: ''; position: absolute; width: 100%; height: 100%; 
	border-radius: 20%; 
	/*background: rgba(245, 158, 11, 0.0); */
	background: rgba(28, 25, 23, 0.95);
	border: #f59e0b 2px solid;
	animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; 
	z-index: -1; 
}

@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 15px rgba(245, 158, 11, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }

.logo-text { font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.logo-text-ru {
	-webkit-text-fill-color: #DDD;
	font-size: 1.5rem;
    font-weight: 500;
}
nav { display: flex; gap: 1.5rem; }
nav a { color: #d6cfc4; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
nav a:hover, nav a.active { color: #f59e0b !important; font-weight: 600; }

.header-cta { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); color: #1c1814; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4); }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 2rem 4rem; }
.hero-content { max-width: 1200px; text-align: center; }
.hero-badges { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.badge { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; color: #fbbf24; }

.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem; color: #f5f1ea; }
.hero-subtitle { font-size: 1.2rem; color: #d6cfc4; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 4rem; flex-wrap: wrap; }

/*
.img-hero {width:50%; height:auto; opacity:0.5;}
.img-hero:hover {width:100%; height:auto; opacity:1;}
*/
.img-hero {
    width: 50%;
    height: auto;
    opacity: 0.5;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    transform-origin: center;
    cursor: pointer;
    /* Для плавности на мобильных */
    -webkit-tap-highlight-color: transparent;
    will-change: transform, opacity;
}

.img-hero:hover,
.img-hero:active {
    width: 100%;
    opacity: 1;
    transform: scale(1.02);
}

/* Для сенсорных экранов (смартфоны) */
@media (hover: none) {
    .img-hero:active {
        width: 100%;
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Альтернативный вариант с max-width (ещё плавнее) */
.img-hero-alt {
    width: 50%;
    max-width: 50%;
    height: auto;
    opacity: 0.5;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.img-hero-alt:hover,
.img-hero-alt:active {
    width: 100%;
    max-width: 100%;
    opacity: 1;
}




.btn-primary { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); color: #1c1814; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5); }
.btn-secondary { background: rgba(245, 158, 11, 0.1); border: 2px solid #f59e0b; color: #f59e0b; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; display: inline-block; cursor: pointer; }
.btn-secondary:hover { background: rgba(245, 158, 11, 0.2); transform: translateY(-3px); }

.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.stat { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.stat-label { color: #d6cfc4; font-size: 0.9rem; }

.section { padding: 6rem 2rem; }
.container { max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 2.2rem; font-weight: 900; text-align: center; margin-bottom: 1rem; color: #f5f1ea; }
.section-subtitle { font-size: 1.1rem; text-align: center; color: #d6cfc4; margin-bottom: 4rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.gradient-text { 
	background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%); 
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-clip: text; 
	}
.glow-text {
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.3);
}

.detector-card { background: rgba(28, 25, 23, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 16px; padding: 3rem; text-align: center; max-width: 700px; margin: 0 auto; }
.detector-icon { margin-bottom: 1.5rem; color: #f59e0b; }
.detector-card h3 { font-size: 1.75rem; margin-bottom: 1rem; color: #f5f1ea; }
.detector-card p { color: #d6cfc4; margin-bottom: 2rem; }
.scanner { position: relative; height: 100px; margin: 2rem 0; overflow: hidden; }
.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; } }

.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.result-item { background: rgba(245, 158, 11, 0.05); padding: 1rem; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.result-label { color: #d6cfc4; font-weight: 500; }
.result-value { color: #f59e0b; font-weight: 700; }
.recommendation-box { background: rgba(28, 25, 23, 0.5); border: 2px solid #f59e0b; border-radius: 12px; padding: 2rem; margin-bottom: 2rem; text-align: left; }
.rec-icon { font-size: 2rem; margin-bottom: 1rem; text-align:center;}
.recommendation-box h4 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #f59e0b; }
.recommendation-box p { color: #d6cfc4; margin-bottom: 0; }
.hidden { display: none !important; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }
.feature-card, .tech-card, .market-card { background: rgba(28, 25, 23, 0.5); backdrop-filter: blur(12px); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 16px; padding: 2.5rem; transition: all 0.3s ease; }
.feature-card:hover, .tech-card:hover, .market-card:hover { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 0 30px rgba(245, 158, 11, 0.2); transform: translateY(-5px); }
.feature-icon, .tech-icon { color: #f59e0b; margin-bottom: 1rem; }
.feature-card h3, .tech-card h3, .market-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #f5f1ea; }
.feature-subtitle, .market-subtitle { color: #f59e0b; font-weight: 600; margin-bottom: 1.5rem; }
.feature-card ul { list-style: none; padding: 0; }
.feature-card li { padding: 0.75rem 0; border-bottom: 1px solid rgba(245, 158, 11, 0.1); color: #d6cfc4; }
.feature-card li:last-child { border-bottom: none; }
.feature-card li strong { color: #f5f1ea; }

.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.tech-card p { color: #d6cfc4; }

/* === ПИНГ БИРЖ === */
.markets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 2rem; }

.exchanges-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.exchange-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 158, 11, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
    min-width: 0;
}
.exchange-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.exchange-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}
.exchange-link:hover {
    color: #fcd34d;
    text-decoration: underline;
}
.ping-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ping-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.ping-bar-bg { width: 80px; height: 4px; background: rgba(245, 158, 11, 0.2); border-radius: 2px; overflow: hidden; }
.ping-bar-fill { height: 100%; background: #f59e0b; width: 0%; transition: width 0.5s ease; }

@keyframes spin {
    to { transform: rotate(360deg); }
}
.market-note { color: #d6cfc4; font-size: 0.9rem; margin-top: 1rem; }

/* === ПРОГРЕСС-БАР ПИНГА === */
.ping-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.ping-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 3px;
    overflow: hidden;
    min-width: 60px;
}

.ping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.ping-progress-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f59e0b;
    min-width: 30px;
    text-align: right;
}

.ping-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: flex-end;
}

.ping-result {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.ping-good { color: #10b981; }
.ping-med { color: #f59e0b; }
.ping-bad { color: #ef4444; }

.ping-btn {
    width: 100%;
    margin-top: 1rem;
}


/* === ОТЗЫВЫ === */
.reviews-header { text-align: center; margin-bottom: 2rem; }
.reviews-stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.stat-box { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 900; }
.stat-text { color: #d6cfc4; font-size: 0.9rem; }
.stars { color: #f59e0b; font-size: 1.2rem; margin-top: 0.25rem; }

/*.reviews-container { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; }*/

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
    padding: 1rem 0;
    flex-wrap: nowrap;
}
.review-card {
    min-width: calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    background: rgba(28, 25, 23, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 2rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.review-stars { font-size: 1.1rem; margin-bottom: 1rem; }
.review-text {
    color: #d6cfc4;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: left;
    white-space: normal;
    max-width: 100%;
}
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #1c1814; font-size: 1.1rem; }
.review-name { font-weight: 700; color: #f5f1ea; }
.review-role { color: #d6cfc4; font-size: 0.85rem; }
/* .reviews-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(245, 158, 11, 0.2); border: 1px solid rgba(245, 158, 11, 0.4); color: #f59e0b; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10; } */

/*.reviews-nav:hover { background: rgba(245, 158, 11, 0.4); }
.reviews-nav.prev { left: -20px; }
.reviews-nav.next { right: -20px; }*/

/* Контейнер отзывов */
.reviews-container {
    position: relative;
    padding: 0 60px; /* Добавляем отступы для кнопок */
    overflow: hidden;
}

/* Кнопки навигации */
.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform: translateX(20%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews-nav.prev {
    left: 0; /* Вместо -20px */
}

.reviews-nav.next {
    right: 35px; /* Вместо -20px или auto */
}

.reviews-nav:hover {
    background: rgba(245, 158, 11, 0.4);
    transform: translateY(-50%) scale(1.1);
    transform: translateX(20%) scale(1.1);
}

/* Для мобильных */
@media (max-width: 768px) {
    .reviews-container {
        padding: 0 40px; /* Меньшие отступы на мобильных */
    }
    
    .reviews-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .reviews-nav.prev {
        left: 5px;
    }
    
    .reviews-nav.next {
        right: 5px;
    }
}





/* === КНОПКА TELEGRAM === */
.reviews-actions {
    text-align: center;
    margin-top: 3rem;
}
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0088cc 0%, #0099dd 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.5);
}
.telegram-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}








.bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}

.rounded-full {
    border-radius: 9999px;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.w-2 {
    width: 0.5rem;
}
.h-2 {
    height: 0.5rem;
}

.text-amber-400 {
    --tw-text-opacity: 1;
    color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.bg-amber-500\/10 {
    background-color: rgb(245 158 11 / 0.1);
}

.border-amber-500\/30 {
    border-color: rgb(245 158 11 / 0.3);
}

.border {
    border-width: 1px;
}

.rounded-full {
    border-radius: 9999px;
}

.gap-2 {
    gap: 0.5rem;
}

.items-center {
    align-items: center;
}

.inline-flex {
    display: inline-flex;
}

.mb-8 {
    margin-bottom: 2rem;
}



/* Пульсирующая точка */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}


.animate-pulse-round {
    animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-glow-round {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
    }
}














.referral-card { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(28, 25, 23, 0.7) 100%); backdrop-filter: blur(12px); border: 2px solid rgba(245, 158, 11, 0.3); border-radius: 24px; padding: 4rem 2rem; text-align: center; }
.referral-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.referral-benefit { background: rgba(28, 25, 23, 0.5); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.referral-benefit:hover { border-color: rgba(245, 158, 11, 0.5); transform: translateY(-5px); }
.referral-icon { color: #f59e0b; margin-bottom: 1rem; }
.referral-benefit h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: #f59e0b; }
.referral-benefit p { color: #d6cfc4; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: rgba(28, 25, 23, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 24px; padding: 2.5rem; text-align: center; position: relative; transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2); }
.pricing-card.popular { border: 2px solid #f59e0b; box-shadow: 0 0 40px rgba(245, 158, 11, 0.3); transform: scale(1.05); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); color: #1c1814; padding: 0.5rem 1.5rem; border-radius: 20px; font-weight: 700; font-size: 0.85rem; }
.pricing-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #f5f1ea; }
.pricing-subtitle { color: #d6cfc4; margin-bottom: 2rem; }
.pricing-price { margin-bottom: 2rem; }
.price-value { font-size: 2.5rem; font-weight: 900; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-period { display: block; color: #d6cfc4; font-size: 0.9rem; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.pricing-features li { padding: 0.75rem 0; border-bottom: 1px solid rgba(245, 158, 11, 0.1); color: #d6cfc4; }
.pricing-features li:last-child { border-bottom: none; }
.btn-full { width: 100%; text-align: center; }
.pricing-note { background: rgba(245, 158, 11, 0.05); border-radius: 12px; padding: 1.5rem; text-align: left; max-width: 600px; margin: 3rem auto 0; }
.pricing-note p { font-weight: 700; margin-bottom: 0.75rem; color: #f5f1ea; }
.pricing-note ul { list-style: none; padding: 0; }
.pricing-note li { padding: 0.25rem 0; color: #d6cfc4; }
.pricing-note li:before { content: "✓ "; color: #f59e0b; font-weight: 700; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(28, 25, 23, 0.5); backdrop-filter: blur(12px); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.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 { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
.faq-question:hover { background: rgba(245, 158, 11, 0.05); }
.faq-question span:first-child { font-weight: 600; color: #f5f1ea; font-size: 1.1rem; }
.faq-icon { color: #f59e0b; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.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; padding: 0 1.5rem 1.5rem; }
.faq-answer p { color: #d6cfc4; line-height: 1.7; }

.cta-section { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(28, 25, 23, 0.9) 100%); padding: 6rem 2rem; text-align: center; }
.cta-section h2 { font-size: 2.2rem; margin-bottom: 1rem; color: #f5f1ea; }
.cta-section p { font-size: 1.1rem; color: #d6cfc4; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

footer { background: rgba(28, 25, 23, 0.95); border-top: 1px solid rgba(245, 158, 11, 0.2); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-col h4 { color: #f5f1ea; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #d6cfc4; text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: #f59e0b; }
.footer-disclaimer { background: rgba(245, 158, 11, 0.05); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; }
.footer-disclaimer p { color: #d6cfc4; font-size: 0.9rem; line-height: 1.6; }
.footer-bottom { text-align: center; color: #d6cfc4; font-size: 0.9rem; }
.footer-bottom p { margin-bottom: 0.5rem; }

.theme-toggle, .animation-toggle { position: fixed; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); border: 3px solid rgba(255, 255, 255, 0.9); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 1000; opacity: 0.4; }
.theme-toggle { bottom: 30px; right: 30px; }
.animation-toggle { bottom: 100px; right: 30px; }
.theme-toggle:hover, .animation-toggle:hover { transform: scale(1.15); box-shadow: 0 8px 40px rgba(245, 158, 11, 0.7); opacity: 1; }
.theme-toggle svg, .animation-toggle svg { width: 26px; height: 26px; fill: white; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); }
.toggle-tooltip { position: fixed; bottom: 165px; right: 25px; background: #2a1a10; color: #f5f1ea; padding: 8px 14px; border-radius: 10px; font-size: 12px; opacity: 0; pointer-events: none; transition: opacity 0.2s; white-space: nowrap; z-index: 1000; }
.toggle-tooltip.show { opacity: 1; }

body.animation-disabled #neural-canvas { display: none; }
body.animation-disabled .scan-line { display: none; }
body.animation-disabled * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }


/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
    .exchanges-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card {
        min-width: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .hero h1 { font-size: 4rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .markets-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; }
    .review-card { min-width: 100%; max-width: 100%; }
    .pricing-card.popular { transform: scale(1); }
    .theme-toggle { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    .animation-toggle { bottom: 82px; right: 20px; width: 45px; height: 45px; }
    .toggle-tooltip { bottom: 135px; right: 15px; font-size: 10px; }
	.exchanges-list { grid-template-columns: 1fr; }
    .exchange-item { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
	.exchange-link { max-width: 100%; }
    .ping-container { width: 100%; justify-content: flex-start; }
}

















