 /* ===============================================
     * CLICCA E COMPARA - SURI AI DESIGN SYSTEM
     * =============================================== */

    :root {
        --suri-primary: #1a73e8;        
        --suri-primary-dark: #0d47a1;  
        --suri-text-main: #343a40;  
        --suri-text-sec: #6c757d;   
        --suri-bg: #ffffff;
        --suri-bg-hover: #f4f7fc;   
        --suri-border: rgba(26, 115, 232, 0.15);
        
        --shadow-suri: 0 10px 30px rgba(26, 115, 232, 0.1);
        --shadow-suri-hover: 0 15px 35px rgba(26, 115, 232, 0.15);
        --radius-suri: 16px;
        
        --nav-height: 75px; 
        --font-body: 'Lato', sans-serif;
        --font-heading: 'Poppins', sans-serif;
    }

    body.menu-reset { margin: 0; padding: 0; font-family: var(--font-body); color: var(--suri-text-sec); }
    .menu-reset * { box-sizing: border-box; }
    .menu-reset ul { list-style: none; padding: 0; margin: 0; }
    .menu-reset a { text-decoration: none; color: inherit; }

    /* --- Navbar Principale --- */
    .cc-navbar {
        width: 100%; height: var(--nav-height); background: var(--suri-bg);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: relative; z-index: 9999;
        font-family: var(--font-body); transition: height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
        border-bottom: 1px solid var(--suri-border);
    }

    .cc-navbar.fixed-shrink {
        position: fixed; top: 0; left: 0; width: 100%; --nav-height: 65px;
        box-shadow: var(--shadow-suri); animation: slideDown 0.3s ease forwards; border-bottom: none;
    }
    @keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

    .cc-container { max-width: 1500px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; position: static;}

    /* --- SINISTRA: ICONE --- */
    .cc-icons-strip { display: flex; align-items: center; gap: 20px; padding-right: 25px; border-right: 1px solid rgba(26,115,232,0.1); }
    .cc-navbar.fixed-shrink .cc-icons-strip { gap: 12px; }

    .cc-top-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #fff; transition: 0.3s; opacity: 0.9; }
    .cc-top-icon:hover { transform: scale(1.15) translateY(-3px); opacity: 1; }
    .cc-navbar.fixed-shrink .cc-top-icon { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 8px; }

    /* --- DESTRA: MENU TESTUALE --- */
    .cc-menu { display: flex; align-items: center; height: 100%; gap: 10px; }
    .cc-item { height: 100%; display: flex; align-items: center; }

    .cc-link { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--suri-text-main); padding: 10px 20px; display: flex; align-items: center; border-radius: 12px; transition: 0.3s; white-space: nowrap; }
    .cc-navbar.fixed-shrink .cc-link { font-size: 14px; padding: 8px 16px;}
    .cc-link i.fa-chevron-down { font-size: 11px; margin-left: 8px; color: var(--suri-primary); opacity: 0.8; transition: 0.3s; }

    .cc-item:hover .cc-link { background-color: var(--suri-bg-hover); color: var(--suri-primary); }
    .cc-item:hover .cc-link i.fa-chevron-down { transform: rotate(180deg); color: var(--suri-primary); }

    /* =======================================================
       SUPER MEGA MENU
       ======================================================= */
    .cc-mega-dropdown {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-top: 2px solid var(--suri-primary);
        opacity: 0; visibility: hidden; transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: default;
    }
    .cc-item:hover .cc-mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

    .cc-super-grid {
        max-width: 1500px; margin: 0 auto; padding: 40px 24px 30px 24px;
        display: grid; grid-template-columns: 1fr 1fr 1.2fr 1.2fr; gap: 30px;
    }
    
    .cc-super-grid.mobile-tv-grid { grid-template-columns: 1fr 1fr 1.5fr; gap: 40px; }

    .cc-col-title { font-family: var(--font-heading); font-size: 15px; color: var(--suri-text-main); font-weight: 800; margin-bottom: 20px; display: block; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;}

    .cc-links-list.single-column { display: flex; flex-direction: column; gap: 10px; }

    .scrollable-list { max-height: 380px; overflow-y: auto; padding-right: 10px; }
    .scrollable-list::-webkit-scrollbar { width: 5px; }
    .scrollable-list::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
    .scrollable-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

    /* --- SURI AI PREMIUM CARDS --- */
    .cc-mega-link { background: transparent; border: 1px solid transparent; border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; text-decoration: none !important; transition: 0.3s; gap: 15px; position: relative;}
    .cc-mega-link:hover { background: #f8fafc; border-color: #e2e8f0; transform: translateX(5px); }

    .cc-mega-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
    .icon-energy { background: linear-gradient(135deg, #fde047, #f59e0b); color: #fff; }
    .icon-gas { background: linear-gradient(135deg, #fdba74, #ea580c); color: #fff; }
    .icon-fiber { background: linear-gradient(135deg, #7dd3fc, #0284c7); color: #fff; }
    .icon-mobile { background: linear-gradient(135deg, #6ee7b7, #059669); color: #fff; }
    .icon-shield { background: linear-gradient(135deg, #c4b5fd, #4f46e5); color: #fff; }
    .icon-voltura { background: linear-gradient(135deg, #fca5a5, #e11d48); color: #fff; }
    .icon-info { background: linear-gradient(135deg, #e2e8f0, #94a3b8); color: #fff; }
    .icon-paytv { background: linear-gradient(135deg, #ff4b2b, #ff416c); color: #fff; }

    .cc-mega-content { flex: 1; display: flex; flex-direction: column; }
    .cc-mega-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: #1e293b; line-height: 1.2; transition: 0.3s;}
    .cc-mega-link:hover .cc-mega-title { color: var(--suri-primary); }
    .cc-mega-desc { font-size: 0.8rem; color: var(--suri-text-sec); margin-top: 3px; line-height: 1.3; }
    .suri-hot-badge-menu { background: #ef4444; color: white; font-size: 0.6rem; font-weight: 800; padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle; position: absolute; top: -5px; right: -5px; box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);}

    /* =========================================================
       BOX OFFERTE DINAMICHE NEL MENU
       ========================================================= */
    .menu-dynamic-offer {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    .menu-dynamic-offer:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(26, 115, 232, 0.12);
        border-color: #bfdbfe;
    }
    .menu-dynamic-offer::before {
        content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
        background: linear-gradient(90deg, #3b82f6, #06b6d4);
    }
    .menu-dynamic-offer.fiber-theme::before { background: linear-gradient(90deg, #10b981, #059669); }
    
    .mdo-logo { height: 40px; object-fit: contain; margin-bottom: 15px; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.05)); }
    .mdo-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; line-height: 1.2; }
    .mdo-desc { font-size: 0.8rem; color: #64748b; line-height: 1.4; margin-bottom: 15px; }
    
    .mdo-price-box { background: #f8fafc; border-radius: 10px; padding: 10px 15px; margin-bottom: 15px; text-align: center; border: 1px dashed #cbd5e1;}
    .mdo-price-val { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: #1e293b; line-height: 1; }
    .mdo-price-lbl { font-size: 0.75rem; color: #10b981; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 4px;}
    
    .btn-mdo {
        background: linear-gradient(135deg, var(--suri-primary), var(--suri-primary-dark));
        color: #ffffff !important; padding: 12px; border-radius: 10px; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
        text-align: center; text-decoration: none !important; display: block; transition: 0.3s; border: none; cursor: pointer;
    }
    .btn-mdo:hover { transform: translateY(-2px); box-shadow: 0 8px 15px rgba(26, 115, 232, 0.3); color: #ffffff !important; opacity: 0.95;}

    /* =========================================================
       CSS AVANZATO STILE "APP" PER LA SEZIONE PARTNER
       ========================================================= */
    .cc-provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cc-provider-card { background: #ffffff; border: 1px solid #edf2f7; border-radius: 14px; padding: 12px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; text-decoration: none !important; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
    .cc-provider-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 20px rgba(26, 115, 232, 0.12); border-color: rgba(26, 115, 232, 0.4); z-index: 2; }
    .cc-provider-card img { width: auto; height: 35px; max-width: 85%; object-fit: contain; margin-bottom: 8px; transition: 0.3s; }
    .cc-provider-card:hover img { transform: scale(1.1); }
    .cc-provider-name { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; transition: 0.3s;}
    .cc-provider-card:hover .cc-provider-name { color: var(--suri-primary); }

    .cc-provider-grid.tv-grid .cc-provider-card:hover { box-shadow: 0 10px 20px rgba(225, 29, 72, 0.12); border-color: rgba(225, 29, 72, 0.3); }
    .cc-provider-grid.tv-grid .cc-provider-card:hover .cc-provider-name { color: #e11d48; }

    .cc-menu-slider { position: relative; width: 100%; height: 260px; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
    .cc-menu-slide-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; display: flex; flex-direction: column; justify-content: flex-end; }
    .cc-menu-slide-item.active { opacity: 1; z-index: 2; }
    .cc-menu-slide-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; }
    .cc-menu-slide-caption { position: relative; z-index: 3; background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%); color: #ffffff; padding: 40px 20px 20px 20px; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; line-height: 1.4; text-align: center; }
    .cc-menu-slide-caption i { color: #38bdf8; font-size: 1.1rem; margin-right: 8px; }

    .cc-mega-footer-banner { background: #f8fafc; border-top: 1px solid #e2e8f0; padding: 20px; text-align: center; width: 100%; }
    .cc-mega-footer-banner a { display: inline-block; width: 100%; max-width: 1450px; background: #fff; border: 1px solid #cbd5e1; border-radius: 12px; padding: 15px; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: #1e293b; text-decoration: none; transition: 0.3s; }
    .cc-mega-footer-banner a:hover { border-color: var(--suri-primary); color: var(--suri-primary); box-shadow: 0 4px 15px rgba(26, 115, 232, 0.1); }

    .cc-image-promo { display: block; text-decoration: none !important; border-radius: 16px; overflow: hidden; background: #fff; transition: 0.3s; }
    .cc-image-promo:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
    .cc-image-promo img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; transition: 0.5s; }
    .cc-image-promo:hover img { filter: brightness(0.9); }
    .cc-image-promo-text { padding: 15px 5px; }
    .cc-image-promo-text h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 8px 0; line-height: 1.3;}
    .cc-image-promo-text span { font-size: 0.9rem; font-weight: 700; color: #e11d48; text-transform: uppercase; letter-spacing: 0.5px; }

    /* =========================================================
       NUOVO STILE NEWS PROFESSIONALE
       ========================================================= */
    .news-professional-list { display: flex; flex-direction: column; gap: 8px; }
    .news-pro-item { display: flex; align-items: center; gap: 15px; padding: 10px; border-radius: 12px; transition: 0.3s; background: transparent; text-decoration: none !important; border: 1px solid transparent;}
    .news-pro-item:hover { background: #f8fafc; border-color: #e2e8f0; transform: translateX(5px); }
    .news-pro-img { width: 75px; height: 55px; border-radius: 8px; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .news-pro-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
    .news-pro-item:hover .news-pro-img img { transform: scale(1.1); }
    .news-pro-text { flex: 1; }
    .news-pro-text h4 { margin: 0 0 4px 0; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: #1e293b; line-height: 1.3; transition: 0.3s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .news-pro-item:hover .news-pro-text h4 { color: var(--suri-primary); }
    .news-pro-read { font-size: 0.75rem; color: #64748b; font-weight: 700; display: flex; align-items: center; gap: 5px; transition: 0.3s; text-transform: uppercase; letter-spacing: 0.5px;}
    .news-pro-item:hover .news-pro-read { color: var(--suri-primary); gap: 8px; }

    /* TASTI SUPPORTO */
    .contact-btn { display: flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 12px; color: #fff !important; font-family: var(--font-heading); font-weight: 700; font-size: 14px; transition: 0.3s; text-decoration: none !important; border: none; cursor: pointer;}
    .contact-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15);}
    .contact-btn i { margin-right: 10px; font-size: 16px; }
    .btn-whatsapp-style { background: linear-gradient(135deg, #25D366, #128C7E); } 
    .btn-email-style { background: linear-gradient(135deg, #1a73e8, #0d47a1); } 
    .btn-tv-style { background: linear-gradient(135deg, #ff4b2b, #ff416c); }

    /* --- RESPONSIVE E FIX MENU SCHERMI MEDI --- */
    .cc-mobile-toggle { display: none; font-size: 24px; color: var(--suri-primary-dark); cursor: pointer; }
    .cc-close-btn { display: none; }
    #cc-nav-check { display: none; }
    .cc-overlay { display: none; }

    /* COMPATTA IL MENU A SCHERMI MEDI (Tablet/13 pollici) */
    @media (max-width: 1250px) and (min-width: 993px) {
        .cc-container { padding: 0 10px; }
        .cc-icons-strip { padding-right: 10px; gap: 10px; }
        .cc-top-icon { width: 30px; height: 30px; font-size: 0.9rem; }
        .cc-menu { gap: 2px; }
        .cc-link { font-size: 13px; padding: 8px 10px; }
        
        .cc-super-grid { grid-template-columns: 1fr 1fr 1.5fr; gap: 15px; padding: 20px 15px 20px 15px; }
        .cc-super-grid.mobile-tv-grid { grid-template-columns: 1fr 1fr 1.2fr; gap: 15px; }

        .cc-col-title { margin-bottom: 10px; font-size: 13px; padding-bottom: 5px; }
        
        .cc-mega-link { padding: 8px 10px; margin-bottom: 6px; gap: 10px; }
        .cc-links-list.single-column { gap: 6px; }
        .cc-mega-icon { width: 32px; height: 32px; font-size: 0.9rem; }
        .cc-mega-title { font-size: 0.85rem; }
        .cc-mega-desc { font-size: 0.7rem; margin-top: 1px; line-height: 1.1; }

        .cc-provider-grid { gap: 8px; }
        .cc-provider-card { padding: 8px; }
        .cc-provider-card img { height: 28px; margin-bottom: 5px; }
        .cc-provider-name { font-size: 0.7rem; }

        .cc-menu-slider { height: 200px; } 
        .cc-menu-slide-caption { padding: 15px 10px 10px 10px; font-size: 0.8rem; }
        .cc-image-promo img { height: 140px; }
        .cc-mega-footer-banner { padding: 10px; }
        .cc-mega-footer-banner a { padding: 10px; font-size: 0.85rem; }
    }

    /* MOBILE E TABLET PORTRAIT (HAMBURGER MENU) */
    @media (max-width: 992px) {
        .cc-navbar { box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
        .cc-container { padding: 0 20px; }
        .cc-icons-strip { display: none; } 
        .cc-mobile-toggle { display: block; }
        .cc-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13, 71, 161, 0.4); z-index: 9998; display: block; opacity: 0; visibility: hidden; transition: 0.3s; }
        #cc-nav-check:checked ~ .cc-overlay { opacity: 1; visibility: visible; }
        
        .cc-menu { position: fixed; top: 0; left: 0; width: 85%; max-width: 350px; height: 100vh; background: #fff; flex-direction: column; align-items: flex-start; padding: 80px 0 30px 0; transform: translateX(-100%); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1); z-index: 9999; overflow-y: auto; gap: 0; box-shadow: 20px 0 40px rgba(0,0,0,0.15); }
        #cc-nav-check:checked ~ .cc-container .cc-menu { transform: translateX(0); }
        
        .cc-close-btn { display: flex; position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; align-items: center; justify-content: center; background: #f1f5f9; border-radius: 50%; font-size: 18px; cursor: pointer; transition: 0.3s; }
        .cc-close-btn:active { background: var(--suri-primary); color: #fff; }
        
        .cc-item { width: 100%; display: block; border-bottom: 1px solid #f1f5f9; }
        
        /* FIX ALTEZZA VOCI MENU MOBILE */
        .cc-link { width: 100%; height: 45px; justify-content: space-between; padding: 0 25px; font-size: 15px; border-radius: 0; margin: 0; }
        
        .cc-mega-dropdown { position: static; width: 100%; box-shadow: none; border: none; padding: 0; max-height: 0; overflow: hidden; opacity: 1; visibility: visible; transform: none; transition: max-height 0.4s ease; }
        .cc-item.active .cc-mega-dropdown { max-height: 3000px; background: #f8fafc; }
        .cc-item.active .cc-link i.fa-chevron-down { transform: rotate(180deg); }
        
        .cc-super-grid, .cc-super-grid.mobile-tv-grid { display: flex; flex-direction: column; padding: 20px 25px; gap: 30px; }
        .cc-provider-grid { grid-template-columns: 1fr 1fr; }
        .cc-image-promo img { height: 140px; }
        .cc-mega-footer-banner a { padding: 12px; font-size: 0.85rem; }
    }