/* Shared CTA banner system */
.cta-wrapper,
.cta-banner,
.cta-box,
.about-cta,
.dna-final-cta {
    background: var(--cta-gradient) !important;
    color: #ffffff !important;
}

.cta-wrapper {
    width: calc(100% - (var(--site-padding-x, 24px) * 2));
    max-width: calc(var(--site-max-width, 1400px) - (var(--site-padding-x, 24px) * 2));
    margin: clamp(40px, 8vw, 80px) auto;
    padding: 40px var(--site-padding-x, 24px);
}

.container .cta-wrapper {
    width: 100%;
    max-width: 100%;
}

.cta-container,
.cta-banner,
.cta-box,
.about-cta,
.dna-final-cta {
    width: 100%;
    max-width: var(--site-max-width, 1400px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-padding-x, 24px);
    padding-right: var(--site-padding-x, 24px);
}

.cta-wrapper > .cta-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.cta-container,
.cta-banner,
.cta-box,
.about-cta,
.dna-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-banner,
.cta-box,
.about-cta,
.dna-final-cta {
    border: 1px solid var(--primary-border);
    border-radius: 0;
    margin-top: clamp(40px, 8vw, 80px);
    margin-bottom: clamp(40px, 8vw, 80px);
    padding-top: 40px;
    padding-bottom: 40px;
}

.cta-left,
.cta-content,
.cta-inner-flex {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon,
.cta-logo-wrap,
.cta-logo-large,
.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 80px;
}

.cta-icon svg,
.cta-icon-wrapper i,
.cta-logo-large i {
    color: currentColor;
}

.cta-logo-wrap img,
.cta-logo-wrap .m-logo img {
    max-width: 60px;
    height: auto;
}

.cta-text,
.cta-text-wrapper {
    min-width: 0;
}

.cta-text h2,
.cta-text-wrapper h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 8px;
}

.cta-text p,
.cta-text-wrapper p {
    color: #ede9fe;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
    opacity: 0.95;
}

.cta-actions,
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-cta,
.btn-cta-primary,
.dna-final-cta .btn-primary,
.about-cta .btn-cta-primary {
    background: #ffffff !important;
    color: var(--purple-main) !important;
    border: 1px solid transparent !important;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta:hover,
.btn-cta-primary:hover,
.dna-final-cta .btn-primary:hover,
.about-cta .btn-cta-primary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cta-container,
    .cta-banner,
    .cta-box,
    .about-cta,
    .dna-final-cta {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .cta-left,
    .cta-content,
    .cta-inner-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-actions,
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cta,
    .btn-cta-primary,
    .dna-final-cta .btn-primary,
    .about-cta .btn-cta-primary {
        width: 100%;
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .cta-icon,
    .cta-logo-wrap,
    .cta-logo-large,
    .cta-icon-wrapper {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
        border-radius: 16px;
    }
}
