
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
            --text-muted: #9ca3af;
            --border-color: #1f2937;
        }

        * {
            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.7;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--bg-section);
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb span {
            color: var(--text-muted);
            margin: 0 8px;
        }

        .breadcrumb .current {
            color: var(--text-light);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 50%, var(--primary-blue) 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 width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23eabf11' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
            pointer-events: none;
        }

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

        .badge-corrida {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), #d4a90a);
            color: var(--bg-dark);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(234, 191, 17, 0.3);
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

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

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent-gold);
        }

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

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Styles */
        section {
            padding: 80px 20px;
        }

        .section-dark {
            background: var(--bg-dark);
        }

        .section-alt {
            background: var(--bg-section);
        }

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

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

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* Why Choose Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 35px 30px;
            transition: all 0.3s ease;
        }

        .section-alt .feature-card {
            background: var(--bg-dark);
        }

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

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--text-light);
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Credentials Section */
        .credentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .credential-card {
            background: linear-gradient(135deg, var(--bg-section), var(--bg-dark));
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .credential-card.featured {
            border-color: var(--accent-gold);
            background: linear-gradient(135deg, rgba(234, 191, 17, 0.1), var(--bg-section));
        }

        .credential-card.featured::before {
            content: 'IN EVIDENZA';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--accent-gold);
            color: var(--bg-dark);
            padding: 5px 40px;
            font-size: 0.7rem;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .credential-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .credential-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }

        .credential-card p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .credential-card .big-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 5px;
        }

        /* Events Section */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .event-card {
            background: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .event-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--bg-dark));
            padding: 30px;
            text-align: center;
        }

        .event-icon {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .event-card h3 {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .event-body {
            padding: 25px;
        }

        .event-body ul {
            list-style: none;
        }

        .event-body li {
            padding: 8px 0;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .event-body li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Technical Requirements */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .tech-card {
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
        }

        .tech-card h3 {
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tech-list {
            list-style: none;
        }

        .tech-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tech-list li:last-child {
            border-bottom: none;
        }

        .tech-label {
            color: var(--text-muted);
        }

        .tech-value {
            color: var(--text-light);
            font-weight: 600;
        }

        .tech-note {
            margin-top: 20px;
            padding: 15px;
            background: rgba(234, 191, 17, 0.1);
            border-left: 3px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* How to Book Section */
        .booking-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
            padding-top: 10px;
        }

        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .step-content p {
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(234, 191, 17, 0.05);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 600;
            padding-right: 20px;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--accent-gold);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            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 p {
            padding: 0 30px 25px;
            color: var(--text-muted);
            line-height: 1.8;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23eabf11' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

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

        .cta-section p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

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

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

        .contact-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.2rem;
        }

        .contact-text {
            text-align: left;
        }

        .contact-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-value {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .contact-value a {
            color: var(--text-light);
            text-decoration: none;
        }

        .contact-value a:hover {
            color: var(--accent-gold);
        }

        /* Footer */
        footer {
            background: var(--bg-dark);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        footer p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

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

        /* ===== SITE HEADER ===== */
        .site-header {
            background: var(--bg-section);
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .site-header .container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* ===== LOGO HEADER ===== */
        .logo-img {
            height: 40px;
            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; }
        }


        /* ===== SECTION WHITE ===== */
        .section-white {
            background: #f8f9fa;
            padding: 80px 20px;
        }

        /* ===== STAFF TV / LA CORRIDA SECTION ===== */
        .staff-tv-section {
            background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
            border-radius: 25px;
            padding: 40px 25px;
            margin: 0 auto;
            border: 1px solid #dee2e6;
            max-width: 1000px;
        }

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

        .staff-tv-title {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 800;
            color: #212529;
            margin-bottom: 15px;
            line-height: 1.3;
        }

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

        .staff-tv-subtitle {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 30px;
            line-height: 1.7;
            max-width: 700px;
            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: 3px solid #dee2e6;
            transition: all 0.3s ease;
        }

        .staff-tv-gallery img:hover {
            transform: scale(1.03);
            border-color: var(--accent-gold);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

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

        .staff-tv-feature {
            background: white;
            padding: 25px 20px;
            border-radius: 15px;
            border: 1px solid #dee2e6;
            text-align: center;
            transition: all 0.3s ease;
        }

        .staff-tv-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .staff-tv-feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
        .staff-tv-feature-title { font-size: 1rem; font-weight: 700; color: #212529; margin-bottom: 8px; }
        .staff-tv-feature-desc { font-size: 0.85rem; color: #6c757d; line-height: 1.5; }

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

        .staff-tv-video-card {
            background: white;
            border-radius: 15px;
            padding: 25px 20px;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
            text-align: center;
        }

        .staff-tv-video-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .staff-tv-video-card h4 { color: #212529; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
        .staff-tv-video-card p { color: #6c757d; font-size: 0.85rem; margin-bottom: 15px; }

        .staff-tv-video-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #212529;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .staff-tv-video-card a:hover { background: #000; 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 15px 50px rgba(0,0,0,0.3);
            background: #000;
            max-width: 700px;
            margin: 0 auto;
        }

        .video-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(234,191,17,.1), rgba(19,87,169,.1));
            z-index: 1;
            pointer-events: none;
        }

        .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;
        }

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

            .hero-stats {
                gap: 25px;
            }

            .stat-number {
                font-size: 2rem;
            }

            section {
                padding: 60px 20px;
            }

            .step {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }

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

            .contact-item {
                justify-content: center;
            }

            .contact-text {
                text-align: center;
            }

            /* Responsive nuove sezioni */
            .logo-img { height: 32px; }
            .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; }
            .section-white { padding: 60px 20px; }
            .video-section { padding: 60px 20px; }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Trust badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .trust-icon {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
    