/* ==========================================================================
   CTA Section Styles
   ========================================================================== */

.cta {
    position: relative;
    width: 100%;
    padding: 80px 0;
    border-radius: 0 64px;
    background: #ffd46e;
    margin-bottom: -64px;
}

.cta::before {
    content: '';
    position: absolute;
    top: -64px;
    left: 0;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 0 0, transparent 64px, #ffd46e 64px);
    transform: rotate(90deg);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -64px;
    right: 0;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 0 0, transparent 64px, #ffd46e 64px);
    transform: rotate(-90deg);
}

.cta__container {
    position: relative;
    z-index: 2;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content */
.cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta__title {
    color: #023421;
    font-size: 56px;
    font-family: var(--font-family);
    text-align: right;
    margin: 0;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.cta__subtitle {
    color: #686868;
    font-size: 24px;
    font-family: var(--font-family);
    text-align: right;
    margin: 0;
    line-height: 28px;
    max-width: 520px;
}

/* Buttons */
.cta__buttons {
    display: flex;
    gap: 32px;
}

.cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    height: 56px;
    background-color: #023421;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border-radius: 0 16px;
    white-space: nowrap;
}

.cta__button:hover {
    background-color: #034d31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 212, 110, 0.3);
}

.cta__button--primary .cta__button-text {
    color: #ffffff;
}

.cta__button--secondary .cta__button-text {
    color: #ffd46e;
    font-size: 16px;
    font-family: var(--second-family);
    font-weight: bold;
}

.cta__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta__button-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* Secondary Button */
.cta__button--secondary {
    min-width: 221px;
}

/* Responsive */
@media (max-width: 1580px) {
    .cta__content {
        margin: 0 30px;
    }

    .cta__title {
        white-space: normal;
    }

    .cta__buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cta__button {
        width: 100%
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
        border-radius: 0 32px;
    }

    .cta::before {
        top: -32px;
        width: 32px;
        height: 32px;
        background: radial-gradient(circle at 0 0, transparent 32px, #ffd46e 32px);
    }

    .cta::after {
        bottom: -32px;
        width: 32px;
        height: 32px;
        background: radial-gradient(circle at 0 0, transparent 32px, #ffd46e 32px);
    }

    .cta__content {
        gap: 20px;
        flex-direction: column;
        margin: 0;
        align-items: stretch;
    }

    .cta__title {
        font-size: 40px;
        line-height: 1;
    }

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

