/* CTA Section */
.cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background */
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Box */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: min(90%, 800px);

}
.cta-content::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(20px, 20px);
    background: var(--color-secondary);
    z-index: -1;
    border-radius: inherit;
}
.cta-content__inner{
    position: relative;
    z-index: 2;
    padding: clamp(24px, 5vw, 60px) clamp(20px, 6vw, 80px);
    background: var(--color-primary);
    color: var(--color-white);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.cta-content h2.section-title {
    color: var(--color-white);
    margin-bottom: clamp(12px, 2vw, 20px);
}

/* Text */
.cta-content p {
    margin-bottom: clamp(20px, 3vw, 30px);
}