
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--bg-section);
            padding: 15px 20px;
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: var(--text-light);
            opacity: 0.7;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-blue) 50%, var(--bg-section) 100%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='50' font-size='50' opacity='0.03'%3E%E2%9C%A8%3C/text%3E%3C/svg%3E") repeat;
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: var(--accent-gold);
            color: var(--bg-dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero h1 span {
            color: var(--accent-gold);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }

        .hero-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .rating-stars {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .rating-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Button */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #25D366;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        .cta-button svg {
            width: 28px;
            height: 28px;
        }

        /* Sections */
        section {
            padding: 80px 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 20px;
        }

        .section-title span {
            color: var(--accent-gold);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* Perché Section */
        .perche-section {
            background: var(--bg-section);
        }

        .perche-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .perche-card {
            background: var(--bg-dark);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(234, 191, 17, 0.2);
            transition: all 0.3s ease;
        }

        .perche-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 40px rgba(234, 191, 17, 0.1);
        }

        .perche-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
        }

        .perche-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .perche-card p {
            opacity: 0.85;
            font-size: 1rem;
        }

        /* Pacchetti Section */
        .pacchetti-section {
            background: var(--bg-dark);
        }

        .pacchetti-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .pacchetto-card {
            background: var(--bg-section);
            border-radius: 25px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .pacchetto-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        .pacchetto-card.featured {
            border-color: var(--accent-gold);
        }

        .pacchetto-card.featured::before {
            content: 'PIU\' RICHIESTO';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent-red);
            color: white;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: bold;
            transform: rotate(45deg);
        }

        .pacchetto-header {
            padding: 40px 30px 30px;
            text-align: center;
            background: linear-gradient(180deg, rgba(19, 87, 169, 0.3) 0%, transparent 100%);
        }

        .pacchetto-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .pacchetto-price {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--accent-gold);
        }

        .pacchetto-price span {
            font-size: 1.2rem;
            opacity: 0.7;
        }

        .pacchetto-body {
            padding: 30px;
        }

        .pacchetto-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .pacchetto-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .pacchetto-features li:last-child {
            border-bottom: none;
        }

        .pacchetto-features li::before {
            content: '\2713';
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .pacchetto-cta {
            display: block;
            text-align: center;
            background: var(--primary-blue);
            color: white;
            padding: 15px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .pacchetto-cta:hover {
            background: var(--accent-gold);
            color: var(--bg-dark);
        }

        .klarna-badge {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            opacity: 0.8;
        }

        .klarna-badge img {
            height: 20px;
            vertical-align: middle;
            margin-left: 5px;
        }

        /* Cosa Include Section */
        .include-section {
            background: var(--bg-section);
        }

        .include-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .include-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-dark);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid var(--accent-gold);
        }

        .include-item-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .include-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--accent-gold);
        }

        .include-item p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--bg-dark);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--bg-section);
            border-radius: 20px;
            padding: 35px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 4rem;
            color: var(--accent-gold);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-stars {
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            margin-bottom: 3px;
        }

        .testimonial-info span {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-section);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-dark);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(234, 191, 17, 0.1);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 25px 30px;
            text-align: left;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            opacity: 0.85;
            line-height: 1.7;
        }

        /* Final CTA Section */
        .final-cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bg-dark) 100%);
            text-align: center;
            padding: 100px 20px;
        }

        .final-cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 20px;
        }

        .final-cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }

        .contact-item-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        /* Trasferta Badge */
        .trasferta-badge {
            background: linear-gradient(135deg, var(--accent-gold), #f5d442);
            color: var(--bg-dark);
            padding: 15px 30px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            margin: 40px auto;
            max-width: 500px;
        }

        /* ===== SITE HEADER ===== */
        .site-header {
            background: var(--bg-section);
            padding: 15px 20px;
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }
        /* ===== NAVBAR MENU ===== */
        .nav-toggle { display: flex; align-items: center; gap: 10px; }
        .menu-btn {
            display: flex; align-items: center; justify-content: center;
            width: 44px; height: 44px; border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.14); background: transparent;
            cursor: pointer; color: #fff; flex-shrink: 0;
        }
        .menu-btn:hover { background: rgba(255,255,255,0.06); }
        .nav-cta-wa {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 10px 18px; border-radius: 999px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: #fff; font-weight: 700; font-size: 0.9rem;
            text-decoration: none; transition: transform 0.2s; flex-shrink: 0;
        }
        .nav-cta-wa:hover { transform: translateY(-1px); }
        .nav-menu {
            display: none; position: absolute; top: 100%; left: 0; right: 0;
            background: rgba(11, 15, 25, 0.98);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
            padding: 10px 0; backdrop-filter: blur(10px); z-index: 999;
        }
        .nav-menu.open { display: block; }
        .nav-menu a {
            display: block; padding: 12px 24px; color: #ecf2ff;
            text-decoration: none; font-weight: 500; transition: background 0.2s;
        }
        .nav-menu a:hover { background: rgba(255,255,255,0.06); }
        @media (max-width: 600px) {
            .nav-cta-wa span { display: none; }
            .nav-cta-wa { padding: 10px 14px; }
        }


        /* ===== LA CORRIDA SECTION ===== */
        .corrida-section {
            background: var(--bg-dark);
            padding: 60px 20px;
        }

        .staff-tv-section {
            background: linear-gradient(135deg, var(--bg-section) 0%, rgba(19, 87, 169, 0.2) 100%);
            border-radius: 25px;
            padding: 40px 25px;
            margin: 0 auto;
            border: 1px solid rgba(234, 191, 17, 0.3);
            max-width: 900px;
        }

        .staff-tv-badge {
            display: inline-block;
            background: var(--accent-gold);
            color: var(--bg-dark);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .staff-tv-title {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .staff-tv-title .highlight {
            color: var(--accent-gold);
        }

        .staff-tv-subtitle {
            font-size: 1rem;
            color: var(--text-light);
            opacity: 0.85;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .staff-tv-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .staff-tv-gallery img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            border: 2px solid rgba(234, 191, 17, 0.3);
            transition: all 0.3s ease;
        }

        .staff-tv-gallery img:hover {
            transform: scale(1.03);
            border-color: var(--accent-gold);
        }

        .staff-tv-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .staff-tv-feature {
            background: var(--bg-dark);
            padding: 25px 15px;
            border-radius: 15px;
            border: 1px solid rgba(234, 191, 17, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }

        .staff-tv-feature:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 5px 20px rgba(234, 191, 17, 0.15);
        }

        .staff-tv-feature-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .staff-tv-feature-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .staff-tv-feature-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            opacity: 0.8;
            line-height: 1.5;
        }

        .staff-tv-videos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .staff-tv-video-card {
            background: var(--bg-dark);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(234, 191, 17, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }

        .staff-tv-video-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }

        .staff-tv-video-card h4 {
            color: var(--text-light);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .staff-tv-video-card p {
            color: var(--text-light);
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .staff-tv-video-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-gold);
            color: var(--bg-dark);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .staff-tv-video-card a:hover {
            background: #f5d442;
            transform: scale(1.05);
        }

        /* ===== VIDEO SECTION ===== */
        .video-section {
            background: var(--bg-section);
            padding: 80px 20px;
        }

        .video-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            background: #000;
            max-width: 700px;
            margin: 0 auto;
        }

        .ratio-16-9 {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
        }

        .ratio-16-9 iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* ===== KLARNA BADGE UPDATED ===== */
        .klarna-badge {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            opacity: 0.9;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .klarna-img {
            max-width: 180px;
            height: auto;
            border-radius: 8px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px;
            }

            .hero-features {
                flex-direction: column;
                gap: 15px;
            }

            section {
                padding: 60px 20px;
            }

            .pacchetti-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            /* Responsive per nuove sezioni */
            .staff-tv-gallery {
                grid-template-columns: 1fr;
            }

            .staff-tv-gallery img {
                height: 200px;
            }

            .staff-tv-features {
                grid-template-columns: 1fr;
            }

            .staff-tv-videos {
                grid-template-columns: 1fr;
            }

            .logo-img {
                height: 35px;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
    