/* Page-specific styles for industries/commercials.html */
/* Commercial Production Color Palette - Cinema Inspired */
        :root {
            --cm-charcoal: #1A1A1A;
            --cm-charcoal-light: #2D2D2D;
            --cm-red: #C41E3A;
            --cm-red-dark: #9B1B30;
            --cm-red-light: #E63950;
            --cm-gold: #D4AF37;
            --cm-gold-light: #E5C868;
            --cm-cream: #FAF9F7;
            --cm-warm: #F5F3F0;
            --cm-silver: #8A8A8A;
        }

        /* Reset & Base */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--cm-cream);
            color: var(--cm-charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 500;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
        h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

        p {
            font-size: 1.1rem;
            max-width: 65ch;
        }

        em {
            font-style: italic;
            color: var(--cm-red);
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 4rem;
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(20px);
            padding: 1rem 4rem;
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
        }

        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-logo span {
            color: var(--cm-gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--cm-gold);
        }

        .nav-cta {
            background: var(--cm-red) !important;
            color: white !important;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
        }

        .nav-cta:hover {
            background: var(--cm-red-dark) !important;
            transform: translateY(-2px);
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-mobile svg {
            width: 28px;
            height: 28px;
            stroke: white;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cm-charcoal);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        /* Hero Section - Cinematic */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--cm-charcoal);
            position: relative;
            overflow: hidden;
            padding: 8rem 4rem 6rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%),
                radial-gradient(ellipse at 30% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Film grain effect */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            opacity: 0.5;
        }

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

        .hero-badge {
            display: inline-block;
            background: var(--cm-gold);
            color: var(--cm-charcoal);
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
        }

        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .hero h1 em {
            color: var(--cm-red-light);
            font-style: italic;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 1.5rem;
            line-height: 1.7;
        }

        .hero-credit {
            color: var(--cm-gold);
            font-size: 1rem;
            font-style: italic;
            margin-bottom: 2.5rem;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--cm-red);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
        }

        .hero-cta:hover {
            background: var(--cm-red-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
        }

        /* Content Sections */
        .section {
            padding: 6rem 4rem;
        }

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

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

        /* Section Header */
        .section-header {
            margin-bottom: 4rem;
        }

        .section-header.centered {
            text-align: center;
        }

        .section-badge {
            display: inline-block;
            background: var(--cm-red);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .section-badge.gold {
            background: var(--cm-gold);
            color: var(--cm-charcoal);
        }

        .section-badge.charcoal {
            background: var(--cm-charcoal);
        }

        /* Process Section */
        .process {
            background: var(--cm-cream);
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 8%;
            right: 8%;
            height: 2px;
            background: linear-gradient(90deg, var(--cm-red), var(--cm-gold));
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--cm-charcoal);
            color: var(--cm-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .process-step h4 {
            color: var(--cm-charcoal);
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }

        .process-step p {
            color: var(--cm-silver);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0 auto;
            max-width: 150px;
        }

        /* Philosophy Section */
        .philosophy {
            background: var(--cm-charcoal);
            color: white;
        }

        .philosophy-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .philosophy-text h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .philosophy-text h2 em {
            color: var(--cm-gold);
        }

        .philosophy-text p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .philosophy-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 3rem;
        }

        .philosophy-card h3 {
            color: var(--cm-gold);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .philosophy-card p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .credit-line {
            color: var(--cm-gold);
            font-style: italic;
            font-size: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
        }

        /* Industries Grid */
        .industries {
            background: var(--cm-warm);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .industry-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(196, 30, 58, 0.15);
            border-color: var(--cm-red);
        }

        .industry-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--cm-red) 0%, var(--cm-red-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }

        .industry-card h4 {
            color: var(--cm-charcoal);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .industry-card p {
            color: var(--cm-silver);
            font-size: 0.9rem;
            margin: 0 auto;
        }

        /* Capabilities Grid */
        .capabilities {
            background: var(--cm-cream);
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .capability-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--cm-red);
        }

        .capability-card h4 {
            color: var(--cm-charcoal);
            margin-bottom: 1rem;
        }

        .capability-card p {
            color: var(--cm-silver);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, var(--cm-red) 0%, var(--cm-red-dark) 100%);
            padding: 5rem 4rem;
            text-align: center;
        }

        .quote-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-style: italic;
            color: white;
            line-height: 1.5;
            margin-bottom: 2rem;
        }

        .quote-attribution {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }

        /* FAQ Section */
        .faq {
            background: var(--cm-warm);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--cm-charcoal);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--cm-red);
        }

        .faq-question span {
            font-size: 1.5rem;
            color: var(--cm-red);
            transition: transform 0.3s ease;
        }

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

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

        .faq-answer.active {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--cm-silver);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: var(--cm-charcoal);
            padding: 5rem 4rem;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-content h2 em {
            color: var(--cm-gold);
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            margin: 0 auto 2rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--cm-red);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: var(--cm-red-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
        }

        /* Footer */
        .footer {
            background: #0D0D0D;
            color: white;
            padding: 4rem;
        }

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

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-brand h3 span {
            color: var(--cm-gold);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-badge {
            display: inline-block;
            background: rgba(196, 30, 58, 0.2);
            color: var(--cm-red-light);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .footer-column h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-column a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--cm-gold);
        }

        .footer-bottom {
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            margin: 0 auto;
        }

        /* Animations */
        [data-animate] {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-animate].visible {
            opacity: 1;
            transform: translateY(0);
        }

        [data-animate="scale"] {
            transform: scale(0.95);
        }

        [data-animate="scale"].visible {
            transform: scale(1);
        }

        [data-animate="slide-left"] {
            transform: translateX(-50px);
        }

        [data-animate="slide-left"].visible {
            transform: translateX(0);
        }

        [data-animate="slide-right"] {
            transform: translateX(50px);
        }

        [data-animate="slide-right"].visible {
            transform: translateX(0);
        }

        /* Staggered animations for grid items */
        .videos-grid .video-item:nth-child(1) { transition-delay: 0.1s; }
        .videos-grid .video-item:nth-child(2) { transition-delay: 0.2s; }
        .videos-grid .video-item:nth-child(3) { transition-delay: 0.3s; }

        .process-steps .process-step:nth-child(1) { transition-delay: 0.1s; }
        .process-steps .process-step:nth-child(2) { transition-delay: 0.2s; }
        .process-steps .process-step:nth-child(3) { transition-delay: 0.3s; }
        .process-steps .process-step:nth-child(4) { transition-delay: 0.4s; }

        .platforms-grid > *:nth-child(1) { transition-delay: 0.05s; }
        .platforms-grid > *:nth-child(2) { transition-delay: 0.1s; }
        .platforms-grid > *:nth-child(3) { transition-delay: 0.15s; }
        .platforms-grid > *:nth-child(4) { transition-delay: 0.2s; }
        .platforms-grid > *:nth-child(5) { transition-delay: 0.25s; }
        .platforms-grid > *:nth-child(6) { transition-delay: 0.3s; }

        .faq-list .faq-item:nth-child(1) { transition-delay: 0.1s; }
        .faq-list .faq-item:nth-child(2) { transition-delay: 0.15s; }
        .faq-list .faq-item:nth-child(3) { transition-delay: 0.2s; }
        .faq-list .faq-item:nth-child(4) { transition-delay: 0.25s; }

        /* Hero staggered entrance */
        .hero .hero-badge { transition-delay: 0s; }
        .hero h1 { transition-delay: 0.1s; }
        .hero .hero-subtitle { transition-delay: 0.2s; }
        .hero .hero-credit { transition-delay: 0.3s; }
        .hero .hero-cta { transition-delay: 0.4s; }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav {
                padding: 1.5rem 2rem;
            }

            .nav.scrolled {
                padding: 1rem 2rem;
            }

            .nav-links {
                display: none;
            }

            .nav-mobile {
                display: block;
            }

            .mobile-menu {
                display: flex;
            }

            .section {
                padding: 4rem 2rem;
            }

            .hero {
                padding: 6rem 2rem 4rem;
            }

            .process-timeline {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .process-timeline::before {
                display: none;
            }

            .philosophy-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .footer-main {
                grid-template-columns: 1fr;
            }
        }

        /* Featured Videos Section */
        .featured-videos {
            background: var(--cm-charcoal);
            padding: 5rem 0;
        }

        .featured-videos .section-header h2 {
            color: white;
        }

        .featured-videos .section-badge {
            background: var(--cm-red);
            color: white;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-item {
            background: var(--cm-charcoal-light);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
            background: #000;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .video-placeholder:hover {
            background: rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            z-index: 1;
        }

        .video-placeholder:hover .play-icon {
            transform: scale(1.1);
        }

        .play-icon {
            width: 64px;
            height: 64px;
            color: var(--cm-white);
            transition: transform 0.3s ease;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
        }

        .video-placeholder span {
            margin-top: 0.75rem;
            color: var(--cm-white);
            font-size: 0.875rem;
            opacity: 0.8;
            letter-spacing: 0.05em;
        }

        /* Hyper-Local Ad Placement Section */
        .ad-placement {
            background: linear-gradient(135deg, var(--cm-charcoal) 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }

        .ad-placement::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='%23ffffff' fill-opacity='0.02'%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.5;
        }

        .ad-placement .container {
            position: relative;
            z-index: 1;
        }

        .ad-placement-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .ad-placement-text h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .ad-placement-text h2 em {
            color: var(--cm-gold);
        }

        .ad-placement-text p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .ad-placement-text p strong {
            color: var(--cm-gold);
        }

        .ad-benefits {
            display: grid;
            gap: 1.5rem;
        }

        .ad-benefit {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.75rem;
            transition: all 0.3s ease;
        }

        .ad-benefit:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
            border-color: var(--cm-gold);
        }

        .ad-benefit-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
        }

        .ad-benefit-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--cm-gold) 0%, #c4a747 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .ad-benefit h4 {
            color: white;
            font-size: 1.15rem;
            margin: 0;
        }

        .ad-benefit p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .streaming-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .streaming-logos span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 900px) {
            .ad-placement-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }

        .video-caption {
            padding: 1.5rem;
            color: white;
        }

        .video-caption h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--cm-gold);
        }

        .video-caption p {
            font-size: 0.9rem;
            color: var(--cm-silver);
            margin: 0;
        }

        @media (max-width: 900px) {
            .videos-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
        }
