        :root {
            /* PALETTE K: Mint Green to Deep Blue */
            --primary: #4760ff;       /* Blu scuro */
            --primary-dark: #3a4ed8;  /* Blu più scuro */
            --cyan: #9EF4D5;          /* Verde menta chiaro */
            --cyan-light: #d1f9e8;    /* Verde menta più chiaro */
            
            --gradient-main: linear-gradient(135deg, #9EF4D5 0%, #4760ff 100%);
            --gradient-text: linear-gradient(135deg, #2dd4bf 0%, #4760ff 100%); /* Più scuro per leggibilità */
            --gradient-hover: linear-gradient(135deg, #b8f7d8 0%, #5a6bff 100%);
            
            --dark: #0F172A;
            --gray: #64748B;
            --light: #F8FAFC;
            --surface: #FFFFFF;
            --border: #E2E8F0;
            
            --alert: #EF4444; 
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #F8FAFC;
            overflow-x: hidden;
        }
        
        img { max-width: 100%; }

        /* UTILITIES */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 99px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .text-gradient {
            background: var(--gradient-text);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .shadow-glow {
            box-shadow: 0 10px 40px -10px rgba(158, 244, 213, 0.3);
        }

        /* ANIMATIONS */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* TOP BAR */
        .top-bar {
            background: var(--gradient-main);
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 14px;
            font-weight: 600;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .top-bar a {
            color: white;
            text-decoration: underline;
            margin-left: 10px;
        }

        /* NAV */
        nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            position: sticky;
            top: 40px;
            z-index: 999;
            padding: 12px 0;
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .brand-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-icon {
            height: 40px;
            width: auto;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes rocketFly {
            0% { left: -50px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: calc(100% + 50px); opacity: 0; }
        }
        
        .kpfast-text {
            position: relative;
            overflow: hidden;
        }
        
        .kpfast-text::after {
            content: '🚀';
            position: absolute;
            top: 50%;
            left: -10px;
            transform: translateY(-50%);
            font-size: 20px;
            animation: rocketFly 4s infinite;
        }
        
        .nav-links a {
            margin-left: 32px;
            text-decoration: none;
            color: var(--gray);
            font-weight: 500;
            transition: color 0.2s;
            font-size: 15px;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .btn-login {
            color: var(--primary) !important;
            font-weight: 700 !important;
        }

        /* HERO */
        .hero {
            padding: 100px 0 80px;
            background: radial-gradient(circle at 50% 0%, rgba(71, 96, 255, 0.08) 0%, transparent 60%);
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-tag {
            background: rgba(71, 96, 255, 0.1);
            color: var(--primary);
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            margin-bottom: 24px;
            display: inline-block;
        }

        h1 {
            font-size: 56px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            color: var(--dark);
        }

        .hero-sub {
            font-size: 20px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 540px;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            box-shadow: 0 10px 25px -5px rgba(71, 96, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: var(--gradient-hover);
            box-shadow: 0 15px 30px -5px rgba(158, 244, 213, 0.5);
        }

        .btn-secondary {
            margin-left: 20px;
            color: var(--gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
        }
        .btn-secondary:hover { color: var(--primary); }

        .hero-trust {
            margin-top: 40px;
            display: flex;
            gap: 24px;
            font-size: 14px;
            color: var(--gray);
        }
        .hero-trust span { display: flex; align-items: center; gap: 6px; }
        .hero-trust svg { width: 18px; height: 18px; color: #4760ff; }

        /* UI MOCKUP (CSS ONLY) */
        .ui-mockup {
            background: white;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 20px;
            position: relative;
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s;
        }
        
        .ui-mockup:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }

        .mockup-header {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            border-bottom: 1px solid #F1F5F9;
            padding-bottom: 16px;
        }
        .dot { width: 10px; height: 10px; border-radius: 50%; background: #E2E8F0; }
        .dot.red { background: #CBD5E1; }
        .dot.yellow { background: #CBD5E1; }
        .dot.green { background: #CBD5E1; }

        .mockup-row {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
            padding: 12px;
            background: #F8FAFC;
            border-radius: 8px;
            align-items: center;
        }
        .mockup-row.highlight {
            background: #eff6ff; /* Blue tint */
            border: 1px solid #bfdbfe; /* Blue border */
        }
        .sk-img { width: 40px; height: 50px; background: #CBD5E1; border-radius: 4px; }
        .sk-lines { flex: 1; }
        .sk-line { height: 8px; background: #E2E8F0; border-radius: 4px; margin-bottom: 6px; width: 80%; }
        .sk-line.short { width: 40%; }
        .sk-tag { width: 60px; height: 20px; background: #dbeafe; border-radius: 4px; }

        /* FLOATING NOTIFICATION */
        .floating-notif {
            position: absolute;
            bottom: 40px;
            left: -30px;
            background: #1E293B;
            color: white;
            padding: 16px;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite;
            z-index: 10;
        }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

        /* SECTIONS GENERIC */
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--dark);
        }
        .section-subtitle {
            text-align: center;
            color: var(--gray);
            font-size: 22px;
            margin-bottom: 60px;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        /* PAIN POINTS SECTION */
        .pain-section {
            padding: 80px 0;
            background: white;
        }
        
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }
        
        .pain-card {
            background: white;
            padding: 32px;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        
        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--alert);
            opacity: 0.7;
        }
        
        .pain-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
            border-color: transparent;
        }
        
        .pain-icon {
            width: 64px;
            height: 64px;
            background: #FEF2F2; /* Rosso chiarissimo */
            color: var(--alert);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            transition: transform 0.3s;
        }

        .pain-card:hover .pain-icon {
            transform: scale(1.1) rotate(-5deg);
        }
        
        .pain-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }
        
        .pain-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.7;
        }

        /* SOLUTION - STEPS */
        .solution-steps {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            margin-bottom: 80px;
            padding: 48px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .step:nth-child(even) {
            background: #f0f9e8;
        }
        
        .step-number {
            display: inline-block;
            width: 48px;
            height: 48px;
            background: #4760ff;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 48px;
            font-weight: 800;
            font-size: 24px;
            margin-bottom: 16px;
        }
        
        .step h3 {
            font-size: 28px;
            margin-bottom: 16px;
            color: #111827;
        }
        
        .step p {
            font-size: 18px;
            color: #4B5563;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        
        .step-visual {
            background: linear-gradient(135deg, #9EF4D5 0%, #9EF4D5 100%);
            height: 280px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        .solution-cta {
            text-align: center;
            margin-top: 48px;
        }

        /* BOT ORACLE */
        .dark-section {
            background: var(--dark);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .oracle-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .code-block {
            font-family: 'Monaco', monospace;
            font-size: 13px;
            color: #9EF4D5;
            line-height: 1.8;
            background: rgba(255,255,255,0.05);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* LIVE RICERCA SECTION */
        .live-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #F8FAFC, #f0f9e8);
        }

        .live-container {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.1);
            border: 1px solid var(--cyan-light);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .live-content {
            padding: 60px;
        }

        .live-visual {
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .live-visual::after {
            content: 'LIVE';
            position: absolute;
            font-size: 200px;
            font-weight: 900;
            color: white;
            opacity: 0.1;
            transform: rotate(-10deg);
        }

        .live-list {
            list-style: none;
            margin: 24px 0;
        }

        .live-list li {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
        }

        .live-list .num {
            color: var(--cyan);
            font-weight: 800;
            font-size: 18px;
        }

        .value-box {
            background: #f0f9e8;
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: 30px;
        }

        .value-box h4 { color: var(--primary); margin-bottom: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .value-box ul { list-style: none; }
        .value-box ul li { margin-bottom: 6px; font-size: 14px; color: var(--dark); display: flex; align-items: center; gap: 8px;}
        .value-box ul li::before { content: "✓"; color: var(--primary); font-weight: bold; }

        /* ROADMAP SECTION */
        .roadmap-section {
            padding: 100px 0;
            background: white;
        }

        .roadmap-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .roadmap-card {
            background: #F8FAFC;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            height: 100%;
        }

        .roadmap-card.active {
            border-color: #4760ff;
            background: #ECFDF5;
        }
        
        .roadmap-card.future {
            border-style: dashed;
        }

        .rm-icon { font-size: 32px; margin-bottom: 16px; display: block; }
        
        .rm-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .rm-list { list-style: none; }
        .rm-list li { 
            margin-bottom: 12px; 
            font-size: 15px; 
            color: var(--gray);
            padding-left: 20px;
            position: relative;
        }
        .rm-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .grandfather-offer {
            margin-top: 40px;
            background: linear-gradient(to right, #FFF7ED, #FFEDD5);
            border: 2px solid #F97316;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }
        
        /* PRICING */
        .pricing-section {
            padding: 100px 0;
            background: #F1F5F9;
        }

        .toggle-container {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
        }

        .toggle-bg {
            background: #E2E8F0;
            padding: 4px;
            border-radius: 12px;
            display: flex;
        }

        .toggle-btn {
            padding: 10px 24px;
            border-radius: 8px;
            border: none;
            background: transparent;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .toggle-btn.active {
            background: white;
            color: var(--primary);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .save-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--cyan);
            color: rgb(0, 0, 0);
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border);
            position: relative;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 20px 40px -10px rgba(71, 96, 255, 0.2);
            transform: scale(1.05);
            z-index: 2;
        }
        
        .reco-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-main);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .price-wrapper {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin: 20px 0;
        }

        .price { font-size: 48px; font-weight: 800; color: var(--dark); }
        .price-cents { font-size: 24px; vertical-align: super; }
        .period { color: var(--gray); }
        .old-price { text-decoration: line-through; color: var(--gray); font-size: 18px; }

        .btn-block {
            display: block;
            width: 100%;
            padding: 16px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            text-decoration: none;
            margin-top: 30px;
            transition: 0.3s;
        }

        .btn-outline {
            border: 2px solid #E2E8F0;
            color: var(--dark);
        }
        .btn-outline:hover { border-color: var(--dark); }

        .btn-solid {
            background: var(--primary);
            color: white;
        }
        .btn-solid:hover { background: var(--primary-dark); }
        
        .btn-accent {
            background: var(--gradient-main);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(158, 244, 213, 0.3);
        }
        .btn-accent:hover { background: var(--gradient-hover); }

        .check-list li {
            margin-bottom: 12px;
            display: flex;
            gap: 10px;
            font-size: 14px;
            color: var(--gray);
        }
        .check-list li svg { width: 20px; color: #4760ff; flex-shrink: 0; }
        .check-list li.disabled { opacity: 0.5; }
        .check-list li.disabled svg { color: #CBD5E1; }

        .coming-soon {
            background: rgba(245, 158, 11, 0.1);
            color: #F59E0B;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-left: 8px;
        }

        /* FAQ & FOOTER */
        .faq-item {
            background: white;
            margin-bottom: 16px;
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
        }
        .faq-question {
            padding: 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between;
        }
        .faq-answer {
            padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--gray);
        }
        .faq-item.active .faq-answer { padding-bottom: 24px; max-height: 500px; }

        .final-cta {
            background: var(--gradient-main);
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        footer {
            background: var(--dark);
            color: #94A3B8;
            padding: 80px 0 40px;
            font-size: 14px;
            border-top: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-main);
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
        .footer-col h4 { color: white; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: #94A3B8; text-decoration: none; }

        /* LIGHT TRAIL EFFECT */
        .light-trail {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .light-trail::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: lightSweep 4s infinite;
        }

        @keyframes lightSweep {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* PROMOTIONAL BANNER */
        .pricing-banner {
            background: linear-gradient(135deg, #9EF4D5 0%, #4760ff 100%);
            color: white;
            padding: 32px;
            border-radius: 16px;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 20px 40px -10px rgba(71, 96, 255, 0.3);
        }

        .pricing-banner h3 {
            font-size: 24px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .pricing-banner ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
            max-width: 600px;
            margin: 20px auto;
        }

        .pricing-banner ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-banner ul li::before {
            content: '✅';
            font-size: 18px;
        }

        .pricing-banner .expiry {
            background: rgba(255,255,255,0.2);
            padding: 12px 20px;
            border-radius: 8px;
            margin-top: 20px;
            font-weight: 600;
            display: inline-block;
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            /* Layout Grids */
            .hero-grid, 
            .pain-grid, 
            .live-container, 
            .roadmap-grid, 
            .pricing-grid, 
            .footer-grid, 
            .oracle-box,
            .step {
                grid-template-columns: 1fr !important;
                gap: 40px;
            }

            /* Typography */
            h1 { font-size: 36px; }
            .section-title { font-size: 32px; }
            .section-subtitle { font-size: 18px; margin-bottom: 40px; }
            
            /* Spacing */
            .hero { padding: 60px 0 40px; }
            .pain-section, #funzionamento, .dark-section, .live-section, .roadmap-section, .pricing-section, .final-cta {
                padding: 60px 0 !important;
            }
            
            /* Navigation */
            .nav-links { 
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-bottom: 1px solid var(--border);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links a {
                margin: 10px 0;
                display: block;
                text-align: center;
            }

            /* Mobile Menu Button */
            .mobile-menu-btn {
                display: block;
            }

            /* Specific Adjustments */
            .step { 
                display: flex !important;
                flex-direction: column;
                padding: 24px;
                gap: 24px;
                overflow: hidden;
            }
            .step-number { margin: 0 auto 16px auto; display: block; }
            .step-content { text-align: center; width: 100%; }
            .step-visual { 
                width: 100%;
                height: auto;
                padding: 20px;
                margin-top: 0;
            }
            .light-trail {
                max-width: 100%;
                width: 100%;
                display: flex;
                justify-content: center;
            }
            .step-visual img {
                max-width: 100% !important;
                height: auto !important;
                object-fit: contain;
            }
            
            /* Top bar adjustments */
            .top-bar a {
                display: none;
            }
            
            /* Live section adjustments */
            .live-visual div:first-child div:first-child {
                font-size: 40px !important;
            }
            
            .live-visual { height: 200px; }
            
            .pricing-card.featured { transform: none; }
            
            .toggle-bg { flex-direction: column; width: 100%; }
            .toggle-btn { width: 100%; margin-bottom: 4px; }
            
            .oracle-info { text-align: center; }
            .oracle-visual { overflow-x: auto; }
            
            .hero-text { text-align: center; }
            .hero-sub { margin-left: auto; margin-right: auto; }
            .hero-cta { justify-content: center; flex-direction: column; gap: 16px; }
            .btn-secondary { margin-left: 0; }
            .hero-trust { justify-content: center; }
            
            .ui-mockup { margin-top: 20px; transform: none; }
            .ui-mockup:hover { transform: none; }
        }
        
        /* Hide mobile menu button on desktop */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            padding: 0;
            margin-bottom: 16px;
            border-radius: 12px;
            border-left: 4px solid #4760ff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .faq-item.featured {
            border-left-color: #de2889;
            border-left-width: 6px;
        }
        
        .faq-question {
            font-size: 20px;
            color: #111827;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 24px 32px;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }
        
        .faq-question:hover {
            background: #F9FAFB;
        }
        
        .faq-question .icon {
            font-size: 24px;
            font-weight: 700;
            color: #4760ff;
            transition: transform 0.3s;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-question .icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .faq-item.active .faq-answer {
            max-height: 2000px;
            transition: max-height 0.5s ease-in;
        }
        
        .faq-answer-content {
            padding: 0 32px 32px 32px;
        }
        
        .faq-item h3 {
            font-size: 20px;
            margin: 0;
            color: #111827;
            font-weight: 700;
        }
        
        .faq-answer-content p {
            color: #4B5563;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        
        .faq-answer-content ul {
            list-style: none;
            margin: 16px 0;
        }
        
        .faq-answer-content ul li {
            padding: 4px 0 4px 20px;
            position: relative;
            color: #4B5563;
        }
        
        .faq-answer-content ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #4760ff;
            font-weight: bold;
        }
        
        .faq-answer-content .highlight {
            background: #FEF3C7;
            padding: 16px;
            border-radius: 8px;
            margin: 16px 0;
        }

        .trust-elements {
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #6B7280;
        }
        
        .trust-row {
            display: flex;
            justify-content: center;
            gap: 24px;
        }
        
        .trust-elements span::before {
            content: "✓";
            color: #4760ff;
            margin-right: 6px;
            font-weight: 700;
        }

        .final-cta .trust-elements {
            justify-content: center;
            color: white;
        }
        
        .final-cta .trust-elements span::before {
            color: #9EF4D5;
        }

        .final-cta .urgency-badge {
            background: rgba(245, 158, 11, 0.3);
            padding: 12px 24px;
            border-radius: 8px;
            margin-bottom: 32px;
            display: inline-block;
            border: 2px solid rgba(252, 211, 77, 0.5);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 24px;
            text-align: center;
            color: #9CA3AF;
            font-size: 14px;
        }

        /* STILE COUNTDOWN KPFAST */
.countdown-wrapper {
    margin: 24px auto 0 auto;
    background: rgba(255, 255, 255, 0.15); /* Effetto vetro su sfondo blu */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: fit-content;
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

#kp-timer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-val {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    /* Gradiente inverso per risaltare sul blu o testo bianco puro */
    background: white; 
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback se il gradiente non piace: color: white; */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.time-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
}

.timer-sep {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -15px; /* Allinea i due punti ai numeri */
}

/* Adattamento Mobile */
@media (max-width: 600px) {
    #kp-timer { gap: 8px; }
    .time-val { font-size: 24px; }
    .timer-block { min-width: 45px; }
    .timer-sep { font-size: 18px; margin-top: -10px; }
}