/* ════════════════════════════════════════════════════════════════════
   [v3-2026-05-18] GLOBAL — Protezione mobile + override style.css
   ════════════════════════════════════════════════════════════════════ */
html, body { overflow-x: clip; max-width: 100%; }
body { word-wrap: break-word; overflow-wrap: break-word; }
img, svg, video { max-width: 100%; height: auto; }

/* OVERRIDE style.css: container-xl ha padding: 75px sotto 1440px →
   su mobile è troppo, mangia la viewport. */
@media (max-width: 991.98px) {
    .container-xl {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
    }
}
@media (max-width: 575px) {
    .container-xl {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* OVERRIDE style.css: footer .link_wrapper ha max-height: 200px sotto
   1440px → comprime la lista, copyright sovrappone. */
@media (max-width: 1439.98px) {
    footer .link_wrapper { max-height: none !important; }
}

/* Titoli grandi ridotti su mobile per non strappare */
@media (max-width: 575px) {
    .display-4 { font-size: 2rem !important; line-height: 1.15 !important; }
    .display-5 { font-size: 1.65rem !important; line-height: 1.2 !important; }
    .section-title {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        word-break: break-word;
        box-sizing: border-box;
    }
    .section-summary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: .95rem !important;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    p.section-summary[style] { max-width: 100% !important; }
    .pre-title {
        width: max-content;
        max-width: calc(100% - 2rem);
        margin-left: auto;
        margin-right: auto;
    }
}

/* Spazio sotto le sezioni per non far coprire il contenuto dal FAB */
body { padding-bottom: 90px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }
@media (max-width: 767.98px) {
    section[id], section.container-fluid { padding-bottom: 4rem !important; }
    section[id]#cta-prefooter { padding-bottom: 6rem !important; }
}

/* Anchor scroll offset per non far passare titoli sotto header sticky */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 991.98px) { section[id] { scroll-margin-top: 70px; } }

/* Heading "Y además" con wrap pulito (no orfani) */
.values-operational-heading {
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.3;
    text-wrap: balance;
}
@media (max-width: 575px) {
    .values-operational-heading {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER MOBILE — stack verticale + separazione netta dal copyright
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {
    html body footer .container-xl .row .link_wrapper,
    body footer .link_wrapper,
    footer .row .link_wrapper {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 2rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
        position: relative !important;
    }
    html body footer .link_wrapper > div,
    body footer .link_wrapper > div,
    footer .row .link_wrapper > div {
        display: block !important;
        grid-template-rows: none !important;
        width: 100% !important;
        max-height: none !important;
        height: auto !important;
    }
    html body footer .link_wrapper > div span,
    body footer .link_wrapper > div span,
    footer .row .link_wrapper > div span {
        display: block !important;
        margin-bottom: .8rem !important;
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        line-height: 1.4 !important;
        align-self: auto !important;
    }
    html body footer .link_wrapper > div ul,
    body footer .link_wrapper > div ul,
    footer .row .link_wrapper > div ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    html body footer .link_wrapper > div li,
    html body footer .link_wrapper > div a,
    body footer .link_wrapper > div li,
    body footer .link_wrapper > div a,
    footer .row .link_wrapper > div li,
    footer .row .link_wrapper > div a {
        display: block !important;
        padding: 5px 0 !important;
        line-height: 1.5 !important;
        align-self: auto !important;
        position: relative !important;
    }
    html body footer .row.last,
    body footer .row.last,
    footer .container-xl .row.last {
        margin-top: 3rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, .12) !important;
        clear: both !important;
        position: relative !important;
    }
    footer { padding-bottom: 110px !important; }
}

/* ════════════════════════════════════════════════════════════════════
   FAB "Contáctanos" — su mobile pill compatto con scritta visibile
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 575px) {
    #cbCtaFab.cb-cta-fab {
        left: 14px !important; right: auto !important; bottom: 18px !important;
    }
    .cb-cta-fab-toggle {
        padding: 8px 14px !important;
        gap: 6px !important;
        font-size: .82rem !important;
        border-radius: 999px !important;
        box-shadow: 0 6px 18px rgba(0, 51, 153, .35) !important;
    }
    .cb-cta-fab-toggle i { font-size: .95rem !important; margin: 0 !important; }
    .cb-cta-fab-toggle-lbl { display: inline-block !important; font-size: .82rem !important; }
}

/* ════════════════════════════════════════════════════════════════════
   HERO MOBILE — pill numero senza wrap, vertical-line nascoste, padding-top
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 575px) {
    /* Sezione hero: spazio generoso sopra il titolo + sotto i bottoni */
    #header-section {
        padding-top: 5rem !important;
        padding-bottom: 6rem !important;
    }
    /* Banner multicanale "TAMBIÉN DISPONIBLE EN": spazio extra sotto */
    #header-section .hero-multichannel { margin-bottom: 2rem !important; }
    #header-section .hero-cta-block { margin-bottom: 2rem !important; }
    /* Pre-title sempre visibile, centrato, con margine sufficiente */
    #header-section .pre-title {
        display: inline-block !important;
        margin-bottom: 1rem !important;
        position: relative;
        z-index: 2;
    }
    /* Nascondo le animazioni "vertical-line" laterali che comprimono il pill */
    #header-section .vertical-line { display: none !important; }
    /* Pill del numero: prende tutta la larghezza disponibile + nowrap */
    #header-section .gl-callbot-button.hero-phone-button {
        white-space: nowrap !important;
        font-size: 1.4rem !important;
        padding: 14px 22px !important;
        max-width: 100%;
    }
    /* Su schermi molto stretti, riduco ancora un po' */
    @media (max-width: 380px) {
        #header-section .gl-callbot-button.hero-phone-button {
            font-size: 1.2rem !important;
            padding: 12px 18px !important;
        }
    }
    /* Wrapper del bottone: occupa tutta la larghezza per centrare bene */
    #header-section .ms-2.me-2 { margin: 0 !important; width: 100%; }
    #header-section .ms-2.me-2 a { display: inline-flex; align-items: center; gap: 10px; }
}

