/* --- VARIABILI & RESET --- */
        :root {
            --primary: #00e5ff;      /* Ciano (Tech) */
            --secondary: #7000ff;    /* Viola (Creatività) */
            --accent: #ffd700;       /* Oro (Premium) */
            --bg-dark: #050505;
            --text-main: #ffffff;
            --text-muted: #b0b0b0;
            --glass: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.1);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- SFONDO ANIMATO (VFX) --- */
        body::before {
            content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: 
                radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.08), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 229, 255, 0.08), transparent 25%);
            z-index: -1; pointer-events: none;
        }

        /* --- UTILITY --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .highlight { color: var(--primary); }
        .gradient-text {
            background: linear-gradient(90deg, #fff, var(--primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        
        /* --- HEADER --- */
        header {
            padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000;
            background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border);
        }
        .nav-flex { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
        .logo span { color: var(--primary); }
        
        nav ul { list-style: none; display: flex; gap: 30px; }
        nav a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: 0.3s; font-size: 0.95rem; }
        nav a:hover { color: white; }

        .btn-login {
            padding: 8px 20px; border: 1px solid var(--primary); border-radius: 50px;
            color: var(--primary); text-decoration: none; font-weight: bold; transition: 0.3s;
        }
        .btn-login:hover { background: var(--primary); color: black; box-shadow: 0 0 15px rgba(0, 229, 255, 0.4); }

        /* --- HERO SECTION (L'IMPATTO) --- */
        .hero {
            padding: 180px 0 100px 0; text-align: center;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        .hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
        .hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px auto; }
        
        .btn-cta {
            padding: 15px 40px; background: linear-gradient(90deg, var(--secondary), var(--primary));
            color: white; text-decoration: none; font-weight: bold; border-radius: 50px; font-size: 1.1rem;
            display: inline-block; transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-cta:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(112, 0, 255, 0.4); }

        /* --- GENITORI vs RAGAZZI (La chiave della persuasione) --- */
        .dual-section { padding: 100px 0; }
        .dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
        
        .info-card {
            background: var(--glass); border: 1px solid var(--border); padding: 40px; border-radius: 20px;
            transition: 0.3s; position: relative; overflow: hidden;
        }
        .info-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        
        .card-icon { font-size: 2.5rem; margin-bottom: 20px; display: inline-block; padding: 15px; border-radius: 15px; background: rgba(255,255,255,0.05); }
        .parents .card-icon { color: var(--accent); }
        .kids .card-icon { color: var(--primary); }

        .info-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .info-card ul { list-style: none; margin-top: 20px; }
        .info-card li { margin-bottom: 10px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
        .info-card li i { color: var(--success, #00ff88); }

        /* --- NUOVA SEZIONE METODO (Sostituisce Roadmap) --- */
        .method-section { padding: 80px 0; background: #0a0a0e; border-top: 1px solid #222; border-bottom: 1px solid #222; }
        .method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
        .method-card {
            background: var(--glass); border: 1px solid var(--border); padding: 30px; border-radius: 15px;
            text-align: center; transition: 0.3s; position: relative; overflow: hidden;
        }
        .method-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0, 229, 255, 0.1); }
        .method-card::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
            opacity: 0; transition: 0.3s; pointer-events: none;
        }
        .method-card:hover::before { opacity: 1; }
        
        .method-num { 
            font-size: 4rem; font-weight: 800; color: rgba(255,255,255,0.05); 
            position: absolute; top: 10px; right: 20px; z-index: 0;
        }
        .method-icon { font-size: 2rem; color: var(--primary); margin-bottom: 20px; position: relative; z-index: 1; }
        .method-card h3 { font-size: 1.3rem; margin-bottom: 10px; position: relative; z-index: 1; }
        .method-card p { color: var(--text-muted); font-size: 0.9rem; position: relative; z-index: 1; }
        
        /* --- PRICING (I PACCHETTI) --- */
        .pricing { padding: 100px 0; }
        .price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
        
        .plan { 
            background: var(--glass); border: 1px solid var(--border); padding: 40px; border-radius: 20px; text-align: center; 
            transition: 0.3s; display: flex; flex-direction: column;
        }
        .plan:hover { transform: scale(1.03); border-color: var(--primary); }
        
        .plan.featured { 
            background: linear-gradient(145deg, rgba(0, 229, 255, 0.05), rgba(112, 0, 255, 0.05)); 
            border: 1px solid var(--primary); box-shadow: 0 0 30px rgba(0, 229, 255, 0.1); 
            position: relative;
        }
        .badge { position: absolute; top: 15px; right: 15px; background: var(--secondary); padding: 5px 10px; border-radius: 5px; font-size: 0.7rem; font-weight: bold; }

        .price { font-size: 2.5rem; font-weight: bold; margin: 20px 0; color: white; }
        .price span { font-size: 1rem; font-weight: normal; color: var(--text-muted); }
        
        .features { text-align: left; margin: 20px 0; flex-grow: 1; }
        .features li { margin-bottom: 10px; color: #ccc; font-size: 0.9rem; }
        .features li i { margin-right: 10px; color: var(--primary); }
        .features li.off { color: #555; text-decoration: line-through; }
        .features li.off i { color: #555; }

        /* --- CONTACT FORM --- */
        .contact { padding: 100px 0; background: #08080a; }
        .form-box { max-width: 600px; margin: 0 auto; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; color: var(--primary); font-size: 0.9rem; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 15px; background: #111; border: 1px solid #333;
            color: white; border-radius: 8px; outline: none; font-family: inherit;
        }
        .form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }

        /* --- FOOTER --- */
        footer { padding: 50px 0; text-align: center; border-top: 1px solid #222; color: #666; font-size: 0.9rem; }

        /* MOBILE */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .dual-grid { grid-template-columns: 1fr; }
            .nav-flex ul { display: none; } /* Menu semplice per mobile */
        }