/* Strength Section CTA Button */
.strength-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 2rem 0;
}

.strength-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 20px rgba(37, 99, 168, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strength-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.strength-cta-button:hover::before {
    left: 100%;
}

.strength-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 168, 0.4);
}

.strength-cta-button .cta-text {
    position: relative;
    z-index: 1;
}

.strength-cta-button i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.strength-cta-button:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .strength-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
}
