/* === HERO PRODUCT ICON (Versione ottimizzata "Compact") === */
.hero-product-icon-wrapper {
    width: 100%;
    max-width: 260px; /* Ridotto da 550px a 260px per evitare l'effetto gigante */
    margin: 1rem 0;   /* Ridotto il margine verticale da 2rem a 1rem */
    padding: 2px;
    background: linear-gradient(90deg, var(--tech-purple-dim), var(--tech-cyan), var(--tech-purple-dim));
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
}

.hero-product-icon-internal {
    background: var(--base-panel);
    padding: 1.5rem; /* Ridotto il padding interno (era 4rem 2rem) */
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Impostata un'altezza fissa controllata invece di min-height: 220px */
    position: relative;
    overflow: hidden;
}

.hero-product-icon-internal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(var(--tech-cyan-dim) 1px, transparent 1px), linear-gradient(90deg, var(--tech-cyan-dim) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.15;
}

/* NUOVO: Forza l'SVG a rimanere di dimensioni armoniose */
.hero-product-icon-internal svg {
    width: 100%;
    height: 100%;
    max-width: 100px;  /* L'icona vera e propria sarà grande 100x100px */
    max-height: 100px;
    z-index: 2;
    display: block;
}

/* Ottimizzazione spazi testo della Hero */
.hero h1 {
    font-size: 3.5rem; /* Leggermente ridotto da 4.5rem per guadagnare spazio verticale */
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem; /* Ridotto lo spazio prima dei pulsanti */
}

        .gateway-box {
            display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
        }
        .gateway-item {
            background: var(--base-deep); border: 1px solid var(--tech-purple); padding: 1.5rem 3rem; 
            border-radius: 8px; font-size: 1.5rem; font-weight: bold; color: var(--text-main); 
            box-shadow: 0 0 15px var(--tech-purple-dim); text-transform: uppercase; letter-spacing: 2px;
        }
        .use-case-badge {
            border: 1px solid var(--tech-purple); padding: 8px 20px; border-radius: 20px; 
            margin: 8px; display: inline-block; color: var(--tech-cyan); background: rgba(0, 229, 255, 0.05);
            font-size: 1.1rem; transition: all 0.3s;
        }
        .use-case-badge:hover {
            background: var(--tech-cyan); color: var(--base-deep); box-shadow: 0 0 15px var(--tech-cyan);
        }
        .card-icon {
            font-size: 3.5rem; color: var(--tech-orange); text-shadow: 0 0 20px var(--tech-orange-dim);
            margin-bottom: 1rem;
        }
        
        /* NUOVO: Elementi grafici per l'immagine ad impatto nella Hero */
        .hero-product-icon-wrapper {
            width: 100%;
            max-width: 550px;
            margin: 2rem 0;
            padding: 2px;
            background: linear-gradient(90deg, var(--tech-purple-dim), var(--tech-cyan), var(--tech-purple-dim));
            border-radius: 16px;
            box-shadow: 0 0 35px rgba(0, 229, 255, 0.25);
        }
        .hero-product-icon-internal {
            background: var(--base-panel);
            padding: 4rem 2rem;
            border-radius: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 220px;
            position: relative;
            overflow: hidden;
        }
        .hero-product-icon-internal::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: linear-gradient(var(--tech-cyan-dim) 1px, transparent 1px), linear-gradient(90deg, var(--tech-cyan-dim) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.2;
        }
        .hero-product-icon-internal span {
            color: var(--tech-cyan);
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 0 0 12px var(--tech-cyan);
            z-index: 2;
            text-transform: uppercase;
            font-size: 0.95rem;
        }
        .hero-action-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 1rem;
        }

        .disclaimer a {
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding-top: 2.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: none;
            letter-spacing: 2px;
        }
