
    <style>
        :root {
            --bg-dark: #050915;
            --bg-darker: #02040a;
            --accent: #00e0ff;
            --accent-soft: rgba(0, 224, 255, 0.16);
            --accent-2: #7b61ff;
            --text-main: #f5f5f7;
            --text-muted: #9ca3af;
            --card-bg: #0b1220;
            --border-soft: rgba(148, 163, 184, 0.2);
        }

        * {
            box-sizing: border-box;
        }
/* LOGO NAVBAR */
.logo-nav {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid rgba(255,255,255,0.25);
}

/* COOKIE NOTICE */
#cookie-banner {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148,163,184,0.25);
    border-radius: 12px;
    padding: 14px 22px;
    z-index: 99999;
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.2);
    backdrop-filter: blur(6px);
    color: #dbeafe;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

#cookie-banner button {
    background: linear-gradient(120deg, #0ea5e9, #6366f1);
    border: none;
    padding: 6px 16px;
    color: white;
    border-radius: 999px;
    font-size: 0.8rem;
    cursor: pointer;
}

#cookie-banner button:hover {
    filter: brightness(1.1);
}


        body {
            font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
            color: var(--text-main);
            margin: 0;
        }

        /* NAVBAR */
        .navbar {
            backdrop-filter: blur(12px);
            background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.9));
            border-bottom: 1px solid rgba(148,163,184,0.18);
        }

        .navbar-brand span.logo-main {
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            background: linear-gradient(120deg, #00e0ff, #38bdf8, #a855f7);
            -webkit-background-clip: text;
            color: transparent;
        }

        .navbar-brand small.logo-sub {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--text-muted);
        }

        .nav-link {
            color: var(--text-muted) !important;
            font-weight: 400;
            font-size: 0.9rem;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent) !important;
        }

        /* HERO */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            padding-bottom: 4rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            border: 1px solid var(--border-soft);
            background: rgba(15, 23, 42, 0.9);
            color: var(--accent);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
        }

        .hero-title {
            font-size: clamp(2.2rem, 3.4vw, 3.4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-top: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .hero-title span.highlight {
            background: linear-gradient(120deg, #22d3ee, #60a5fa, #a855f7);
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            color: var(--text-muted);
            max-width: 500px;
            font-size: 0.98rem;
        }

        .hero-list {
            list-style: none;
            padding: 0;
            margin: 1.3rem 0;
        }

        .hero-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.92rem;
            color: var(--text-muted);
        }

        .hero-list li i {
            color: var(--accent);
        }

        .btn-tech-primary {
            background: linear-gradient(120deg, #0ea5e9, #6366f1);
            border: none;
            border-radius: 999px;
            padding: 0.7rem 1.6rem;
            font-weight: 500;
            font-size: 0.95rem;
            box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3), 0 18px 45px rgba(15, 23, 42, 0.9);
        }

        .btn-tech-primary:hover {
            filter: brightness(1.08);
            transform: translateY(-1px);
        }

        .btn-tech-outline {
            border-radius: 999px;
            padding: 0.7rem 1.4rem;
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid rgba(148, 163, 184, 0.6);
            color: var(--text-main);
            background: radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 55%);
        }

        .btn-tech-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: radial-gradient(circle at top left, rgba(56,189,248,0.32), transparent 60%);
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1rem;
        }

        /* HERO RIGHT - PANNELLO TECNOLOGICO */
        .hero-panel {
            position: relative;
            padding: 1.5rem;
        }

        .hero-card {
			position: relative;
			border-radius: 1.7rem;
			border: 1px solid rgba(148, 163, 184, 0.3);
			background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 60%), linear-gradient(145deg, #020617, #020617, #020617);
			padding: 1.6rem;
			overflow: hidden;
			box-shadow: 0 24px 60px rgba(0,0,0,0.75);
			min-height: 300px; 
			padding-bottom: 2.8rem; 
		}


        .hero-card::before {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.36), transparent 70%);
            top: -80px;
            right: -40px;
            opacity: 0.85;
            filter: blur(1px);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.7rem;
            position: relative;
            z-index: 2;
        }

        .hero-chip {
            padding: 0.8rem 0.85rem;
            border-radius: 1rem;
            border: 1px solid rgba(148, 163, 184, 0.22);
            background: rgba(15, 23, 42, 0.92);
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-chip strong {
            display: block;
            color: var(--text-main);
            font-size: 0.9rem;
        }

        .hero-chip i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .hero-badge-floating {
            position: absolute;
            bottom: 1.2rem;
            left: 1.6rem;
            padding: 0.6rem 1rem;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.98);
            border: 1px solid rgba(148,163,184,0.4);
            font-size: 0.78rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--text-muted);
        }

        .hero-badge-floating i {
            color: #22c55e;
        }

        .hero-orbit-ring {
            position: absolute;
            inset: 0.8rem;
            border-radius: 1.5rem;
            border: 1px dashed rgba(148,163,184,0.35);
            opacity: 0.4;
        }

        /* SEZIONI GENERALI */
        section {
            padding: 4rem 0;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 620px;
        }

        .divider {
            width: 50px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, #22d3ee, #6366f1);
            margin-bottom: 1.3rem;
        }

        .section-bg-soft {
            background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 100%);
        }

        /* CARDS SERVIZI */
        .service-card {
            border-radius: 1.4rem;
            border: 1px solid rgba(148, 163, 184, 0.27);
            background: radial-gradient(circle at top left, rgba(56,189,248,0.22), transparent 65%), #020617;
            padding: 1.4rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(34,211,238,0.32), transparent 70%);
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 0.7rem;
        }

        .service-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .service-text {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .service-tags span {
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
            font-size: 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(148,163,184,0.5);
            padding: 0.15rem 0.6rem;
            color: var(--text-muted);
        }

        .service-tags span i {
            font-size: 0.8rem;
            color: var(--accent);
        }

        /* PROGETTI */
        .project-card {
            border-radius: 1.3rem;
            border: 1px solid rgba(148,163,184,0.25);
            background: radial-gradient(circle at top, rgba(99,102,241,0.25), transparent 65%), #020617;
            padding: 1.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
        }

        .project-card.mensa {
            background: radial-gradient(circle at top, rgba(34,197,94,0.25), transparent 65%), #020617;
        }

        .project-card.totem {
            background: radial-gradient(circle at top, rgba(56,189,248,0.25), transparent 65%), #020617;
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(15,23,42,0.95);
        }

        .project-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border-radius: 999px;
            padding: 0.18rem 0.6rem;
            font-size: 0.7rem;
            border: 1px solid rgba(148,163,184,0.7);
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .project-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .project-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }

        .project-highlight {
            font-size: 0.85rem;
            color: var(--text-main);
        }

        .project-highlight i {
            color: var(--accent);
        }

        /* TIMELINE / METODO */
        .timeline-step {
            border-radius: 1.3rem;
            border: 1px solid rgba(148,163,184,0.25);
            background: #020617;
            padding: 1.2rem 1.2rem 1rem;
            position: relative;
            height: 100%;
        }

        .timeline-step-number {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, rgba(56,189,248,0.35), transparent 60%);
            border: 1px solid rgba(148,163,184,0.6);
            font-size: 0.8rem;
            color: var(--text-main);
            margin-bottom: 0.4rem;
        }

        .timeline-step h4 {
            font-size: 0.98rem;
            margin-bottom: 0.3rem;
        }

        .timeline-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* CTA / CONTATTI */
        .cta-card {
            border-radius: 1.6rem;
            border: 1px solid rgba(148,163,184,0.3);
            background: radial-gradient(circle at top left, rgba(56,189,248,0.3), transparent 60%), radial-gradient(circle at bottom right, rgba(129,140,248,0.25), transparent 60%), #020617;
            padding: 1.8rem 1.6rem;
        }

        .contact-pill {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .contact-pill a {
            color: var(--accent);
            text-decoration: none;
        }

        .contact-pill a:hover {
            text-decoration: underline;
        }

        /* FOOTER */
        footer {
            border-top: 1px solid rgba(148,163,184,0.25);
            padding: 1.4rem 0;
            font-size: 0.8rem;
            color: var(--text-muted);
            background: #020617;
        }

        footer .brand {
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-size: 0.72rem;
        }

        /* ANIMAZIONI SCROLL */
        [data-animate] {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 550ms ease, transform 550ms ease;
        }

        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        [data-animate="fade-right"].animated {
            transform: translateX(0);
        }

        [data-animate="fade-right"] {
            transform: translateX(-20px);
        }

        @media (max-width: 991.98px) {
            .hero {
                padding-top: 4.5rem;
            }

            .hero-card {
                margin-top: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-card {
                padding: 1.2rem;
            }
        }
		.project-card p,
		.project-card .text-muted {
			color: #7dd3fc !important; /* ciano chiaro */
		}
		/* Navbar dinamica allo scroll */
		.navbar.scrolled {
			background: rgba(10, 15, 28, 0.88) !important;
			border-bottom: 1px solid rgba(148,163,184,0.25) !important;
			backdrop-filter: blur(12px);
			transition: background 0.3s ease;
		}

		/* Modalità chiara */
		body.light-mode {
			background: #f1f5f9 !important;
			color: #1e293b !important;
		}

		body.light-mode .navbar {
			background: rgba(255,255,255,0.85) !important;
		}

		body.light-mode .logo-main {
			background: linear-gradient(120deg, #0ea5e9, #6366f1);
			-webkit-background-clip: text;
			color: transparent !important;
		}

		.theme-toggle {
			cursor: pointer;
			font-size: 1.4rem;
			margin-left: 12px;
			color: var(--accent);
		}

		#whatsapp-btn {
			position: fixed;
			bottom: 85px;
			right: 22px;
			width: 58px;
			height: 58px;
			background: #25d366;
			border-radius: 50%;
			display: flex;
			justify-content: center;
			align-items: center;
			z-index: 99999;
			box-shadow: 0 4px 18px rgba(0,0,0,0.45);
		}
		#whatsapp-btn i {
			font-size: 32px;
			color: white;
		}
		#whatsapp-btn:hover {
			filter: brightness(1.1);
		}
		.logo-sub {
			transition: opacity .4s ease;
		}
		.navbar.scrolled .logo-sub {
			opacity: 0.85;
		}
