/* ===== CTA Sections ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

.cta-note a {
    color: white;
    text-decoration: underline;
}

/* Soft CTA (Article Page) */
.soft-cta {
    margin-top: 48px;
}

.soft-cta hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin-bottom: 32px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.cta-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.service-item i {
    font-size: 32px;
}

.service-item span {
    font-size: 14px;
}

.cta-contact {
    margin-top: 20px;
    font-size: 16px;
}