
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --cresima-purple: #7b1fa2;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
            --text-muted: #9ca3af;
            --gradient-gold: linear-gradient(135deg, #eabf11 0%, #f5d742 50%, #eabf11 100%);
            --gradient-blue: linear-gradient(135deg, #1357a9 0%, #1e6fd9 100%);
            --gradient-purple: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 50%, #7b1fa2 100%);
            --shadow-gold: 0 4px 30px rgba(234, 191, 17, 0.3);
            --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: rgba(17, 24, 39, 0.8);
            padding: 12px 0;
            padding-top: 82px;
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
        }

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

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            list-style: none;
            font-size: 0.9rem;
        }

        .breadcrumb-list a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .breadcrumb-list a:hover {
            opacity: 0.8;
        }

        .breadcrumb-list span {
            color: var(--text-muted);
        }

        .breadcrumb-separator {
            color: var(--text-muted);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1f35 50%, var(--bg-dark) 100%);
            overflow: hidden;
            padding: 100px 20px 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(123, 31, 162, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(234, 191, 17, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }

        /* Decorative elements */
        .magic-stars {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .star {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        .star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
        .star:nth-child(2) { top: 20%; left: 85%; animation-delay: 0.5s; }
        .star:nth-child(3) { top: 60%; left: 10%; animation-delay: 1s; }
        .star:nth-child(4) { top: 70%; left: 90%; animation-delay: 1.5s; }
        .star:nth-child(5) { top: 40%; left: 5%; animation-delay: 2s; }
        .star:nth-child(6) { top: 30%; left: 95%; animation-delay: 2.5s; }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        .hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(234, 191, 17, 0.15);
            border: 1px solid var(--accent-gold);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            animation: fadeInDown 0.8s ease;
        }

        .badge-icon {
            font-size: 1.1rem;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero h1 .highlight {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--text-muted);
            margin-bottom: 15px;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 0.8s ease 0.5s backwards;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 35px;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .trust-badge .icon {
            font-size: 1.3rem;
        }

        .trust-badge .stars {
            color: var(--accent-gold);
        }

        .hero-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            animation: fadeInUp 0.8s ease 0.7s backwards;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
        }

        .btn-primary .whatsapp-icon {
            width: 28px;
            height: 28px;
        }

        .cta-subtext {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .season-alert {
            background: linear-gradient(135deg, rgba(123, 31, 162, 0.2) 0%, rgba(234, 191, 17, 0.2) 100%);
            border: 1px solid var(--cresima-purple);
            padding: 15px 25px;
            border-radius: 12px;
            margin-top: 30px;
            animation: fadeInUp 0.8s ease 0.8s backwards;
        }

        .season-alert p {
            font-size: 1rem;
            color: var(--text-light);
        }

        .season-alert strong {
            color: var(--accent-gold);
        }

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

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Why Choose Section */
        .why-choose {
            padding: 100px 20px;
            background: var(--bg-section);
            position: relative;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(234, 191, 17, 0.15);
            color: var(--accent-gold);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

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

        .feature-card {
            background: rgba(11, 15, 25, 0.6);
            border: 1px solid rgba(234, 191, 17, 0.1);
            border-radius: 20px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(234, 191, 17, 0.3);
            box-shadow: var(--shadow-gold);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--accent-gold);
        }

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

        /* Packages Section */
        .packages {
            padding: 100px 20px;
            background: var(--bg-dark);
            position: relative;
        }

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

        .package-card {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(11, 15, 25, 0.9));
            border: 2px solid rgba(234, 191, 17, 0.2);
            border-radius: 25px;
            padding: 40px 35px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .package-card.featured {
            border-color: var(--accent-gold);
            transform: scale(1.02);
        }

        .package-card.featured::before {
            content: 'Consigliato';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-gold);
            color: var(--bg-dark);
            padding: 8px 50px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-gold);
        }

        .package-card.featured:hover {
            transform: scale(1.02) translateY(-10px);
        }

        .package-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
        }

        .package-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
        }

        .package-price span {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-muted);
        }

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

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

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

        .check-icon {
            color: #25D366;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .package-features li span {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .package-cta {
            display: block;
            width: 100%;
            text-align: center;
            background: var(--gradient-blue);
            color: white;
            padding: 16px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .package-card.featured .package-cta {
            background: #25D366;
        }

        .package-cta:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(19, 87, 169, 0.4);
        }

        .package-card.featured .package-cta:hover {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        .package-note {
            text-align: center;
            margin-top: 15px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .klarna-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            padding: 15px;
            background: rgba(255, 182, 193, 0.1);
            border: 1px solid rgba(255, 182, 193, 0.3);
            border-radius: 12px;
        }

        .klarna-badge p {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 20px;
            background: var(--bg-section);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

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

        .testimonial-card {
            background: rgba(11, 15, 25, 0.7);
            border: 1px solid rgba(234, 191, 17, 0.1);
            border-radius: 20px;
            padding: 35px;
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(234, 191, 17, 0.3);
            transform: translateY(-5px);
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--accent-gold);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            left: 25px;
            font-family: Georgia, serif;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
            font-style: italic;
        }

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

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--bg-dark);
        }

        .author-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--accent-gold);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 20px;
            background: var(--bg-dark);
        }

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

        .faq-item {
            background: rgba(17, 24, 39, 0.7);
            border: 1px solid rgba(234, 191, 17, 0.1);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(234, 191, 17, 0.3);
        }

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

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

        .faq-icon {
            font-size: 1.5rem;
            color: var(--accent-gold);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

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

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

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

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(234, 191, 17, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

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

        .cta-text {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 35px;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .cta-phone {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-top: 20px;
        }

        .cta-address {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(234, 191, 17, 0.2);
        }

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

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

        /* Finalist Badge */
        .finalist-badge {
            background: linear-gradient(135deg, rgba(234, 191, 17, 0.2) 0%, rgba(218, 37, 29, 0.2) 100%);
            border: 1px solid var(--accent-gold);
            border-radius: 12px;
            padding: 20px;
            margin: 40px auto 0;
            max-width: 400px;
        }

        .finalist-badge p {
            font-size: 1rem;
            color: var(--text-light);
        }

        .finalist-badge strong {
            color: var(--accent-gold);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid rgba(234, 191, 17, 0.1);
        }

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

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

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* ===== HEADER ===== */
        .site-header {
            background: rgba(11, 15, 25, 0.95);
            padding: 15px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
            backdrop-filter: blur(10px);
        }

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

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


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

        .staff-tv-section {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(11, 15, 25, 0.9) 100%);
            border-radius: 25px;
            padding: 40px 25px;
            margin: 0 auto;
            max-width: 900px;
            border: 1px solid rgba(234, 191, 17, 0.2);
        }

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

        .staff-tv-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(22px, 4vw, 32px);
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.3;
        }

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

        .staff-tv-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 25px;
            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: 12px;
            margin-bottom: 25px;
        }

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

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

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

        .staff-tv-feature {
            background: rgba(11, 15, 25, 0.6);
            padding: 20px 15px;
            border-radius: 12px;
            border: 1px solid rgba(234, 191, 17, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .staff-tv-feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
            border-color: rgba(234, 191, 17, 0.3);
        }

        .staff-tv-feature-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }

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

        .staff-tv-feature-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

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

        .staff-tv-video-card {
            background: rgba(11, 15, 25, 0.6);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(234, 191, 17, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

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

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

        .staff-tv-video-card p {
            color: var(--text-muted);
            font-size: 12px;
            margin-bottom: 12px;
        }

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

        .staff-tv-video-card a:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-gold);
        }

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

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

        .video-container:hover {
            border-color: rgba(234, 191, 17, 0.4);
        }

        .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 ===== */
        .klarna-img {
            max-width: 200px;
            margin: 0 auto 10px;
            display: block;
            border-radius: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 80px 15px 50px;
            }

            .trust-badges {
                gap: 15px;
            }

            .trust-badge {
                font-size: 0.85rem;
            }

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

            .package-card.featured {
                transform: none;
            }

            .package-card.featured:hover {
                transform: translateY(-10px);
            }

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

            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }

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

            .corrida-section {
                padding: 60px 15px;
            }

            .video-section {
                padding: 60px 15px;
            }
        }
    