/* ============================================
   ONERA – Enterprise CTA Section
============================================ */

.cta-section {
    padding: 90px 0;
    background: #ffffff;
}

.cta-wrapper {
    max-width: 850px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.cta-title {
    font-size: 34px;
    font-weight: 700;
    color: #0B1F66;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-body {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.cta-primary {
    background: #19E6D1;
    color: #0B1F66;
    border: 2px solid #19E6D1;
}

.cta-primary:hover {
    background: #14c7b5;
    border-color: #14c7b5;
    color: #ffffff;
}

.cta-secondary {
    color: #0B1F66;
    border: 2px solid #0B1F66;
    background: #ffffff;
}

.cta-secondary:hover {
    background: #0B1F66;
    color: #ffffff;
}

.cta-footer {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

/* Contact info */
.cta-contact-info {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7ef;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
}

.contact-icon {
    width: 26px;
    height: 26px;
    opacity: 0.9;
}

.contact-item a {
    color: #0B1F66;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 28px; }
    .cta-subtitle, .cta-body { font-size: 16px; }
}

#cta-enterprise {
    margin-top: 50px;
}