/* CTA Secondary Section */

.cta-secondary {
    padding: 80px 0;
    background: var(--bg-secondary, #1a1a1a);
    color: var(--white, #ffffff);
    position: relative;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary, #1a1a1a);
    opacity: 0.05;
    z-index: 1;
}

.cta-secondary .container {
    position: relative;
    z-index: 2;
}

.cta-secondary__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-secondary__title {
    font-size: 66px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 16px;
    color: var(--white, #ffffff);
}

.cta-secondary__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 138%;
    margin-bottom: 40px;
    color: var(--grayc5, #c5c5c5);
}

.cta-secondary__subtitle p {
    margin-bottom: 40px;
}

.cta-secondary__subtitle p:last-child {
    margin-bottom: 40px;
}

.cta-secondary__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tablet */
@media (max-width: 1024px) {
    .cta-secondary {
        padding: 60px 0;
    }

    .cta-secondary__title {
        font-size: 56px;
    }

    .cta-secondary__subtitle {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .cta-secondary {
        padding: 50px 0;
    }

    .cta-secondary__title {
        font-size: 44px;
    }

    .cta-secondary__subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-secondary__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-secondary__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}