:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #f97316; /* Огненный оранжевый */
    --profit: #10b981; /* Зеленый */
    --drawdown: #ef4444; /* Красный для просадки */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cuprum', sans-serif; }

body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Шапка */
header { background: var(--card-bg); padding: 20px 0; border-bottom: 1px solid #334155; position: relative; z-index: 10;}
header .container { display: flex; justify-content: space-between; align-items: center; }
header h1 { color: var(--accent); font-size: 1.8rem; }
header nav a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: 0.3s; font-weight: 500; }
header nav a:hover { color: var(--text-main); }

/* Главный экран с фоном */
.hero { 
    position: relative; 
    min-height: 70vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    border-bottom: 1px solid #334155;
}
#heroCanvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; opacity: 0.65; /* Делаем свечи полупрозрачными, чтобы не резали глаз */
}
.hero-content { 
    position: relative; z-index: 2; text-align: center; padding: 20px;
    background: rgba(15, 23, 42, 0.7); /* Полупрозрачная подложка под текст */
    border-radius: 16px; 
    backdrop-filter: blur(5px);
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.hero h2 { font-size: 3rem; margin-bottom: 15px; color: var(--text-main); text-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
.hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto 30px auto; font-size: 1.1rem; }
.btn { display: inline-block; background: var(--accent); color: white; padding: 15px 40px; text-decoration: none; border-radius: 8px; font-size: 1.1rem; transition: 0.3s; border: none; cursor: pointer; font-weight: bold; }
.btn:hover { background: #ea580c; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4); }

/* Описание (Сетка карточек) */
.about { padding: 80px 0; }
.about h2 { text-align: center; margin-bottom: 50px; font-size: 2rem; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.about-card { background: var(--card-bg); padding: 30px; border-radius: 12px; border: 1px solid #334155; transition: 0.3s; }
.about-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.about-card h3 { margin-bottom: 15px; color: var(--accent); font-size: 1.3rem; }
.about-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Мониторинг (Широкая секция) — живой дашборд */
.monitoring {
    padding: 80px 0;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}
/* Анимированная сетка на фоне */
.monitoring::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
    pointer-events: none;
}
@keyframes gridShift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
/* Плавающие светящиеся сферы (отдельные div) */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    will-change: transform;
}
/* 🟠 Большой оранжевый — слева */
.orb-1 {
    width: 200px; height: 200px;
    top: 20%; left: 8%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    animation: orbFloat1 14s ease-in-out infinite alternate;
}
/* 🔵 Голубой — справа */
.orb-2 {
    width: 160px; height: 160px;
    top: 15%; right: 12%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    animation: orbFloat2 18s ease-in-out infinite alternate;
}
/* 🟠 Маленький оранжевый — снизу */
.orb-3 {
    width: 120px; height: 120px;
    bottom: 10%; left: 40%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
    animation: orbFloat3 12s ease-in-out infinite alternate;
}
@keyframes orbFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(60px, -40px) scale(1.15); }
    50%  { transform: translate(20px, 30px) scale(0.9); }
    75%  { transform: translate(-40px, -20px) scale(1.1); }
    100% { transform: translate(30px, 10px) scale(1.05); }
}
@keyframes orbFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    30%  { transform: translate(-50px, 35px) scale(1.1); }
    60%  { transform: translate(40px, -30px) scale(0.9); }
    100% { transform: translate(-20px, 20px) scale(1.05); }
}
@keyframes orbFloat3 {
    0%   { transform: translate(0, 0) scale(1); }
    40%  { transform: translate(50px, -50px) scale(1.2); }
    70%  { transform: translate(-30px, 20px) scale(0.85); }
    100% { transform: translate(20px, -30px) scale(1.1); }
}
.chart-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.chart-wrapper--wide {
    max-width: 100%;
    padding: 0 40px;
}
.charts-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.chart-box { min-width: 0; }
.chart-title {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
/* Glassmorphism + пульсирующая рамка */
.chart-container {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    height: 380px;
    animation: chartPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
/* Скобки HUD по углам графика */
.chart-container::before,
.chart-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.chart-container::before {
    top: 6px; left: 6px;
    border-top: 2px solid rgba(249, 115, 22, 0.3);
    border-left: 2px solid rgba(249, 115, 22, 0.3);
}
.chart-container::after {
    bottom: 6px; right: 6px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
    border-right: 2px solid rgba(249, 115, 22, 0.3);
}
@keyframes chartPulse {
    0%, 100% { border-color: rgba(249, 115, 22, 0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); }
    50%      { border-color: rgba(249, 115, 22, 0.35); box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(249, 115, 22, 0.08), inset 0 1px 0 rgba(255,255,255,0.05); }
}

@media (max-width: 900px) {
    .charts-row { grid-template-columns: 1fr; }
    .chart-container { height: 300px; }
}

/* Карточки статистики Прибыль/Просадка */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.stat-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}
/* Подсветка карточки Профит */
.stat-card:has(.stat-value.profit) {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2), 0 0 20px rgba(16, 185, 129, 0.05);
}
/* Подсветка карточки Просадка */
.stat-card:has(.stat-value.drawdown) {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2), 0 0 20px rgba(239, 68, 68, 0.05);
}
/* Flash при обновлении значений */
.stat-card.flash { animation: statFlash 0.6s ease-out; }
@keyframes statFlash {
    0%   { background: rgba(249, 115, 22, 0.2); }
    100% { background: rgba(15, 23, 42, 0.6); }
}
.stat-label { display: block; font-size: 1rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.stat-value { display: block; font-size: 2.5rem; font-weight: bold; }
.stat-value.profit { color: var(--profit); text-shadow: 0 0 10px rgba(16, 185, 129, 0.3); }
.stat-value.drawdown { color: var(--drawdown); text-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }

/* Копирка */
.copy-trading { text-align: center; padding: 80px 0; }
.copy-trading p { color: var(--text-muted); max-width: 600px; margin: 0 auto 30px auto; }

footer { text-align: center; padding: 30px 0; color: var(--text-muted); border-top: 1px solid #334155; }
.disclaimer { max-width: 800px; margin: 12px auto 0; font-size: 0.72rem; line-height: 1.6; color: rgba(148, 163, 184, 0.45); }
/* Плавная прокрутка */
html { scroll-behavior: smooth; }

/* Навигация */
.btn-nav { 
    background: rgba(249, 115, 22, 0.2); 
    color: #f97316 !important; 
    border: 1px solid #f97316;
    padding: 8px 15px; 
    border-radius: 8px; 
    font-weight: bold;
    transition: 0.3s;
}
.btn-nav:hover { background: #f97316; color: white !important; }

/* Описание секций */
.section-desc { color: #94a3b8; text-align: center; max-width: 700px; margin: 0 auto 40px auto; line-height: 1.7; }

/* Секция ПУЛА */
.pool-section { padding: 80px 0; background: var(--card-bg); }
.pool-section h2 { text-align: center; margin-bottom: 15px; }

.tariffs-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* 4 колонки для первого ряда */
    gap: 20px; 
    margin-bottom: 20px; /* Отступ между рядами */
}
/* VIP Ряд - 3 широких блока */
.tariffs-vip {
    grid-template-columns: repeat(3, 1fr); /* 3 колонки на всю ширину */
    max-width: 100%; /* Разрешаем растянуться на всю ширину контейнера */
    margin-bottom: 50px;
}
.tariff-card { 
    background: var(--bg-color); 
    padding: 30px 20px; 
    border-radius: 12px; 
    border: 1px solid #334155; 
    text-align: center; 
    transition: 0.3s;
    position: relative;
}
.tariff-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.tariff-card h3 { color: var(--accent); margin: 0 0 10px 0; font-size: 1.2rem; }
.tariff-range { color: #94a3b8; font-size: 0.9rem; margin-bottom: 15px; }
.tariff-rate { font-size: 2rem; font-weight: bold; color: #10b981; }
.tariff-rate span { font-size: 0.9rem; color: #94a3b8; font-weight: normal; }

.tariff-card.featured { 
    border-color: #f97316; 
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.2); 
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}
.tariff-badge { 
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #f97316; color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold;
}

.pool-action, .copy-action { text-align: center; margin-top: 20px; }
.pool-action p { color: #94a3b8; margin-bottom: 20px; }

/* Карточки статистики графика (для главной) */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.stat-card { background: var(--bg-color); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #334155; }
.stat-label { display: block; font-size: 0.9rem; color: #94a3b8; margin-bottom: 5px; }
.stat-value { display: block; font-size: 2rem; font-weight: bold; }
.stat-value.profit { color: #10b981; }
.stat-value.drawdown { color: #ef4444; }

/* Секция Купить EA */
.buy-ea-section { padding: 80px 0; background: var(--bg-color); }
.ea-content { display: flex; align-items: center; gap: 60px; }
.ea-text { flex: 1; }
.ea-text h2 { text-align: left; margin-bottom: 20px; }
.ea-text p { color: #94a3b8; line-height: 1.7; margin-bottom: 20px; }
.ea-text ul { list-style: none; padding: 0; margin-bottom: 30px; color: #f8fafc; }
.ea-text ul li { margin-bottom: 10px; font-size: 1.1rem; }

.ea-image { flex: 1; display: flex; justify-content: center; align-items: center; }
#eaCanvas {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15), inset 0 0 30px rgba(249, 115, 22, 0.05);
}
/* Гостевой чат на Лендинге */
.guest-chat-widget { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }
.guest-chat-toggle { background: #f97316; color: white; border: none; padding: 15px 25px; border-radius: 30px; font-weight: bold; cursor: pointer; font-family: 'Cuprum', sans-serif; font-size: 1rem; box-shadow: 0 5px 20px rgba(249, 115, 22, 0.5); transition: 0.3s; }
.guest-chat-toggle:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6); }

.guest-chat-box { display: none; flex-direction: column; background: rgba(30, 41, 59, 0.95); backdrop-filter: blur(10px); border: 1px solid #334155; border-radius: 16px 16px 0 16px; width: 350px; height: 450px; position: absolute; bottom: 70px; right: 0; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.6); padding: 20px; }

/* НОВОЕ: Отступ для формы, чтобы не наезжала на шапку */
#guestInitForm { padding-top: 70px; }

.guest-chat-header { position: absolute; top: 0; left: 0; width: 100%; background: #334155; padding: 15px 20px; color: white; font-weight: bold; display: flex; justify-content: space-between; align-items: center; box-sizing: border-box; }
.guest-chat-close { cursor: pointer; font-size: 1.5rem; color: #94a3b8; transition: 0.2s; }
.guest-chat-close:hover { color: white; }

.guest-chat-box input[type="text"], .guest-chat-box input[type="email"] { padding: 12px; background: #0f172a; border: 1px solid #334155; border-radius: 8px; color: white; font-family: 'Cuprum', sans-serif; outline: none; }
.guest-chat-box input:focus { border-color: #f97316; }

.guest-chat-messages { flex: 1; padding-top: 50px; padding-bottom: 10px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.guest-chat-messages::-webkit-scrollbar { width: 5px; }
.guest-chat-messages::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }

.msg-guest, .msg-admin { padding: 10px 15px; border-radius: 12px; max-width: 80%; font-size: 0.9rem; line-height: 1.4; word-wrap: break-word; }
.msg-guest { background: #3b82f6; color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.msg-admin { background: #1e293b; color: #f8fafc; align-self: flex-start; border-bottom-left-radius: 2px; border: 1px solid #334155; }
.msg-time { font-size: 0.7rem; opacity: 0.7; margin-top: 5px; display: block; }

.guest-chat-input { display: flex; gap: 10px; margin-top: 10px; }
.guest-chat-input input { flex: 1; padding: 12px; background: #0f172a; border: none; color: white; font-family: 'Cuprum', sans-serif; outline: none; border-radius: 8px; }
.guest-chat-input button { background: #10b981; border: none; color: white; padding: 12px 15px; border-radius: 8px; cursor: pointer; font-size: 1.2rem; transition: 0.2s; }
.guest-chat-input button:hover { background: #059669; }
/* ===== Гамбургер-меню (кнопка) ===== */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f97316;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Мобильное меню (оверлей) ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: #f8fafc;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 12px 24px;
    transition: 0.3s;
}
.mobile-nav a:hover { color: #f97316; }
.mobile-nav .btn-nav {
    font-size: 1.2rem;
    margin-left: 0;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    /* Шапка: скрываем десктопную навигацию, показываем бургер */
    header nav { display: none; }
    .burger-btn { display: block; }

    /* Герой */
    .hero h2 { font-size: 1.8rem; line-height: 1.3; }
    .hero p { font-size: 0.95rem; }
    .hero-content { padding: 20px 16px; margin: 0 10px; }
    .btn { padding: 14px 28px; font-size: 1rem; }

    /* Секции — меньше отступов */
    .about { padding: 50px 0; }
    .about h2 { font-size: 1.5rem; margin-bottom: 30px; }
    .about-grid { gap: 16px; }
    .about-card { padding: 20px; }

    .monitoring { padding: 50px 0; }
    .chart-container { height: 280px; padding: 16px; }

    /* Статистика — одна колонка */
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-value { font-size: 1.8rem; }

    /* Тарифы — 1 в строку */
    .tariffs-grid, .tariffs-vip {
        grid-template-columns: 1fr;
    }
    .pool-section { padding: 50px 0; }
    .pool-section h2 { font-size: 1.5rem; }

    /* Секция EA */
    .ea-content { flex-direction: column; text-align: center; }
    .ea-text h2 { text-align: center; }
    .buy-ea-section { padding: 50px 0; }

    /* Пентаграмма — вписывается в экран */
    #eaCanvas {
        width: 280px;
        height: 280px;
    }

    /* Гостевой чат — кнопка справа, коробка на всю ширину */
    .guest-chat-widget { bottom: 16px; right: 16px; left: auto; }
    .guest-chat-toggle { padding: 12px 18px; font-size: 0.9rem; }
    .guest-chat-box {
        width: calc(100vw - 32px);
        left: auto;
        right: 0;
        height: 420px;
        bottom: 60px;
        border-radius: 12px;
    }

    /* Кнопка наверх — слева, выше кнопки чата */
    #scrollTopBtn { bottom: 16px; left: 16px; width: 42px; height: 42px; font-size: 1rem; }

    /* Копитрейдинг кнопка */
    .copy-action .btn { white-space: normal; }

    /* Описание секций */
    .section-desc { font-size: 0.9rem; }
    .section-divider { padding: 20px 0; }
    .chart-wrapper--wide { padding: 0 16px; }
}

@media (max-width: 400px) {
    /* Очень маленькие экраны */
    .hero h2 { font-size: 1.5rem; }
    #eaCanvas { width: 240px; height: 240px; }
    .chart-container { height: 230px; padding: 12px; }
    .stat-value { font-size: 1.5rem; }
}

/* ===== Огонь-пульс на логотипе ===== */
.fire-pulse {
    display: inline-block;
    animation: firePulse 1.5s ease-in-out infinite;
}
@keyframes firePulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.25); filter: brightness(1.4) drop-shadow(0 0 8px rgba(249, 115, 22, 0.8)); }
}

/* ===== Разделитель секций ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    background: var(--card-bg);
}
.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
}
.divider-fire {
    font-size: 1.6rem;
    animation: firePulse 1.5s ease-in-out infinite;
}

/* ===== Кнопка наверх ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(8px);
    color: #f97316;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scrollTopBtn:hover {
    background: #f97316;
    color: white;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

/* ===== Статус советника ===== */
.advisor-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}
.advisor-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
}
.advisor-pulse.live {
    background: #10b981;
    animation: pulseGreen 1.5s ease-in-out infinite;
}
.advisor-pulse.off {
    background: #ef4444;
}
.advisor-pulse.weekend {
    background: #eab308;
    animation: pulseYellow 2s ease-in-out infinite;
}
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
@keyframes pulseYellow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(234, 179, 8, 0); }
}

/* ===== КОПИТРЕЙДИНГ — расширенный блок ===== */
.copy-section {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}
.copy-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(249, 115, 22, 0.06), transparent),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(6, 182, 212, 0.04), transparent),
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    animation: copyGridMove 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes copyGridMove {
    0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 0 0, 60px 60px, 60px 60px; }
}
.copy-section .container {
    position: relative;
    z-index: 1;
}

.copy-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

/* Доходность — 3 карточки */
.yield-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}
.yield-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.yield-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: 0.3s;
}
.yield-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.yield-card:hover::before { opacity: 1; }
.yield-label {
    display: block;
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.yield-value {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
}
.yield-value.green { color: #10b981; text-shadow: 0 0 15px rgba(16,185,129,0.3); }
.yield-value.orange { color: #f97316; text-shadow: 0 0 15px rgba(249,115,22,0.3); }
.yield-value.cyan { color: #06b6d4; text-shadow: 0 0 15px rgba(6,182,212,0.3); }
.yield-sub {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 6px;
}

/* Как работает копитрейдинг — шаги */
.copy-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
}
.copy-step {
    text-align: center;
    padding: 25px 16px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid #334155;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}
.copy-step:hover {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(30, 41, 59, 0.9);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(249,115,22,0.3);
}
.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
.step-title {
    color: #f8fafc;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}
.step-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Стрелки между шагами */
.copy-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: #f97316;
    font-size: 1.4rem;
    z-index: 2;
}

/* Преимущества копитрейдинга */
.copy-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}
.copy-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: 0.3s;
}
.copy-feature:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(30, 41, 59, 0.7);
}
.copy-feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.copy-feature-text h4 {
    color: #f8fafc;
    margin-bottom: 4px;
    font-size: 1rem;
}
.copy-feature-text p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Канвас анимации — сделки мастер->клиенты */
.copy-animation-wrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 420px;
    margin: 40px auto 20px;
    overflow: hidden;
    border: none;
    box-shadow: none;
    background: transparent;
}
#copyAnimCanvas {
    width: 100%;
    height: 100%;
}

/* ===== ПОКУПКА РОБОТА — расширенный блок ===== */
.bot-section {
    padding: 80px 0;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}
.bot-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: gridMove 8s linear infinite;
}
@keyframes gridMove {
    0%   { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}
.bot-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

/* Робот: доходность */
.bot-yield-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    z-index: 1;
}

/* Что входит — карточки */
.bot-includes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
    z-index: 1;
}
.bot-include-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.3s;
}
.bot-include-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(16,185,129,0.1);
}
.bot-include-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: block;
}
.bot-include-card h4 {
    color: #f8fafc;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.bot-include-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Сравнение: Пул / Копирка / Робот */
.compare-section {
    padding: 60px 0;
    background: var(--bg-color);
}
.compare-section h2 {
    text-align: center;
    margin-bottom: 40px;
}
.compare-table-wrap {
    overflow-x: auto;
    position: relative;
    z-index: 1;
}
.compare-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.compare-table th, .compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(51,65,85,0.5);
}
.compare-table thead th {
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    padding-bottom: 20px;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td:first-child {
    text-align: left;
    color: #94a3b8;
    font-weight: 500;
}
.compare-table tbody td {
    color: #f8fafc;
}
.compare-table .col-highlight {
    background: rgba(249, 115, 22, 0.06);
}
.compare-table thead .col-highlight {
    color: #f97316;
    font-size: 0.9rem;
}
.check-yes { color: #10b981; font-weight: 700; }
.check-no { color: #64748b; }
.compare-table tfoot td {
    padding: 20px;
    border-bottom: none;
}

/* ===== Адаптивность для новых блоков ===== */
@media (max-width: 900px) {
    .yield-grid, .bot-yield-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .copy-steps {
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
    }
    .copy-step:not(:last-child)::after { display: none; }
    .copy-features { grid-template-columns: 1fr; }
    .bot-includes { grid-template-columns: 1fr; max-width: 400px; }
    .copy-animation-wrap { height: 360px; }
}
@media (max-width: 600px) {
    .copy-steps { grid-template-columns: 1fr; max-width: 350px; }
}