/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Premium Fintech Palette */
    --bg-primary: #0A0E1A;
    --bg-secondary: #111827;
    --bg-card: #1A2332;
    --accent-primary: #00E5FF;
    --accent-secondary: #00B8D4;
    --accent-gold: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #C9D6DF;
    --text-muted: #8B95A5;
    --border-color: rgba(0, 229, 255, 0.15);
    --success: #00FFA3;
    --warning: #FFA726;

    /* Shadows - Enhanced Premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 50px rgba(0, 229, 255, 0.2);
    --shadow-glow-strong: 0 0 80px rgba(0, 229, 255, 0.3), 0 0 120px rgba(0, 229, 255, 0.15);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 32px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.logo-text {
    letter-spacing: -0.5px;
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-cta:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.telegram-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    display: inline-block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(0, 153, 255, 0.02) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}

/* Large buttons get larger icons */
.btn-lg .btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ============================================
   PERFORMANCE SECTION
   ============================================ */
.performance {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-card:nth-child(2) .stat-value,
    .stat-card:nth-child(3) .stat-value {
        font-size: 24px;
    }

    .proof-stat-value {
        font-size: 24px;
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-featured {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    padding: 12px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 8px;
    line-height: 1.2;
    word-wrap: break-word;
}

/* Smaller font for text-heavy stat values like "No Martingale" and "Automated" */
.stat-card:nth-child(2) .stat-value,
.stat-card:nth-child(3) .stat-value {
    font-size: 28px;
    line-height: 1.2;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-muted);
}

.verification-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.badge-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.badge-text {
    text-align: left;
}

.badge-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--bg-primary);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 24px 0;
    padding: 16px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: pulse-discount 2s ease-in-out infinite;
}

@keyframes pulse-discount {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    gap: 8px;
}

.price-original {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 24px;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    color: var(--warning);
    font-size: 14px;
    font-weight: 600;
    max-width: 800px;
    margin: 48px auto 0;
}

.pricing-notice svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ============================================
   REQUIREMENTS SECTION
   ============================================ */
.requirements {
    background: var(--bg-secondary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.requirement-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.requirement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    padding: 16px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-primary);
}

.requirement-icon svg {
    width: 100%;
    height: 100%;
}

.requirement-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.requirement-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 64px;
    align-items: center;
}

.proof-content .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.proof-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.proof-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proof-stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1.2;
}

.proof-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.verification-badge-alt {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    border-radius: 12px;
}

.verification-badge-alt svg {
    width: 48px;
    height: 48px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.badge-title-alt {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-subtitle-alt {
    font-size: 13px;
    color: var(--text-secondary);
}

.proof-visual {
    position: relative;
}

.chart-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 16px;
    font-weight: 600;
}

.chart-badge {
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--accent-primary);
}

.equity-chart {
    width: 100%;
    height: auto;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 64px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.inline-icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    max-width: 500px;
}

.footer-warning svg {
    width: 16px;
    height: 16px;
    color: var(--warning);
    flex-shrink: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--bg-primary);
    padding: 100px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ============================================
   TRUST SEALS
   ============================================ */
.trust-seals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 40px;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-seal svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-primary);
}

.trust-seal:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ============================================
   GUARANTEE BADGE
   ============================================ */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.guarantee-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 8px 0;
}

.guarantee-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .proof-content .section-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-content {
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        font-size: 18px;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .telegram-icon {
        width: 14px;
        height: 14px;
    }

    /* Header button container on mobile */
    .nav-content > div {
        display: flex;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }

    .nav-content > div .nav-cta {
        flex: 1;
        justify-content: center;
        max-width: 160px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .stats-grid,
    .steps-grid,
    .pricing-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .trust-seals {
        gap: 24px;
        padding: 30px 20px;
    }

    .trust-seal {
        font-size: 12px;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }

    .guarantee-content h3 {
        font-size: 18px;
    }

    .guarantee-content p {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .chart-footer {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .btn {
        width: 100%;
    }

    /* Compact disclosure sections on mobile */
    .risk-disclosure-section,
    .cftc-disclosure-section {
        padding: 30px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .badge-content {
        flex-direction: column;
        text-align: center;
    }

    .badge-text {
        text-align: center;
    }
}

/* ============================================
   LIVE STATS TICKER
   ============================================ */
.live-stats {
    background: var(--bg-secondary);
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-ticker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.ticker-icon {
    font-size: 20px;
}

.ticker-text strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--bg-secondary);
    padding: 100px 0;
    overflow: visible;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px 24px;
    margin-bottom: 48px;
    padding-top: 20px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
    border-color: var(--accent-primary);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(0, 229, 255, 0.08) 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-glow-strong), 0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
}

.testimonial-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px;
}

.featured-label {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    white-space: nowrap;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--bg-primary);
    flex-shrink: 0;
    border: 3px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(10px, 10px); opacity: 0.8; }
}

/* Different gradient colors for each avatar */
.testimonial-card:nth-child(1) .testimonial-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-color: rgba(240, 147, 251, 0.3);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-color: rgba(79, 172, 254, 0.3);
}

.testimonial-card:nth-child(4) .testimonial-avatar {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-color: rgba(67, 233, 123, 0.3);
}

.testimonial-card:nth-child(5) .testimonial-avatar {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-color: rgba(250, 112, 154, 0.3);
}

.testimonial-card:nth-child(6) .testimonial-avatar {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    border-color: rgba(48, 207, 208, 0.3);
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.testimonial-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.verified-badge {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.testimonial-rating {
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.testimonial-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stat-highlight {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.testimonial-cta {
    text-align: center;
    margin-top: 64px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 255, 0.05) 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ============================================
   URGENCY ELEMENTS
   ============================================ */
.urgency-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 184, 0, 0.1) 100%);
    border: 2px solid rgba(255, 69, 0, 0.5);
    border-radius: 12px;
    animation: pulse-border 2s ease-in-out infinite;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-box svg {
    width: 32px;
    height: 32px;
    color: #FF4500;
    flex-shrink: 0;
    margin-top: 4px;
}

.urgency-box strong {
    font-size: 16px;
    color: #FF4500;
    letter-spacing: 0.5px;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(255, 69, 0, 0.5);
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.4);
    }
    50% {
        border-color: rgba(255, 69, 0, 0.8);
        box-shadow: 0 0 0 8px rgba(255, 69, 0, 0);
    }
}

/* ============================================
   DISCLOSURE SECTIONS - COMPACT SPACING
   ============================================ */
.risk-disclosure-section {
    padding: 40px 0;
    background: var(--bg-primary);
}

.cftc-disclosure-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 768px) {
    .stats-ticker {
        justify-content: center;
    }

    .ticker-item {
        font-size: 12px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        padding-top: 24px;
    }

    .featured-label {
        top: -16px;
        right: 16px;
        font-size: 10px;
        padding: 5px 12px;
    }

    .urgency-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }

    .urgency-box svg {
        margin: 0 auto;
    }

    .pricing-notice {
        padding: 16px 24px;
        margin: 32px auto 0;
    }
}