#whatsapp-label {
    position: fixed;
    bottom: 150px; /* leggero distacco sopra il bottone */
    right: 22px;
    background: rgba(15, 23, 42, 0.85);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: #dbeafe;
    border: 1px solid rgba(148,163,184,0.35);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 16px rgba(0, 224, 255, 0.25);
    animation: float-label 3s ease-in-out infinite;
    z-index: 99998;
}

/* animazione morbida */
@keyframes float-label {
    0%, 100% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(-4px); opacity: 1; }
}
/* FIX HERO GRID SU MOBILE */
@media (max-width: 480px) {

    .hero-card {
        padding: 1.2rem !important;
        border-radius: 1.4rem !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 0.9rem !important;
    }

    .hero-chip {
        padding: 1rem !important;
        font-size: 0.9rem !important;
        border-radius: 1.1rem !important;
    }

    .hero-chip strong {
        font-size: 1rem !important;
    }
}
/* Fix contenuto tagliato nella hero-card su mobile */
@media (max-width: 480px) {

    .hero-card {
        min-height: auto !important;
        padding-bottom: 4.5rem !important; /* più spazio sotto */
    }

    .hero-badge-floating {
        bottom: 1rem !important; /* lo solleva per non tagliarsi */
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: 90% !important;
        text-align: center !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .hero-orbit-ring {
        display: none; /* evita sovrapposizioni e disturbi */
    }

}

    </style>