/* ============================
   CTA SECTION — GKI
   ============================ */
.cta-section {
    width: 100%;
    padding: 0;
    background: #252525;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    width: 100%;
    min-height: 360px;
    border-radius: 0;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 80px var(--gutter-desktop);
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: #ffffff;
    margin: 0;
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    max-width: 280px;
    width: 100%;
    height: 12px;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ffffff;
}

.cta-divider span {
    width: 8px;
    height: 8px;
    margin: 0 12px;
    background: #ffffff;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    margin: 20px 0 0;
    max-width: 560px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    margin-top: 28px;
    padding: 8px 24px;
    border-radius: 12px;
    border: 1px solid #ffffff;
    background: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #211F1F;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #f3f3f3;
}

@media (max-width: 1023px) {
    .cta-content {
        padding: 64px var(--gutter-tablet);
    }

    .cta-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 767px) {
    .cta-wrapper {
        min-height: 0;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .cta-content {
        padding: 48px var(--gutter-tablet);
    }

    .cta-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 575px) {
    .cta-content {
        padding: 40px var(--gutter-mobile);
    }
}
