/* ==========================================================================
   CTA QUOTE SECTION
   ========================================================================== */
.cta-quote-section {
    padding: 140px 0;
    position: relative;
    background: #09090b;
    /* Deep dark background */
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-quote {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-quote span {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
}

.cta-subtext {
    font-size: 22px;
    color: #a1a1aa;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn-wrapper {
    display: inline-block;
}

.cta-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px 60px;
    background: white;
    color: black;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.cta-main-btn i {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-main-btn:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 20px 80px -10px rgba(255, 255, 255, 0.4);
    color: black;
}

.cta-main-btn:hover i {
    transform: translateX(8px);
}

/* Background Glow */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-quote {
        font-size: 56px;
    }
}

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

    .cta-quote {
        font-size: 40px;
    }

    .cta-subtext {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .cta-main-btn {
        padding: 20px 40px;
        font-size: 16px;
        width: 100%;
    }
}