/* Velaro — pagina Contatti senza modulo */
.contact-audience-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.contact-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.contact-section-heading h2 {
    margin: 14px 0 16px;
}

.contact-section-heading p {
    color: #64748b;
    line-height: 1.75;
}

.contact-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-audience-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 114, 206, 0.35);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.contact-audience-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: rgba(0, 114, 206, 0.1);
    color: #0072ce;
    font-weight: 800;
    font-size: 13px;
}

.contact-audience-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.3;
}

.contact-audience-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.direct-contact-section {
    padding: 95px 0;
    background: #ffffff;
}

.direct-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 60px;
    align-items: center;
}

.direct-contact-copy h2 {
    margin: 14px 0 20px;
}

.direct-contact-copy > p {
    color: #64748b;
    line-height: 1.8;
    max-width: 680px;
}

.direct-contact-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 15px;
}

.direct-contact-benefits li {
    position: relative;
    padding-left: 34px;
    color: #334155;
    line-height: 1.6;
}

.direct-contact-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 114, 206, 0.12);
    color: #0072ce;
    font-size: 13px;
    font-weight: 800;
}

.company-contact-card {
    padding: 38px;
    background: linear-gradient(145deg, #081326 0%, #102a4b 100%);
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(3, 15, 32, 0.24);
}

.company-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #0072ce;
    font-size: 26px;
    font-weight: 800;
}

.company-contact-label {
    display: block;
    margin-bottom: 9px;
    color: #a8c9e8;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: 11px;
    font-weight: 800;
}

.company-contact-email {
    display: inline-block;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(21px, 3vw, 30px);
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.company-contact-card > p {
    margin: 0 0 25px;
    color: #cfdeec;
    line-height: 1.7;
}

.company-contact-button {
    display: inline-flex;
    margin-bottom: 30px;
}

.company-contact-details {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.15);
}

.company-contact-details > div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.company-contact-details strong {
    color: #a8c9e8;
    font-size: 13px;
}

.company-contact-details span,
.company-contact-details a {
    color: #ffffff;
    text-align: right;
    text-decoration: none;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

@media (max-width: 980px) {
    .contact-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .direct-contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 640px) {
    .contact-audience-section,
    .direct-contact-section {
        padding: 65px 0;
    }

    .contact-audience-grid {
        grid-template-columns: 1fr;
    }

    .contact-audience-card {
        min-height: 0;
    }

    .company-contact-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .company-contact-details > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .company-contact-details span,
    .company-contact-details a {
        text-align: left;
    }
}
