/* CTA Footer Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    background-color: var(--bg-dark);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--accent-green);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-primary-glow {
    background: var(--accent-green);
    color: #000;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.02);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-section {
        padding: 6rem 1.5rem;
    }

    .cta-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-box {
        width: 100%;
        max-width: 320px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.85rem;
    }
}