
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
            --text-muted: #9ca3af;
            --gradient-gold: linear-gradient(135deg, #eabf11 0%, #f5d442 50%, #eabf11 100%);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

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

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

        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.85rem;
        }

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

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

        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 8px;
            color: var(--text-muted);
        }

        .breadcrumb li:last-child {
            color: var(--accent-gold);
        }

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

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 20% 50%, rgba(19, 87, 169, 0.15) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 80%, rgba(234, 191, 17, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }

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

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

        .hero-badge svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-gold);
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            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;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 5px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

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

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--bg-dark);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(234, 191, 17, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .btn svg {
            width: 20px;
            height: 20px;
        }

        /* Decorative elements */
        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 50%;
            animation: sparkle 2s ease-in-out infinite;
        }

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

        /* Problem Section */
        .problem-section {
            padding: 100px 0;
            background: var(--bg-section);
            position: relative;
        }

        .section-label {
            display: inline-block;
            color: var(--accent-red);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 20px;
            line-height: 1.3;
        }

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

        .problem-card {
            background: rgba(218, 37, 29, 0.05);
            border: 1px solid rgba(218, 37, 29, 0.2);
            border-radius: 16px;
            padding: 30px;
            transition: transform 0.3s;
        }

        .problem-card:hover {
            transform: translateY(-5px);
        }

        .problem-icon {
            width: 50px;
            height: 50px;
            background: rgba(218, 37, 29, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .problem-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--accent-red);
        }

        .problem-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

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

        /* Solution Section */
        .solution-section {
            padding: 100px 0;
            background: var(--bg-dark);
        }

        .solution-label {
            color: var(--accent-gold);
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .solution-card {
            background: linear-gradient(135deg, rgba(19, 87, 169, 0.1) 0%, rgba(234, 191, 17, 0.05) 100%);
            border: 1px solid rgba(234, 191, 17, 0.2);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            border-color: rgba(234, 191, 17, 0.4);
            box-shadow: 0 20px 40px rgba(234, 191, 17, 0.1);
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .solution-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--bg-dark);
        }

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

        .solution-card p {
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .solution-features {
            list-style: none;
        }

        .solution-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .solution-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* Timing Section */
        .timing-section {
            padding: 100px 0;
            background: var(--bg-section);
        }

        .timing-section .section-label {
            color: var(--primary-blue);
        }

        .timeline {
            margin-top: 60px;
            position: relative;
        }

        .timeline::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-gold));
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {
            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: row;
                padding-left: 50px;
            }
        }

        .timeline-content {
            width: calc(50% - 40px);
            background: rgba(19, 87, 169, 0.1);
            border: 1px solid rgba(19, 87, 169, 0.3);
            border-radius: 16px;
            padding: 30px;
        }

        @media (max-width: 768px) {
            .timeline-content {
                width: 100%;
            }
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            border-radius: 50%;
            border: 4px solid var(--bg-section);
            z-index: 2;
        }

        @media (max-width: 768px) {
            .timeline-dot {
                left: 20px;
            }
        }

        .timeline-time {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .timeline-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }

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

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

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .package-card {
            background: var(--bg-section);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

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

        .package-card.featured::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
        }

        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-gold);
            color: var(--bg-dark);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .package-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .package-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }

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

        .package-desc {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

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

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

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

        .package-features li svg {
            width: 20px;
            height: 20px;
            fill: var(--accent-gold);
            flex-shrink: 0;
        }

        .package-cta {
            width: 100%;
            text-align: center;
            justify-content: center;
        }

        .klarna-note {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background: rgba(19, 87, 169, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(19, 87, 169, 0.2);
        }

        .klarna-note p {
            color: var(--text-muted);
        }

        .klarna-note strong {
            color: var(--primary-blue);
        }

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

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

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

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

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

        .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-weight: 600;
            color: var(--bg-dark);
            font-size: 1.1rem;
        }

        .author-info h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 3px;
        }

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

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

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

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

        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

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

        .faq-question {
            width: 100%;
            padding: 25px 30px;
            background: var(--bg-section);
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 1.05rem;
            font-weight: 500;
            text-align: left;
            font-family: 'Inter', sans-serif;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(17, 24, 39, 0.8);
        }

        .faq-question svg {
            width: 24px;
            height: 24px;
            fill: var(--accent-gold);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

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

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

        .faq-answer-content {
            padding: 25px 30px;
            color: var(--text-muted);
            line-height: 1.8;
            background: rgba(17, 24, 39, 0.5);
        }

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

        .final-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(234, 191, 17, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

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

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

        .final-cta p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .whatsapp-cta {
            background: #25D366;
            color: white;
            font-size: 1.1rem;
            padding: 18px 40px;
        }

        .whatsapp-cta:hover {
            background: #20bd5a;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }

        .contact-info {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            fill: var(--accent-gold);
        }

        /* Footer */
        .footer {
            padding: 30px 0;
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

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

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

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        .floating-whatsapp svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

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

        .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 / STAFF TV SECTION ===== */
        .corrida-section {
            background: var(--bg-section);
            padding: 80px 0;
        }

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

        .staff-tv-badge {
            display: inline-block;
            background: var(--gradient-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-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            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-muted);
            margin-bottom: 30px;
            line-height: 1.7;
            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: 12px;
            border: 2px solid rgba(234, 191, 17, 0.2);
            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: 25px;
        }

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

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

        .staff-tv-feature-icon { font-size: 32px; margin-bottom: 12px; }
        .staff-tv-feature-title { font-size: 14px; font-weight: 700; color: var(--accent-gold); margin-bottom: 8px; }
        .staff-tv-feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

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

        .staff-tv-video-card {
            background: rgba(11, 15, 25, 0.6);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 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: 15px; font-weight: 700; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
        .staff-tv-video-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 15px; }

        .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: 25px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .staff-tv-video-card a:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(234, 191, 17, 0.3);
        }

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

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

        .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) {
            .site-header {
                padding: 12px 0;
            }

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

            .hero {
                min-height: auto;
                padding: 80px 0 60px;
            }

            .hero-stats {
                gap: 25px;
            }

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

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