/* ===== CTA Section ===== */
.ctaSectionV2 {
    padding: var(--section-bg-py) 0;
}

/* ===== Card ===== */
.cta-card {
    background: #3A66D4;
    border-radius: 28px;
    padding: 50px 60px 42px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* ===== Decorative circles ===== */
.cta-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: #325CC7;
}

.cta-decor-tr {
    width: 331px;
    height: 331px;
    top: -60px;
    right: -58px;
}

/* ===== Inner centered content ===== */
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ===== Headline ===== */
.cta-headline {
    font-family: Outfit;
    font-weight: 600;
    font-size: 35px;
    line-height: 160%;
    letter-spacing: 0%;

    color: #ffffff;
    margin: 0 0 14px;
    max-width: 795px;
}

/* ===== Subtext ===== */
.cta-subtext,
.cta-subtext p {
    font-family: Outfit;
    font-weight: 400;
    font-size: 17px;
    line-height: 170%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin: 0 0 40px;
    max-width: 520px;
}
.cta-subtext p{
    margin-bottom: 0;
}

/* ===== Primary Button ===== */
@keyframes ctaPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70%  { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 13px;
    background: #ffffff;
    color: var(--color-primary, #3A66D4);
    font-family: Outfit;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
    margin-bottom: 40px;
    transition: background 0.25s ease, transform 0.25s ease;
    animation: ctaPulse 2.2s ease-out infinite;
}

.cta-btn-primary:hover {
    background: #f0f5ff;
    transform: translateY(-2px);
    animation: none;
}

/* ===== Trust badge pills ===== */
.cta-trust-badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-trust-badges::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;

background: linear-gradient(90deg, #3A66D4 13.42%, #7A9BEB 50.48%, #3A66D4 83.55%);


}

.cta-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
 background: #FFFFFF1A;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 13px 15px;
    color: #ffffff;
    font-family: Outfit;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;

}

.cta-trust-badge svg {
    flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cta-card {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .cta-headline {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .cta-subtext,
    .cta-subtext p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-btn-primary {
        width: 100%;
        max-width: 320px;
        margin-bottom: 28px;
    }

    .cta-trust-badges {
        gap: 20px;
    }

    .cta-trust-badge {
        padding: 10px 13px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .cta-card {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .cta-headline {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .cta-subtext,
    .cta-subtext p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-btn-primary {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .cta-trust-badges {
        gap: 14px;
    }

    .cta-trust-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
}
