:root {
    --bg-dark: #0a0b0e;
    --bg-panel: rgba(30, 32, 38, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-neon: #E2E8F0; /* Silver accent */
    --accent-bybit: #F7A600;
    --glow-primary: rgba(226, 232, 240, 0.10);
    --glow-secondary: rgba(148, 163, 184, 0.10);
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--glow-primary);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--glow-secondary);
}

/* МОБИЛЬНЫЙ КОНТЕЙНЕР ДЛЯ ВСЕХ УСТРОЙСТВ */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.section-title.left-align {
    text-align: center;
}

.text-accent {
    color: var(--accent-neon);
    text-shadow: 0 0 20px rgba(226, 232, 240, 0.4);
}

.text-highlight {
    color: var(--accent-bybit);
    font-weight: 700;
}

/* Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.glass-strong {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background: var(--accent-neon);
    color: #0f172a;
    box-shadow: 0 4px 20px rgba(226, 232, 240, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(226, 232, 240, 0.4);
    background: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--accent-neon);
    padding: 16px 20px; /* Уменьшен паддинг для моб версии */
}

.btn-secondary:hover {
    background: rgba(226, 232, 240, 0.1);
}

.btn-large {
    padding: 20px 24px;
    font-size: 1.1rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(226, 232, 240, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(226, 232, 240, 0); }
    100% { box-shadow: 0 0 0 0 rgba(226, 232, 240, 0); }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* ================= HERO ================= */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0 60px;
    gap: 40px;
}

.hero-content {
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(247, 166, 0, 0.15);
    color: var(--accent-bybit);
    border: 1px solid rgba(247, 166, 0, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.trust-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
}

.trust-item .icon {
    font-size: 1.2rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    filter: contrast(1.1) brightness(0.9) grayscale(0.2);
}

.voice-widget {
    position: absolute;
    bottom: -20px;
    right: 15px;
    background: rgba(20, 25, 40, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: floatRight 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes floatRight {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.voice-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-neon);
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-avatar::before {
    content: '▶';
    color: #0f172a;
    font-size: 12px;
    margin-left: 2px;
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 24px;
}

.voice-wave span {
    display: block;
    width: 3px;
    background: var(--accent-neon);
    border-radius: 3px;
    animation: wave 1.2s ease-in-out infinite;
}

.voice-wave span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.voice-wave span:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.voice-wave span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.voice-wave span:nth-child(4) { height: 60%; animation-delay: 0.4s; }
.voice-wave span:nth-child(5) { height: 30%; animation-delay: 0.5s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.voice-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ================= ЧТО ПРОИСХОДИТ ================= */
.what-happens {
    padding: 50px 0;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: dashed 2px var(--glass-border);
    z-index: -1;
}

.timeline-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(226, 232, 240, 0.2);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.outcome-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: cardHighlight 6s infinite;
}

.outcome-card:nth-child(1) { animation-delay: 0s; }
.outcome-card:nth-child(2) { animation-delay: 2s; }
.outcome-card:nth-child(3) { animation-delay: 4s; }

@keyframes cardHighlight {
    0%, 33.33%, 100% {
        border-color: var(--glass-border);
        box-shadow: none;
        transform: translateY(0);
    }
    16.66% {
        border-color: var(--accent-neon);
        box-shadow: 0 10px 30px rgba(226, 232, 240, 0.15);
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
    }
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--glass-border);
}

.outcome-card:nth-child(1)::before { background: var(--accent-neon); }
.outcome-card:nth-child(2)::before { background: var(--accent-bybit); }
.outcome-card:nth-child(3)::before { background: var(--text-main); }

.card-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.1);
}

.card-badge.primary {
    background: var(--accent-neon);
    color: #0f172a;
}

.outcome-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.outcome-card p {
    color: var(--text-muted);
}

.quote-box {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 40px;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.center-cta {
    text-align: center;
    width: 100%;
}

/* ================= ДЛЯ КОГО ЭТОТ РАЗБОР ================= */
.for-whom {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(20, 25, 40, 0.4), transparent);
}

.dotted-list-container {
    width: 100%;
}

.dotted-list {
    list-style: none;
}

.dotted-list li {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
    padding: 24px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s;
}

.dotted-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(226, 232, 240, 0.3);
}

.star-icon {
    color: var(--accent-neon);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(226, 232, 240, 0.5);
}

/* ================= КЕЙСЫ ================= */
.cases {
    padding: 50px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.case-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-neon), #94a3b8);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.case-tag {
    font-size: 0.85rem;
    color: var(--accent-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-quote {
    padding-left: 16px;
    border-left: 3px solid var(--accent-neon);
    font-style: italic;
    color: var(--text-muted);
}

.case-result {
    margin-top: 16px;
    padding: 16px;
    background: rgba(226, 232, 240, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-neon);
    font-family: 'Montserrat', sans-serif;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ================= ПРО АЛЕКСЕЯ ================= */
.about-expert {
    padding: 50px 0;
}

.expert-content {
    padding: 30px;
    width: 100%;
}

.expert-facts {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.expert-facts li {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
}

.fact-icon {
    font-size: 2.5rem;
}

.fact-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.fact-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= ФИНАЛЬНЫЙ CTA ================= */
.final-cta {
    padding: 50px 0 80px;
}

.cta-card {
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    background: linear-gradient(180deg, rgba(20,25,40,0.8), rgba(7,10,19,0.9));
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--text-main);
}

.cta-features .dot {
    display: none;
}
