/* ==========================================================================
   CoreForm DS — Hero unico "ottanio scuro" (spec 2026-07-09-restyle-nav-hero)
   Sostituisce: hp-hero, cert-hero, ata-hero, gata-hero, ci-hero (hero only).
   ========================================================================== */
.cf-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3A47 0%, #125A70 55%, #17677E 100%);
    color: #fff;
    padding: 4.5rem 0 3.5rem;
}
.cf-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 44, 108, .14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cf-hero > .container-xl { position: relative; z-index: 2; }
.cf-hero--with-image {
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center right;
}
.cf-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: .35rem .9rem;
    margin-bottom: 1.1rem;
}
.cf-hero__title {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 .8rem;
    max-width: 16em;
}
.cf-hero__title .highlight { color: #FF7AA8; }
.cf-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .85);
    max-width: 40em;
    margin: 0 0 1.4rem;
}
.cf-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.cf-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .9rem;
    margin-top: 2rem;
    max-width: 640px;
}
.cf-hero__stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: .9rem 1rem;
    backdrop-filter: blur(4px);
}
.cf-hero__stat-value { font-size: 1.45rem; font-weight: 700; line-height: 1.1; }
.cf-hero__stat-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-top: .2rem;
}
@media (max-width: 768px) {
    .cf-hero { padding: 3rem 0 2.5rem; }
    .cf-hero--with-image { background-position: center; }
}
