/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, #95231B 0%, #252525 99.96%);
    border-top: 4px solid #A4271E;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
}

.cta-wrapper {
    width: 100%;
    min-height: 260px;
    height: 100%;
    border-radius: 56px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0px 20px 40px 8px rgba(164, 39, 30, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
    gap: 80px;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 56px;
    padding: 4px;
    background: linear-gradient(180deg, #252525 0%, #A4271E 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000066;
    z-index: 1;
    border-radius: 52px;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
}

.cta-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0%;
    color: #ffffff;
    margin: 0;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #E2E8F0;
    margin: 0;
    max-width: 700px;
}

.cta-right {
    display: flex;
    align-items: center;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    height: 40px;
    padding: 8px 16px;
    border-radius: 24px;
    background: #A4271E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.8%;
    color: #ffffff;
}

.cta-button:hover {
    background: #8B1F18;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 39, 30, 0.4);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1023px) {
    .cta-inner {
        padding: 0 var(--gutter-tablet);
    }

    .cta-wrapper {
        padding: 32px 40px;
        gap: 48px;
        border-radius: 48px;
    }

    .cta-wrapper::before {
        border-radius: 48px;
    }

    .cta-background img {
        border-radius: 44px;
    }

    .cta-overlay {
        border-radius: 44px;
    }

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

    .cta-description {
        font-size: 17px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .cta-inner {
        padding: 0 var(--gutter-tablet);
    }

    .cta-section {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .cta-wrapper {
        padding: 32px 24px;
        gap: 32px;
        border-radius: 32px;
    }

    .cta-wrapper::before {
        border-radius: 32px;
    }

    .cta-background img {
        border-radius: 28px;
    }

    .cta-overlay {
        border-radius: 28px;
    }

    .cta-content {
        flex-direction: column;
        gap: 32px;
    }

    .cta-left {
        text-align: center;
    }

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

    .cta-description {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-right {
        width: 100%;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

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