/* ==========================================================================
   Custom Landing CTA
   Centered CTA section with title, subtitle, and large button
   ========================================================================== */

#custom-landing-cta {
    margin-bottom: var(--space-between-sections);
    padding: 120px 0;
}

.landing-cta__container {
    max-width: var(--neosection-width);
    margin: 0 auto;
    padding: 0 98px;
    text-align: center;
}

.landing-cta__title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.landing-cta__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #000;
    margin: 20px auto 0;
}

.landing-cta__subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
}

.landing-cta__disclaimer {
    font-size: 1.1rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta__btn {
    display: inline-block;
    padding: 22px 50px;
    font-size: 1.2rem;
    background-color: #000;
    color: #fff;
    border-radius: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #000;
}

.landing-cta__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #fff;
}

@media (max-width: 992px) {
    #custom-landing-cta {
        padding: 60px 0;
    }

    .landing-cta__container {
        padding: 0 var(--neosection-padding);
    }

    .landing-cta__title {
        font-size: 1.8rem;
    }

    .landing-cta__subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .landing-cta__btn {
        padding: 18px 45px;
        font-size: 1rem;
    }

    .landing-cta__title {
        letter-spacing: 2px;
    }
}
