/* Landing CTA Section Styles */
.landing-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.landing-cta::before {
    display: none;
}

.landing-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.landing-cta__content {
    text-align: center;
}

.landing-cta__title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.landing-cta__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.landing-cta__button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.landing-cta__button--primary {
    background: white;
    color: #3b82f6;
    border-color: white;
}

.landing-cta__button--primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.landing-cta__button--secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.landing-cta__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-cta {
        padding: 4rem 0;
    }

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

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

    .landing-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .landing-cta__button {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-cta {
        padding: 3rem 0;
    }

    .landing-cta__container {
        padding: 0 1rem;
    }

    .landing-cta__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .landing-cta__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .landing-cta__button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

