/* =============================================
   STYLINGCV INLINE CTA COMPONENT
   Reference: /resume-templates/professional-resume-templates/
   ============================================= */

.scv-inline-cta {
    background: linear-gradient(135deg, #111a2b 0%, #1a2744 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scv-inline-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(9, 185, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(16, 155, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.scv-inline-cta > * {
    position: relative;
    z-index: 1;
}

.scv-cta-eyebrow {
    display: inline-block;
    background: rgba(9, 185, 170, 0.15);
    border: 1px solid rgba(9, 185, 170, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #09b9aa;
    margin-bottom: 24px;
}

.scv-inline-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.scv-inline-cta h2 br {
    display: block;
}

.scv-inline-cta > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.scv-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
}

.scv-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #09b9aa 0%, #08a89a 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(9, 185, 170, 0.35);
    transition: all 0.3s ease;
}

.scv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(9, 185, 170, 0.45);
    color: #ffffff;
}

.scv-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #09b9aa;
    color: #ffffff;
}

.scv-cta-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.scv-cta-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scv-cta-stats span::before {
    content: '✓';
    color: #09b9aa;
    font-weight: bold;
}

/* Smaller variant for between sections */
.scv-inline-cta.scv-cta-compact {
    padding: 40px 30px;
    margin: 40px 0;
}

.scv-inline-cta.scv-cta-compact h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.scv-inline-cta.scv-cta-compact > p {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .scv-inline-cta {
        padding: 40px 20px;
        margin: 40px 0;
        border-radius: 16px;
    }

    .scv-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .scv-btn-primary,
    .scv-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .scv-cta-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* Light background variant */
.scv-inline-cta.scv-cta-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.scv-inline-cta.scv-cta-light h2 {
    color: #111a2b;
}

.scv-inline-cta.scv-cta-light > p {
    color: #64748b;
}

.scv-inline-cta.scv-cta-light .scv-cta-stats {
    color: #64748b;
}
