/* FabSoftBlog-CTA.css - Blog CTA section styles
   Dependencies: fabsoft-variables.css
   Created: 2026-02-18 (Audit Top 5) */

.fabsoft-blog-cta {
    background: linear-gradient(135deg, var(--fabsoft-blue, #0071E3) 0%, var(--fabsoft-blue-dark, #005BB5) 100%);
    padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px);
    text-align: center;
    margin-top: 48px;
}

.fabsoft-blog-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.fabsoft-blog-cta__title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--fabsoft-white, #FFFFFF);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.fabsoft-blog-cta__subtitle {
    font-size: clamp(16px, 2.5vw, 19px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 32px;
}

.fabsoft-blog-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.fabsoft-blog-cta__buttons .btn-trial {
    background: var(--fabsoft-white, #FFFFFF);
    color: var(--fabsoft-blue, #0071E3) !important;
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fabsoft-blog-cta__buttons .btn-trial:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.fabsoft-blog-cta__buttons .btn-trial:focus-visible {
    outline: 2px solid var(--fabsoft-white, #FFFFFF);
    outline-offset: 3px;
}

.fabsoft-blog-cta__buttons .btn-secondary-white {
    background: transparent;
    color: var(--fabsoft-white, #FFFFFF);
    padding: 14px 32px;
    border-radius: 980px;
    border: 2px solid var(--fabsoft-white, #FFFFFF);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fabsoft-blog-cta__buttons .btn-secondary-white:hover {
    background: var(--fabsoft-white, #FFFFFF);
    color: var(--fabsoft-blue, #0071E3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.fabsoft-blog-cta__buttons .btn-secondary-white:focus-visible {
    outline: 2px solid var(--fabsoft-white, #FFFFFF);
    outline-offset: 3px;
}

.fabsoft-blog-cta__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.fabsoft-blog-cta__trust span::before {
    content: '\2713';
    color: var(--fabsoft-success, #00C853);
    font-weight: 700;
    margin-right: 6px;
}

@media (min-width: 768px) {
    .fabsoft-blog-cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fabsoft-blog-cta__buttons .btn-trial,
    .fabsoft-blog-cta__buttons .btn-secondary-white {
        transition: none;
    }
    .fabsoft-blog-cta__buttons .btn-trial:hover,
    .fabsoft-blog-cta__buttons .btn-secondary-white:hover {
        transform: none;
    }
}