/* =========================
   GET STARTED / CTA SECTION
========================= */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg,
            rgba(255, 122, 25, 0.08),
            rgba(0, 0, 0, 0.95));
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

/* Glow effects */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.cta-section::before {
    top: -80px;
    left: -80px;
    background: rgba(255, 122, 25, 0.35);
}

.cta-section::after {
    bottom: -80px;
    right: -80px;
    background: rgba(126, 217, 87, 0.25);
}

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

/* Badge */
.cta-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    background: rgba(255, 122, 25, 0.12);
    border: 1px solid rgba(255, 122, 25, 0.4);
    margin-bottom: 20px;
}

/* Title */
.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg,
            #ffffff,
            var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.cta-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Actions */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primary button */
.btn-primary {
    background: linear-gradient(135deg,
            var(--color-orange),
            #ff9a3c);
    color: #000;
    box-shadow: 0 12px 30px rgba(255, 122, 25, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255, 122, 25, 0.55);
}

/* Outline button */
.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-orange);
    color: var(--color-orange);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .cta-section {
        padding: 100px 6%;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

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

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 26px;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }
}
