        /* Hero Section */
        .hero {
            background: #f8f9fa;
            color: #111;
            padding: 0.9rem 0 3rem;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
        }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
                opacity: 0.3;
            }

            .hero .container {
                display: flex;
                flex-wrap: nowrap; /* non far andare gli elementi su due righe */
                align-items: center; /* centra verticalmente */
                justify-content: space-between;
                gap: 2rem; /* distanza tra testo e immagine */
            }

        .hero-dark-gradient {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: #f9fafb;
            padding: 60px 20px;
            text-align: center;
            border-radius: 12px;
            margin: 40px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); /* ombra morbida */
        }

            .hero-dark-gradient h1 {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 20px;
                color: #f9fafb;
            }

            .hero-dark-gradient p {
                font-size: 1.2rem;
                line-height: 1.6;
                max-width: 700px;
                margin: 0 auto 30px auto;
                color: #e5e7eb;
            }

            .hero-dark-gradient .btn-hero.primary {
                background-color: #10b981;
                color: #fff;
                padding: 1rem 2.5rem;
                font-size: 1rem;
                border-radius: 0.75rem;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                transition: all 0.3s ease;
            }

                .hero-dark-gradient .btn-hero.primary:hover {
                    background-color: #059669;
                    transform: translateY(-2px);
                }

        /* Hero Header sopra tutto */
        .hero-header {
            text-align: center;
            margin-bottom: 1.0rem;
            width: 100%;
        }

            .hero-header h1 {
                font-size: 2.10rem;
                font-weight: 600;
                line-height: 2.55rem;
            }

            .hero-header .subtitle {
                font-size: 1.3rem;
                color: #333;
            }

        /* Hero Main: lista + immagine */
        .hero-main {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .hero-content {
            flex: 1 1 400px;
        }

        .hero-image {
            flex: 1 1 400px;
            text-align: center;
            position: relative;
        }

        /* Mobile */
        @media (max-width: 992px) {
            .hero-main {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero-main {
                padding-top: 20px !important;
            }
        }

        .hero .features-list {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0;
            font-size: 1.0rem;
        }

            .hero .features-list li {
                padding: 0.3rem 0;
                display: flex;
                align-items: center;
                gap: 0.8rem;
            }

            .hero .features-list i {
                color: #10b981;
                font-size: 1.4rem;
            }

.hero-buttons {
    display: flex;
    gap: 1.0rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;

}

        .btn-hero,
        .btn-cta {
            position: relative; /* per creare un nuovo stacking context */
            z-index: 10; /* sopra gli elementi assoluti */
        }

            .btn-hero.primary {
                background-color: #10b981;
                color: white;
            }
            .btn-hero primary a {
                color: white;
            }
                .btn-hero.primary:hover {
                    background-color: #059669;
                    transform: translateY(-3px);
                    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
                }

            .btn-hero.secondary {
                background-color: #ef4444;
                color: white;
            }

                .btn-hero secondary a {
                    color: white;
                }

                .btn-hero.secondary:hover {
                    background-color: #dc2626;
                    transform: translateY(-3px);
                    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
                }



        .price-badge {
            position: absolute;
            top: 50%; /* verticale al centro dell'immagine */
            left: 65px; /* sposta il badge a destra dell'immagine */
            transform: translateY(-50%); /* centra verticalmente */
            width: auto;
            background-color: #f97316;
            color: white;
            padding: 1rem 1rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
            font-family: 'Poppins', sans-serif;
            z-index: 1; /* basso, per non bloccare bottoni */
        }

            .price-badge .label {
                font-size: 0.875rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 0.25rem;
            }

            .price-badge .price {
                font-size: 2rem;
                font-weight: 700;
                line-height: 1;
            }

            .price-badge .period {
                font-size: 0.875rem;
                opacity: 0.85;
            }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.25rem;
            }

            .hero .subtitle {
                font-size: 1.25rem;
            }

            .btn-hero {
                width: 100%;
                justify-content: center;
            }

            .price-badge {
                position: static;
                margin: 2rem auto 0;
                display: inline-block;
            }
        }


        .intro-section {
            background-color: #1f2937;
            color: #f4f4f4;
            padding: 0.8rem 0.8rem 0.8rem 0.8rem;
            margin: 0.8rem 0;
            padding-bottom: 1.5rem;
        }

            .intro-section p {
                font-size: 1.0rem;
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .intro-section h2 {
                font-weight: 500;
                font-size: 1.20rem;
                color: #f9fafb;
            }

            .intro-section .btn-cta {
                background-color: #10b981; /* verde primario */
                color: #fff;
                padding: 0.75rem 2rem;
                border-radius: 0.75rem;
                font-weight: 500;
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .intro-section .btn-cta:hover {
                    background-color: #059669;
                }

        /* Features Grid */
        .features-section {
            padding: 1rem 1rem;
            font-family: 'Inter', sans-serif; /* font business leggibile */
            color: #1f2937;
            background-color: white;
        }





        .section-title {
            font-size: 1.75rem;
            font-weight: 500;
            text-align: center;
            margin-bottom: 2rem;
            color: #1f2937;
        }

            .section-title .highlight {
                font-weight: 600;
                color: #1e3a8a;
            }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
        }

        .feature-card {
            background-color: #eaecee;
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

            .feature-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            }

            .feature-card .icon {
                font-size: 1.5rem;
                color: #1e3a8a;
                margin-bottom: 0.75rem;
            }

            .feature-card h3 {
                font-size: 1.1rem;
                font-weight: 500;
                margin-bottom: 0.5rem;
            }

            .feature-card p {
                font-size: 0.875rem;
                color: #4b5563;
                line-height: 1.5;
            }



        /* Info Box */
        .info-box.business {
            padding: 1rem;
            margin: 1rem auto;
            border-radius: 0.5rem;
            background-color: #eaecee;
            max-width: 800px;
        }



            .info-box.business h3 {
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
                color: #1e3a8a;
            }

            .info-box.business .highlight-text p {
                font-size: 1.0rem;
                line-height: 1.2rem;
                color: #1e3a8a;
                margin-bottom: 0.2rem;
            }

        .note {
            font-size: 0.825rem;
            color: #6b7280;
            padding-top: 0.5rem;
            margin: 0px;
            padding: 0px;
            line-height: 1rem;
        }



        .info-box {
            border-radius: 1rem;
            padding: 3rem;
            margin: 4rem 0;
        }

            .info-box h3 {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 0.2rem;
                color: var(--primary-dark);
            }

            .info-box .highlight-text {
                font-size: 1.125rem;
                line-height: 1.8;
                margin-bottom: 2rem;
            }

        .info-table {
            background: white;
            border-radius: 0.75rem;
            overflow: hidden;
        }

            .info-table table {
                width: 100%;
                border-collapse: collapse;
            }

            .info-table th {
                background: #3b6f9b;
                color: white;
                padding: 0.7rem;
                text-align: left;
                font-weight: 600;
            }

            .info-table td {
                padding: 0.60rem;
                border-bottom: 1px solid var(--gray-200);
            }

            .info-table tr:last-child td {
                border-bottom: none;
            }

            .info-table .price-cell {
                text-align: center;
                font-size: 1.1rem;
                font-weight: 600;
                color: #3b6f9b;
            }

        /* Compatibility Section */
        .compatibility-section {
            background: var(--gray-50);
            padding: 4rem 0;
            text-align: center;
        }

            .compatibility-section h2 {
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 2rem;
                color: var(--gray-900);
            }

        .os-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .os-badge {
            background: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            border: 2px solid #1e3a8a; /*var(--primary-color);*/
            color: #1e3a8a;
            font-weight: 600;
            font-size: 1.125rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }

            .os-badge:hover {
                background: var(--primary-color);
                color: white;
                transform: scale(1.05);
            }

            .os-badge i {
                font-size: 1.5rem;
            }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.25rem;
            }
            .hero-content {
                flex: 1 1 content;
            }

            .hero-image {
                flex: 1 1 content;
                text-align: center;
                position: relative;
            }
            .price-badge {
                position: static;
                transform: none;
                margin: 2rem auto;
                display: inline-block;
            }
        }

        @media (max-width: 768px) {


            .hero {
                padding: 1rem 0 3rem;
            }

                .hero h1 {
                    font-size: 1.7rem;
                }

                .hero .subtitle {
                    font-size: 1.0rem;
                }

                .hero .features-list {
                    font-size: 0.90rem;
                    display: none;
                }

            .hero-buttons {
                flex-direction: column;
            }
            .hero-content {
                flex: 1 1 content;
            }

            .hero-image {
                flex: 1 1 content;
                text-align: center;
                position: relative;
            }

            .hero-image img {
                width: 90% !important;
                height: auto;
            }

            .btn-hero {
                width: 100%;
                justify-content: center;
                padding: 1rem 2rem;
                font-size: 1.125rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .os-badges {
                flex-direction: column;
                align-items: center;
            }

            .os-badge {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }


        .cta-section {
            background-color: #f9fafb; /* neutro chiaro */
            padding: 4rem 2rem;
            font-family: 'Inter', sans-serif;
            color: #1f2937;
        }

        .cta-header h3 {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #111827;
        }

        .cta-header .highlight {
            color: #1e3a8a;
            font-weight: 600;
        }

        .cta-header p {
            font-size: 1rem;
            color: #374151;
            margin-bottom: 2.5rem;
        }

        .cta-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
        }

        .cta-card {
            background-color: #ffffff;
            border-radius: 0.5rem;
            border-color: #4b5563;
            border-style: solid;
            border-width: thin;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

            .cta-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            }

            .cta-card .cta-icon {
                font-size: 2rem;
                color: #1e3a8a; /* blu professionale */
                margin-bottom: 0.75rem;
            }

            .cta-card h4 {
                font-size: 1.1rem;
                font-weight: 500;
                margin-bottom: 0.5rem;
                color: #111827;
            }

            .cta-card p {
                font-size: 0.875rem;
                color: #4b5563;
                margin-bottom: 1.25rem;
            }

        .btn-cta.primary {
            background-color: #3b6f9b; /* blu scuro professionale */
            color: #ffffff;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

            .btn-cta.primary:hover {
                background-color: #3741a1; /* leggermente pił chiaro al hover */
            }

        /* Responsive */
        @media (max-width: 768px) {
            .cta-cards {
                grid-template-columns: 1fr;
            }
        }