/* ════════════════════════════════════════════════════════════════════
   STICKY HEADER + SCROLL SPY — assicurati che il menu sia sempre sticky
   ════════════════════════════════════════════════════════════════════ */
.gh {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}
.gh.is-scrolled {
    box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
}
/* Link attivo desktop con highlight blu + underline gradient */
.gh-links a.active {
    color: #003399 !important;
    background: rgba(0, 51, 153, .08) !important;
    font-weight: 700;
}
.gh-links a.active::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 2px;
    height: 2px;
    background: linear-gradient(90deg, #003399, #00ccff);
    border-radius: 2px;
}
/* Nome sezione corrente accanto al logo, visibile solo su mobile */
.gh-current-section {
    display: none;
    flex: 1; min-width: 0;
    margin-left: 12px; padding-left: 12px;
    border-left: 1px solid #e5e7eb;
    font-size: 14px; font-weight: 600;
    color: #003399;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    opacity: 0; transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}
@media (max-width: 991.98px) { .gh-current-section { display: inline-block; } }
.gh-current-section.is-visible { opacity: 1; transform: translateY(0); }

/* Lang dropdown z-index sopra l'header */
.lang-switch ul { z-index: 1100 !important; }


/* ════════════════════════════════════════════════════════════════════
   MEMORIA MULTICANALE — "E non solo per telefono"
   ════════════════════════════════════════════════════════════════════ */
.wm-channels {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(0,51,153,.05), rgba(0,204,255,.05));
    border: 1px solid rgba(0,51,153,.12);
    border-radius: 18px;
}
@media (min-width: 768px) { .wm-channels { padding: 2.5rem 2.5rem; } }
.wm-channels-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003399;
    text-align: center;
    margin-bottom: .8rem;
}
.wm-channels-heading i { margin-right: 6px; }
.wm-channels-text {
    text-align: center;
    color: #374151;
    font-size: .95rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 1.8rem;
}
.wm-channels-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 576px) { .wm-channels-row { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.wm-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color .15s ease, transform .15s ease;
}
.wm-channel:hover { border-color: #003399; transform: translateY(-2px); }
.wm-channel-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 11px;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
}
.wm-channel:nth-child(2) .wm-channel-icon { background: #25D366; }
.wm-channel:nth-child(3) .wm-channel-icon { background: linear-gradient(135deg, #003399 0%, #6366f1 100%); }
.wm-channel-body { display: flex; flex-direction: column; min-width: 0; }
.wm-channel-body strong { font-size: .95rem; font-weight: 700; color: #111827; }
.wm-channel-body span { font-size: .8rem; color: #6b7280; margin-top: 2px; }


/* ════════════════════════════════════════════════════════════════════
   AVATAR / TOTEM TEASER — dentro voice-card
   ════════════════════════════════════════════════════════════════════ */
.avatar-teaser {
    margin-top: 2.2rem;
    padding: 1.6rem 1.6rem;
    background: rgba(255,255,255,.09);
    border: 1px dashed rgba(255,255,255,.32);
    border-radius: 16px;
}
.avatar-teaser-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: .8rem;
}
.avatar-teaser small {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}
.avatar-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
}
@media (min-width: 768px) { .avatar-big { font-size: 3.2rem; } }
.avatar-big i { font-size: 2.4rem; color: #00ccff; }
@media (min-width: 768px) { .avatar-big i { font-size: 3rem; } }
.avatar-teaser-text {
    margin: 0 0 1.2rem;
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    line-height: 1.55;
}
.avatar-teaser-extra {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (min-width: 576px) {
    .avatar-teaser-extra { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
}
.avatar-extra-label {
    color: rgba(255,255,255,.85);
    font-size: .92rem;
}
.avatar-extra-label i { color: #fbbf24; margin-right: 4px; }
.avatar-extra-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #00ccff;
    color: #001a4d;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    white-space: normal;
    text-align: center;
    transition: background .15s ease, transform .15s ease;
}
@media (min-width: 576px) { .avatar-extra-cta { white-space: nowrap; } }
@media (max-width: 575px) {
    .avatar-extra-cta {
        width: 100%;
        box-sizing: border-box;
        font-size: .88rem;
        line-height: 1.3;
    }
}
.avatar-extra-cta:hover {
    background: #fff;
    color: #001a4d;
    transform: translateY(-1px);
    text-decoration: none;
}


/* ════════════════════════════════════════════════════════════════════
   FAB pannello — Calendly highlight + ::before mobile (glacom® callbot)
   ════════════════════════════════════════════════════════════════════ */
.cb-cta-row .cb-cta-row-highlight {
    background: linear-gradient(135deg, #00ccff 0%, #003399 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
}
.cb-cta-row .cb-cta-row-highlight i { color: #fff !important; }
.cb-cta-row .cb-cta-row-highlight span { color: #fff !important; }
.cb-cta-row .cb-cta-row-highlight:hover {
    filter: brightness(1.1);
    text-decoration: none;
}


/* ════════════════════════════════════════════════════════════════════
   COMPARISON — no uppercase, etichetta corretta su mobile
   ════════════════════════════════════════════════════════════════════ */
.cmp-table thead th { text-transform: none !important; letter-spacing: .02em !important; }
@media (max-width: 767.98px) {
    .cmp-table .cmp-us::before {
        content: 'glacom® callbot' !important;
        font-size: .75rem !important;
        text-transform: none !important;
        letter-spacing: .02em !important;
    }
}


/* ════════════════════════════════════════════════════════════════════
   IMPROVEMENTS SECTION — fix titolo sticky + padding mobile
   ════════════════════════════════════════════════════════════════════ */
.improvements-section { padding-top: 4rem !important; padding-bottom: 4rem !important; }
@media (max-width: 767.98px) {
    .improvements-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .improvements-section h2.h1 {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: .5rem;
    }
    .improvements-section h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #003399;
        margin-top: 1.5rem;
    }
    .improvements-section ul { padding-left: 0; list-style: none; }
    .improvements-section ul li {
        font-size: .95rem;
        line-height: 1.55;
        margin-bottom: .8rem;
        padding-left: 1.4rem;
        position: relative;
    }
    .improvements-section ul li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #00ccff;
        font-weight: 700;
    }
    .improvements-section .btn_blue { margin-top: 1.2rem !important; display: inline-block; }
}
/* Titolo sticky desktop con offset header */
@media (min-width: 992px) {
    .improvements-sticky {
        position: sticky;
        top: 100px;
        z-index: 5;
    }
}
@media (max-width: 991.98px) {
    .improvements-sticky { position: static !important; top: auto !important; }
}


/* ════════════════════════════════════════════════════════════════════
   ORIGINALE
   ════════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════════
           HEADER STICKY + DRAWER MOBILE (pattern autoscuole.glacom.ai)
           ════════════════════════════════════════════════════════════════════ */
        
        /* Top bar (solo desktop ≥992px) */
        .gh-topbar { display: none; }
        @media (min-width: 992px) {
            .gh-topbar {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 24px;
                padding: 8px 32px;
                background: #f3f4f6;
                border-bottom: 1px solid #e5e7eb;
                font-size: 0.78rem;
                color: #4b5563;
            }
            .gh-topbar-left { font-weight: 500; color: #374151; }
            .gh-topbar-right { display: flex; align-items: center; gap: 18px; }
            .gh-topbar a {
                color: #4b5563;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                transition: color .15s ease;
            }
            .gh-topbar a:hover { color: #0099ff; }
            .gh-topbar a i { font-size: 0.85rem; opacity: 0.7; }
            .gh-topbar-sep { width: 1px; height: 14px; background: #d1d5db; }
        }

        /* Header sticky */
        .gh {
            position: sticky; top: 0; z-index: 800;
            background: #fff;
            border-bottom: 1px solid #f1f5f9;
            padding: 12px clamp(16px, 3vw, 32px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .gh-logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }
        .gh-logo svg { display: block; }

        .gh-links {
            display: none;
            align-items: center;
            gap: 2px;
            flex: 1;
            justify-content: center;
        }
        @media (min-width: 992px) { .gh-links { display: flex; } }
        .gh-links a {
            font-size: 14px;
            font-weight: 500;
            color: #4b5563;
            padding: 8px 14px;
            border-radius: 8px;
            text-decoration: none;
            transition: color .15s ease, background .15s ease;
        }
        .gh-links a:hover {
            color: #111827;
            background: #f3f4f6;
        }

        .gh-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        /* Lang switch (autoscuole-style) */
        .lang-switch { position: relative; }
        .lang-switch > button {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 12px;
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #374151;
            border-radius: 8px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .02em;
        }
        .lang-switch > button:hover { background: #f9fafb; }
        .lang-switch .caret { font-size: 9px; opacity: .5; }
        .lang-switch ul {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 90px;
            margin: 0;
            padding: 6px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
            list-style: none;
            display: none;
            z-index: 900;
        }
        .lang-switch.open ul { display: block; }
        .lang-switch li { margin: 0; }
        .lang-switch li a {
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            color: #374151;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
        }
        .lang-switch li.current a { background: #f0f9ff; color: #0099ff; }
        .lang-switch li a:hover { background: #f3f4f6; }

        /* Mobile-only quick icon */
        .gh-ico {
            display: none;
            align-items: center;
            justify-content: center;
            width: 38px; height: 38px;
            border-radius: 10px;
            background: #f3f4f6;
            color: #1f2937;
            text-decoration: none;
            font-size: 1rem;
            transition: background .15s ease;
        }
        .gh-ico:hover { background: #e5e7eb; color: #1f2937; }
        @media (max-width: 991.98px) { .gh-ico { display: inline-flex; } }

        /* Hamburger */
        .gh-burger {
            display: none;
            align-items: center;
            justify-content: center;
            width: 38px; height: 38px;
            border-radius: 10px;
            background: transparent;
            border: 0;
            color: #1f2937;
            font-size: 1.3rem;
            cursor: pointer;
            transition: background .15s ease;
        }
        .gh-burger:hover { background: #f3f4f6; }
        @media (max-width: 991.98px) { .gh-burger { display: inline-flex; } }

        /* Mobile drawer */
        .gh-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, .55);
            opacity: 0;
            pointer-events: none;
            z-index: 990;
            transition: opacity .25s ease;
        }
        .gh-overlay.open { opacity: 1; pointer-events: auto; }
        .gh-drawer {
            position: fixed;
            top: 0; right: 0; bottom: 0;
            width: min(320px, 88vw);
            background: #fff;
            z-index: 1000;
            transform: translateX(105%);
            transition: transform .3s ease;
            overflow-y: auto;
            padding: 60px 22px 24px;
            display: flex;
            flex-direction: column;
            box-shadow: -12px 0 32px rgba(15, 23, 42, .12);
        }
        .gh-drawer.open { transform: translateX(0); }
        .gh-drawer-close {
            position: absolute;
            top: 12px; right: 12px;
            background: transparent;
            border: 0;
            width: 36px; height: 36px;
            border-radius: 8px;
            color: #1f2937;
            cursor: pointer;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .gh-drawer-close:hover { background: #f3f4f6; }
        .gh-drawer-nav { display: flex; flex-direction: column; gap: 2px; }
        .gh-drawer-nav a {
            display: block;
            padding: 12px 14px;
            color: #1f2937;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            border-radius: 10px;
            transition: background .15s ease;
        }
        .gh-drawer-nav a:hover { background: #f3f4f6; }
        .gh-drawer-langs {
            display: flex;
            gap: 6px;
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid #f1f5f9;
        }
        .gh-drawer-langs a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            padding: 8px 12px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            color: #374151;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
        }
        .gh-drawer-langs a.current {
            background: #0099ff;
            color: #fff;
            border-color: #0099ff;
        }
        .gh-drawer-contacts {
            margin-top: 14px;
            padding-top: 18px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .gh-drawer-contacts a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: #f8fafc;
            border-radius: 10px;
            color: #1f2937;
            text-decoration: none;
            font-size: .9rem;
            transition: background .15s ease;
        }
        .gh-drawer-contacts a:hover { background: #f3f4f6; }
        .gh-drawer-contacts a i { color: #0099ff; font-size: 1rem; }

        /* ════════════════════════════════════════════════════════════════════
           Stili pagina (esistenti)
           ════════════════════════════════════════════════════════════════════ */
        .mobile-phone-link {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            color: inherit;
            text-decoration: none;
            font-weight: 600;
            font-size: .9rem;
            white-space: nowrap;
            margin-right: .75rem;
        }
        .mobile-phone-link:hover,
        .mobile-phone-link:focus { color: inherit; opacity: .85; }

        /* Hero CTA */
        a.hero-phone-button { text-decoration: none; }
        a.hero-phone-button:hover,
        a.hero-phone-button:focus { text-decoration: none; }
        @media (min-width: 992px) {
            a.hero-phone-button { cursor: pointer; }
        }

        /* Frase "Prova il bot Susanna a questo numero" sopra il numero (tutti dispositivi) */
        .hero-phone-intro {
            color: rgba(255, 255, 255, .92);
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 1rem;
            text-align: center;
            line-height: 1.4;
        }
        @media (min-width: 768px) {
            .hero-phone-intro {
                font-size: 1.1rem;
            }
        }

        /* ─── Multichannel banner sotto phone CTA (mobile + desktop) ─── */
        .hero-multichannel {
            text-align: center;
        }
        .hero-multichannel-label {
            font-size: .8rem;
            color: rgba(255, 255, 255, .7);
            text-transform: uppercase;
            letter-spacing: .1em;
            font-weight: 600;
            margin-bottom: .65rem;
        }
        .hero-multichannel-links {
            display: inline-flex;
            gap: .5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .hero-multichannel-link {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .5rem 1rem;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .18);
            color: #fff;
            border-radius: 999px;
            text-decoration: none;
            font-size: .9rem;
            font-weight: 500;
            transition: background .15s ease, transform .15s ease;
        }
        .hero-multichannel-link:hover,
        .hero-multichannel-link:focus {
            background: rgba(255, 255, 255, .22);
            color: #fff;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .hero-multichannel-link i { font-size: 1rem; opacity: .95; }

        /* ─── Workflow card (sotto le 4 USP cards) ─── */
        .workflow-feature {
            background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
            border-radius: 20px;
            color: #fff;
            box-shadow: 0 18px 48px rgba(0, 51, 153, .18);
        }
        .workflow-feature h5 {
            color: #fff;
            font-weight: 600;
            margin: 0;
        }
        .workflow-feature p {
            color: rgba(255, 255, 255, .92);
            margin: 0;
            line-height: 1.6;
        }
        .workflow-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .14);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ─── Related services (grid cards) ─── */
        .related-services-grid { margin-top: 0; }
        .related-service-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 1.75rem 1.5rem;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            text-decoration: none !important;
            color: inherit !important;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .related-service-card:hover,
        .related-service-card:focus {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(0, 51, 153, .10);
            border-color: #0099ff;
            color: inherit !important;
        }
        .related-service-card h5 {
            font-weight: 600;
            color: #111827;
        }
        .related-service-card p {
            color: #6b7280;
            font-size: .95rem;
            line-height: 1.55;
            flex-grow: 1;
        }
        .related-service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .related-service-link {
            color: #0099ff;
            font-weight: 600;
            font-size: .9rem;
            display: inline-flex;
            align-items: center;
            gap: .4rem;
        }
        .related-service-card:hover .related-service-link svg {
            transform: translateX(3px);
        }
        .related-service-link svg { transition: transform .2s ease; }

        /* ─── Floating CTA (sinistra, appare allo scroll) ─── */
        /* !important per evitare che style.css o il widget di susanna lo sovrascrivano */
        #cbCtaFab.cb-cta-fab {
            position: fixed !important;
            left: 24px !important;
            right: auto !important;
            bottom: 25px !important;
            top: auto !important;
            z-index: 9999 !important;
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity .25s ease, transform .25s ease;
        }
        #cbCtaFab.cb-cta-fab.visible {
            opacity: 1 !important;
            pointer-events: auto !important;
            transform: translateY(0) !important;
        }
        .cb-cta-fab-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
            color: #fff;
            border: none;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: 0 10px 28px rgba(0, 51, 153, .35);
            transition: transform .15s ease;
        }
        .cb-cta-fab-toggle:hover { transform: translateY(-2px); }
        .cb-cta-fab-toggle i { font-size: 1.1rem; }
        .cb-cta-fab-panel {
            position: absolute;
            left: 0;
            bottom: calc(100% + 14px);
            width: 320px;
            max-width: calc(100vw - 48px);
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 24px 56px rgba(15, 23, 42, .22);
            padding: 22px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity .2s ease, transform .2s ease;
        }
        .cb-cta-fab.open .cb-cta-fab-panel {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .cb-cta-fab-panel h4 {
            margin: 0 0 6px;
            font-size: 1.05rem;
            color: #111827;
            font-weight: 700;
        }
        .cb-cta-fab-panel p {
            margin: 0 0 14px;
            font-size: 0.88rem;
            color: #6b7280;
            line-height: 1.5;
        }
        .cb-cta-fab-close {
            position: absolute;
            top: 10px;
            right: 12px;
            background: transparent;
            border: 0;
            font-size: 22px;
            color: #9ca3af;
            cursor: pointer;
            line-height: 1;
            padding: 4px;
        }
        .cb-cta-fab-close:hover { color: #111827; }
        .cb-cta-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .cb-cta-row a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: #f3f4f6;
            border-radius: 10px;
            color: #1f2937;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background .15s ease;
        }
        .cb-cta-row a:hover { background: #e5e7eb; color: #1f2937; }
        .cb-cta-row a i {
            color: #0099ff;
            font-size: 1rem;
            width: 18px;
            text-align: center;
        }
        @media (max-width: 575px) {
            #cbCtaFab.cb-cta-fab { left: 16px !important; right: auto !important; bottom: 25px !important; }
            /* su mobile manteniamo il testo "Contáctanos" visibile */
            .cb-cta-fab-toggle { padding: 11px 18px; }
            .cb-cta-fab-toggle-lbl { font-size: .9rem; }
        }

        /* ─── Modal "Chiama dal tuo cellulare" con QR (desktop) ─── */
        .cb-call-modal {
            position: fixed;
            inset: 0;
            z-index: 1100;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .cb-call-modal.is-open { display: flex; }
        .cb-call-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, .65);
            backdrop-filter: blur(2px);
        }
        .cb-call-modal-dialog {
            position: relative;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 24px 56px rgba(15, 23, 42, .35);
            max-width: 360px;
            width: 100%;
            padding: 22px 20px 18px;
            text-align: center;
            color: #111827;
            animation: cbModalIn .22s ease;
        }
        @keyframes cbModalIn {
            from { opacity: 0; transform: translateY(8px) scale(.98); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }
        .cb-call-modal-close {
            position: absolute;
            top: 8px;
            right: 12px;
            background: transparent;
            border: 0;
            font-size: 24px;
            color: #9ca3af;
            line-height: 1;
            cursor: pointer;
            padding: 4px 8px;
        }
        .cb-call-modal-close:hover { color: #111827; }
        .cb-call-modal-title {
            margin: 0 0 14px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #111827;
            line-height: 1.3;
        }
        .cb-call-modal-qr {
            display: inline-block;
            padding: 8px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }
        .cb-call-modal-qr img {
            display: block;
            width: 160px;
            height: 160px;
        }
        .cb-call-modal-number {
            margin-top: 10px;
            font-size: 1.05rem;
            font-weight: 700;
        }
        .cb-call-modal-number a {
            color: #003399;
            text-decoration: none;
        }
        .cb-call-modal-number a:hover { color: #0099ff; }
        .cb-call-modal-hint {
            margin: 2px 0 0;
            font-size: .8rem;
            color: #6b7280;
        }
        .cb-call-modal-divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 16px 0 12px;
            color: #9ca3af;
            font-size: .72rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            font-weight: 600;
        }
        .cb-call-modal-divider::before,
        .cb-call-modal-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e5e7eb;
        }
        .cb-call-modal-channels {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }
        .cb-channel-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            transition: border-color .15s ease, background .15s ease;
        }
        .cb-channel-row:hover {
            border-color: #0099ff;
            background: #fff;
        }
        .cb-channel-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
            font-size: .9rem;
        }
        .cb-channel-icon-wa   { background: #25D366; }
        .cb-channel-icon-mail { background: linear-gradient(135deg, #003399 0%, #00ccff 100%); }
        .cb-channel-body {
            flex: 1;
            min-width: 0;
        }
        .cb-channel-body small {
            display: block;
            font-size: .68rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: .05em;
            margin-top: 1px;
        }
        .cb-channel-link {
            display: block;
            font-weight: 600;
            color: #111827;
            text-decoration: none;
            font-size: .88rem;
            word-break: break-all;
        }
        .cb-channel-link:hover { color: #0099ff; }
        .cb-channel-qr {
            flex-shrink: 0;
            padding: 3px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
        }
        .cb-channel-qr img {
            display: block;
            width: 52px;
            height: 52px;
        }
        @media (max-width: 575px) {
            .cb-call-modal-dialog { padding: 20px 16px 16px; }
            .cb-call-modal-qr img { width: 140px; height: 140px; }
            .cb-channel-qr { display: none; }
        }

        /* ═════════ PREFOOTER CTA — Contatti per esteso (griglia 4 colonne) ═════════ */
        .cta-contacts-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            width: 100%;
            max-width: 1100px;
        }
        @media (min-width: 576px) { .cta-contacts-grid { grid-template-columns: 1fr 1fr; } }
        @media (min-width: 992px) { .cta-contacts-grid { grid-template-columns: repeat(4, 1fr); } }
        .cta-contact-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 14px;
            color: #fff;
            text-decoration: none;
            transition: background .2s ease, transform .15s ease, border-color .2s ease;
            text-align: left;
        }
        .cta-contact-card:hover {
            background: rgba(255,255,255,.16);
            border-color: rgba(255,255,255,.4);
            color: #fff;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .cta-contact-card.calendly {
            background: linear-gradient(135deg, #00ccff 0%, #003399 100%);
            border-color: transparent;
        }
        .cta-contact-card.calendly:hover { filter: brightness(1.1); }
        .cta-contact-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.12);
            border-radius: 12px;
            font-size: 1.2rem;
        }
        .cta-contact-icon.wa { background: #25D366; }
        .cta-contact-body { display: flex; flex-direction: column; min-width: 0; }
        .cta-contact-body small {
            font-size: .72rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            opacity: .75;
            margin-bottom: 2px;
        }
        .cta-contact-body strong {
            font-size: .98rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ═════════ WORKFLOW & MEMORIA ═════════ */
        .wm-section {
            padding: 5rem 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(0,204,255,.06), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(0,51,153,.08), transparent 45%),
                #fff;
        }
        .wm-subheading {
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: #111827;
            margin: 3rem 0 2rem;
        }
        .wm-subheading-2 { margin-top: 5rem; }
        .wm-caption {
            text-align: center;
            color: #6b7280;
            margin-bottom: 2.5rem;
            font-size: .95rem;
        }

        /* ─── HUB: callbot al centro + 5 nodi attorno ─── */
        .wm-hub {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        .wm-hub-center {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
            color: #fff;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 16px 40px rgba(0,51,153,.35);
        }
        .wm-hub-center strong { font-size: 1rem; margin-top: 6px; }
        .wm-hub-icon { font-size: 2.4rem; line-height: 1; }
        @media (min-width: 1200px) {
            .wm-hub-center { display: flex; }
        }
        .wm-hub-nodes {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        @media (min-width: 576px) { .wm-hub-nodes { grid-template-columns: 1fr 1fr; } }
        @media (min-width: 1200px) {
            .wm-hub-nodes {
                grid-template-columns: 1fr 1fr;
                gap: 22px 280px;
            }
        }
        .wm-node {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 14px 16px;
            box-shadow: 0 4px 14px rgba(15,23,42,.05);
            transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .wm-node:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(0,51,153,.12);
            border-color: #00ccff;
        }
        .wm-node-icon {
            flex-shrink: 0;
            width: 44px; height: 44px;
            display: inline-flex; align-items: center; justify-content: center;
            background: rgba(0,51,153,.08);
            color: #003399;
            border-radius: 11px;
            font-size: 1.2rem;
        }
        .wm-node-body { display: flex; flex-direction: column; min-width: 0; }
        .wm-node-body strong { font-size: .95rem; color: #111827; font-weight: 700; line-height: 1.2; }
        .wm-node-body span { font-size: .82rem; color: #6b7280; margin-top: 3px; }

        /* ─── TIMELINE memoria (2 chiamate + bridge) ─── */
        .wm-timeline {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        @media (min-width: 992px) {
            .wm-timeline {
                grid-template-columns: 1fr auto 1fr;
                gap: 20px;
                align-items: stretch;
            }
        }
        .wm-call {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            padding: 1.5rem;
            box-shadow: 0 6px 18px rgba(15,23,42,.06);
            display: flex; flex-direction: column; gap: 12px;
        }
        .wm-call-head {
            display: flex; align-items: center; gap: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #e5e7eb;
        }
        .wm-call-step {
            display: inline-flex; align-items: center; justify-content: center;
            width: 28px; height: 28px;
            color: #003399;
            font-size: 1.6rem;
        }
        .wm-call-head strong { font-size: .92rem; color: #111827; font-weight: 700; }
        .wm-bubble {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 12px 14px;
            border-radius: 14px;
            font-size: .92rem;
            line-height: 1.45;
        }
        .wm-bubble i {
            flex-shrink: 0;
            width: 28px; height: 28px;
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 50%;
            font-size: .85rem;
        }
        .wm-bubble.user {
            background: #f3f4f6;
            color: #374151;
            margin-right: 10%;
        }
        .wm-bubble.user i { background: #6b7280; color: #fff; }
        .wm-bubble.bot {
            background: rgba(0, 51, 153, .08);
            color: #111827;
            margin-left: 10%;
            font-weight: 500;
        }
        .wm-bubble.bot i { background: #003399; color: #fff; }
        .wm-bubble.bot.highlight {
            background: linear-gradient(135deg, rgba(0,204,255,.18), rgba(0,51,153,.18));
            border: 1px solid rgba(0,51,153,.25);
        }

        /* Bridge "Memoria" tra le due chiamate */
        .wm-bridge {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 0;
        }
        @media (min-width: 992px) {
            .wm-bridge { flex-direction: column; min-width: 200px; }
        }
        .wm-bridge-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, #003399, #00ccff, #003399, transparent);
            min-width: 30px;
        }
        @media (min-width: 992px) {
            .wm-bridge-line {
                width: 2px;
                height: auto;
                min-height: 40px;
                background: linear-gradient(180deg, transparent, #003399, #00ccff, #003399, transparent);
            }
        }
        .wm-bridge-tag {
            background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
            color: #fff;
            padding: 14px 18px;
            border-radius: 16px;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 8px 24px rgba(0,51,153,.25);
            display: flex; flex-direction: column; align-items: center; gap: 4px;
        }
        .wm-bridge-tag i { font-size: 1.5rem; margin-bottom: 2px; }
        .wm-bridge-tag strong { font-size: 1rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
        .wm-bridge-tag small {
            font-size: .72rem;
            color: rgba(255,255,255,.85);
            line-height: 1.45;
            margin-top: 4px;
        }

        .wm-footer {
            text-align: center;
            margin: 2.5rem auto 0;
            font-size: 1.02rem;
            color: #374151;
            max-width: 760px;
            padding: 1rem 1.5rem;
            background: rgba(0, 51, 153, .04);
            border-radius: 12px;
        }
        .wm-footer i { color: #00ccff; margin-right: 6px; }

        /* ═════════ OUTBOUND/INBOUND SECTION ═════════ */
        .inout-section { padding: 5rem 0; background: #f8fafc; }
        .inout-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 2.5rem;
        }
        @media (min-width: 992px) { .inout-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
        .inout-card {
            background: #fff;
            border-radius: 18px;
            padding: 2.2rem 2rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 12px rgba(15,23,42,.04);
            position: relative;
            overflow: hidden;
        }
        .inout-card::before {
            content: '';
            position: absolute;
            inset: 0 0 auto 0;
            height: 4px;
            background: linear-gradient(90deg, #003399, #00ccff);
        }
        .inout-card.outbound::before { background: linear-gradient(90deg, #ea580c, #f59e0b); }
        .inout-label {
            display: inline-block;
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .12em;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(0, 51, 153, .1);
            color: #003399;
            margin-bottom: 1rem;
        }
        .inout-card.outbound .inout-label { background: rgba(234, 88, 12, .12); color: #ea580c; }
        .inout-card h3 { font-size: 1.35rem; font-weight: 700; color: #111827; margin-bottom: 1.2rem; }
        .inout-card ul { list-style: none; padding: 0; margin: 0; }
        .inout-card ul li {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 8px 0;
            color: #4b5563;
            font-size: .95rem;
        }
        .inout-card ul li::before {
            content: '✓';
            color: #003399;
            font-weight: 700;
            flex-shrink: 0;
        }
        .inout-card.outbound ul li::before { color: #ea580c; }

        /* ═════════ VALUES SECTION (5 pilastri) ═════════ */
        .values-section { padding: 5rem 0; background: #fff; }
        .pillars-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
            margin-top: 2.5rem;
        }
        @media (min-width: 768px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
        @media (min-width: 1200px) { .pillars-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
        .pillar-card {
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 1.6rem 1.3rem;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }
        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 51, 153, .12);
            border-color: #00ccff;
        }
        .pillar-icon {
            width: 52px; height: 52px;
            display: inline-flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, #003399 0%, #00ccff 100%);
            color: #fff;
            border-radius: 12px;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        .pillar-card h4 { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: .6rem; line-height: 1.3; }
        .pillar-card p { font-size: .88rem; color: #6b7280; line-height: 1.5; margin: 0; }

        .blog-cta {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 1.5rem;
            color: #003399; font-weight: 600;
            text-decoration: none; font-size: .95rem;
        }
        .blog-cta:hover { color: #0099ff; text-decoration: none; }

        .partners-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            margin-top: 2rem;
        }
        @media (min-width: 768px) { .partners-row { grid-template-columns: repeat(3, 1fr); } }
        .partner-card {
            display: flex; flex-direction: column;
            padding: 1.2rem 1.3rem;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            text-decoration: none;
            color: inherit;
            transition: border-color .2s ease, transform .15s ease;
        }
        .partner-card:hover { border-color: #003399; transform: translateY(-2px); color: inherit; text-decoration: none; }
        .partner-card strong { color: #111827; font-size: 1rem; font-weight: 700; }
        .partner-card span { color: #6b7280; font-size: .82rem; margin-top: 4px; }

        .operational-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: 2rem;
        }
        @media (min-width: 768px) { .operational-row { grid-template-columns: 1fr 1fr; } }
        .operational-card {
            display: flex; gap: 14px;
            padding: 1.2rem 1.4rem;
            background: linear-gradient(135deg, rgba(0,51,153,.04), rgba(0,204,255,.04));
            border: 1px solid #e5e7eb;
            border-radius: 14px;
        }
        .operational-card .op-icon {
            flex-shrink: 0;
            width: 42px; height: 42px;
            display: inline-flex; align-items: center; justify-content: center;
            background: #003399; color: #fff;
            border-radius: 10px;
            font-size: 1.1rem;
        }
        .operational-card h5 { font-size: .98rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
        .operational-card p { font-size: .85rem; color: #6b7280; margin: 0; }

        /* ═════════ VOICE CLONING ═════════ */
        .voice-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #003399 0%, #001a4d 100%);
            color: #fff;
        }
        .voice-section .pre-title { color: rgba(255,255,255,.7); }
        .voice-card {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.16);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            backdrop-filter: blur(8px);
        }
        @media (min-width: 768px) { .voice-card { padding: 3rem 3rem; } }
        .voice-card h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1.2rem; line-height: 1.25; }
        @media (min-width: 768px) { .voice-card h2 { font-size: 2.4rem; } }
        .voice-card > p { font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,.92); margin-bottom: 1.5rem; }
        .voice-bullets {
            list-style: none; padding: 0; margin: 0;
            display: grid; grid-template-columns: 1fr; gap: 10px;
        }
        @media (min-width: 768px) { .voice-bullets { grid-template-columns: 1fr 1fr; } }
        .voice-bullets li {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 8px 12px;
            background: rgba(255,255,255,.06);
            border-radius: 10px;
            font-size: .93rem;
        }
        .voice-bullets li i { color: #00ccff; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

        /* ═════════ COMPARISON TABLE ═════════ */
        .cmp-section { padding: 5rem 0; background: #f8fafc; }
        .cmp-table-wrapper {
            margin-top: 2.5rem;
            background: #fff;
            border-radius: 18px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 8px 24px rgba(15,23,42,.06);
            overflow: hidden;
        }
        .cmp-table {
            width: 100%;
            border-collapse: collapse;
        }
        .cmp-table thead th {
            background: #f9fafb;
            padding: 18px 16px;
            text-align: left;
            font-size: .82rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            font-weight: 700;
            color: #6b7280;
            border-bottom: 2px solid #e5e7eb;
            vertical-align: middle;
        }
        .cmp-table thead .cmp-us {
            background: linear-gradient(135deg, rgba(0,51,153,.06), rgba(0,204,255,.06));
            color: #003399;
            font-weight: 800;
        }
        .cmp-table thead .cmp-us strong { color: #003399; }
        .cmp-th-icon {
            display: inline-flex; align-items: center; justify-content: center;
            width: 26px; height: 26px;
            background: #003399;
            color: #fff;
            border-radius: 50%;
            font-size: .9rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .cmp-table tbody td {
            padding: 16px;
            border-bottom: 1px solid #f3f4f6;
            vertical-align: top;
            font-size: .92rem;
            line-height: 1.5;
        }
        .cmp-table tbody tr:last-child td { border-bottom: none; }
        .cmp-table tbody tr:hover td { background: rgba(0,204,255,.03); }
        .cmp-table .cmp-feature {
            font-weight: 600;
            color: #111827;
            width: 24%;
            min-width: 180px;
        }
        .cmp-table .cmp-us, .cmp-table .cmp-them {
            width: 38%;
            position: relative;
        }
        .cmp-table tbody .cmp-us { background: rgba(0,51,153,.03); }
        .cmp-mark {
            display: inline-flex; align-items: center; justify-content: center;
            width: 24px; height: 24px;
            border-radius: 50%;
            font-size: .85rem;
            margin-right: 8px;
            vertical-align: top;
            flex-shrink: 0;
        }
        .cmp-mark-ok   { background: #d1fae5; color: #047857; }
        .cmp-mark-no   { background: #fee2e2; color: #b91c1c; }
        .cmp-mark-warn { background: #fef3c7; color: #b45309; }
        .cmp-text {
            display: inline; color: #374151;
        }
        .cmp-table tbody .cmp-us .cmp-text { color: #111827; font-weight: 500; }

        .cmp-footer-note {
            margin-top: 1.5rem;
            text-align: center;
            font-size: .82rem;
            color: #6b7280;
            font-style: italic;
        }
        .cmp-footer-note i { color: #0099ff; margin-right: 4px; }

        /* MOBILE: tabella → stack di card */
        @media (max-width: 767.98px) {
            .cmp-table-wrapper { background: transparent; border: none; box-shadow: none; }
            .cmp-table, .cmp-table thead, .cmp-table tbody, .cmp-table tr, .cmp-table th, .cmp-table td {
                display: block;
                width: 100% !important;
            }
            .cmp-table thead { display: none; }
            .cmp-table tbody tr {
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 14px;
                padding: 1rem 1.2rem;
                margin-bottom: 12px;
                box-shadow: 0 4px 10px rgba(15,23,42,.04);
            }
            .cmp-table tbody td { padding: 8px 0; border: none; }
            .cmp-table .cmp-feature {
                font-size: .8rem;
                text-transform: uppercase;
                letter-spacing: .06em;
                color: #6b7280;
                font-weight: 700;
                padding-bottom: 4px;
                border-bottom: 1px solid #f3f4f6 !important;
                margin-bottom: 8px;
            }
            .cmp-table .cmp-us::before {
                content: 'Glacom Callbot';
                display: block;
                font-size: .7rem;
                color: #003399;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .08em;
                margin-bottom: 4px;
            }
            .cmp-table .cmp-them::before {
                content: 'Otros';
                display: block;
                font-size: .7rem;
                color: #6b7280;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .08em;
                margin-bottom: 4px;
                margin-top: 10px;
            }
            .cmp-table tbody .cmp-us { background: transparent; }
        }

        /* ═════════ FAQ ═════════ */
        .faq-section { padding: 5rem 0; background: #f8fafc; }
        .faq-list {
            max-width: 820px;
            margin: 2.5rem auto 0;
            display: flex; flex-direction: column; gap: 12px;
        }
        .faq-item {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            overflow: hidden;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .faq-item.open {
            border-color: #00ccff;
            box-shadow: 0 6px 18px rgba(0,51,153,.08);
        }
        .faq-q {
            width: 100%;
            display: flex; justify-content: space-between; align-items: center; gap: 14px;
            padding: 1.1rem 1.4rem;
            background: transparent; border: 0;
            font-weight: 600;
            font-size: 1rem;
            color: #111827;
            text-align: left;
            cursor: pointer;
        }
        .faq-q::after {
            content: '+';
            display: inline-flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            width: 28px; height: 28px;
            background: rgba(0,51,153,.08);
            color: #003399;
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: 700;
            transition: transform .25s ease, background .2s ease;
        }
        .faq-item.open .faq-q::after { transform: rotate(45deg); background: #003399; color: #fff; }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }
        .faq-a-inner {
            padding: 0 1.4rem 1.2rem;
            color: #4b5563;
            line-height: 1.6;
            font-size: .95rem;
        }