/* ==========================================================================
   AL-REFAEI & PARTNERS - LUXURY CORPORATE VIDEO SHOWCASE & CINEMA ENGINE
   Modern Corporate + SaaS Walkthrough Styling (100% Screen & Voice Focused)
   ========================================================================== */

:root {
    --corp-navy-dark: #070d18;
    --corp-navy: #0d1b2a;
    --corp-navy-light: #1b2a47;
    --corp-gold: #c9a45c;
    --corp-gold-light: #e5c378;
    --corp-gold-dark: #a07840;
    --corp-gold-glow: rgba(201, 164, 92, 0.4);
    --corp-surface: rgba(13, 27, 42, 0.85);
    --corp-border: rgba(201, 164, 92, 0.25);
    --corp-text: #f0f4f8;
    --corp-text-muted: #94a3b8;
}

/* ==========================================================================
   1. HOME PAGE SHOWCASE SECTION
   ========================================================================== */
.corporate-video-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 20%, #15253b 0%, #080e1a 60%, #050810 100%);
    overflow: hidden;
    color: var(--corp-text);
    border-top: 1px solid rgba(201, 164, 92, 0.15);
    border-bottom: 1px solid rgba(201, 164, 92, 0.15);
}

.corporate-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(201, 164, 92, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    pointer-events: none;
}

.corp-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(201, 164, 92, 0.12);
    border: 1px solid rgba(201, 164, 92, 0.35);
    color: var(--corp-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.corp-badge-pill .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: corpDotPulse 1.8s infinite;
}

@keyframes corpDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.corp-sec-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 18px;
    color: #ffffff;
}

.corp-sec-title span {
    background: linear-gradient(135deg, #e5c378 0%, #c9a45c 50%, #dfb76c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.corp-sec-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--corp-text-muted);
    margin-bottom: 30px;
}

.corp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.corp-highlight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.corp-highlight-card:hover {
    background: rgba(201, 164, 92, 0.08);
    border-color: rgba(201, 164, 92, 0.3);
    transform: translateY(-2px);
}

.corp-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201, 164, 92, 0.15);
    color: var(--corp-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.corp-highlight-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #e2e8f0;
}

/* Video Teaser Card */
.corp-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #0d1b2a;
    border: 1px solid var(--corp-border);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 164, 92, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.corp-video-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.9), 0 0 55px rgba(201, 164, 92, 0.3);
    border-color: rgba(201, 164, 92, 0.6);
}

.corp-video-preview {
    position: relative;
    height: 380px;
    background: linear-gradient(135deg, #091322 0%, #172c47 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.corp-video-preview-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: saturate(1.2) contrast(1.1);
    transition: transform 0.6s ease;
}

.corp-video-card:hover .corp-video-preview-bg {
    transform: scale(1.05);
}

.corp-video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13, 27, 42, 0.4) 0%, rgba(7, 13, 24, 0.88) 100%);
}

.corp-play-btn-large {
    position: relative;
    z-index: 5;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dfb76c 0%, #c9a45c 100%);
    color: #070d18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.6), 0 15px 30px rgba(0, 0, 0, 0.4);
    animation: corpPlayPulse 2.5s infinite;
    transition: all 0.3s ease;
}

.corp-video-card:hover .corp-play-btn-large {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ffffff 0%, #dfb76c 100%);
    color: #0d1b2a;
}

@keyframes corpPlayPulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.7); }
    70% { box-shadow: 0 0 0 28px rgba(201, 164, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 164, 92, 0); }
}

.corp-video-meta-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 6;
}

.corp-duration-tag {
    background: rgba(7, 13, 24, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(6px);
}

.corp-quality-tag {
    background: rgba(201, 164, 92, 0.2);
    border: 1px solid rgba(201, 164, 92, 0.4);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--corp-gold-light);
    letter-spacing: 0.5px;
}

.corp-video-footer-strip {
    padding: 18px 24px;
    background: rgba(13, 27, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.corp-audio-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 164, 92, 0.15);
    border: 1px solid rgba(201, 164, 92, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   2. INTERACTIVE CINEMA THEATER MODAL
   ========================================================================== */
.corp-theater-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(3, 7, 14, 0.96);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corp-theater-modal.active {
    display: flex;
    opacity: 1;
}

.corp-theater-container {
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    max-height: 820px;
    background: #070d18;
    border: 1px solid var(--corp-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(201, 164, 92, 0.2);
    position: relative;
}

/* Theater Header */
.corp-theater-header {
    height: 60px;
    background: rgba(13, 27, 42, 0.95);
    border-bottom: 1px solid rgba(201, 164, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
}

.corp-theater-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.corp-theater-brand img {
    height: 32px;
    object-fit: contain;
}

.corp-theater-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.corp-theater-title .corp-live-pill {
    padding: 3px 8px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.corp-theater-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.corp-theater-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.corp-theater-btn:hover {
    background: var(--corp-gold);
    color: #070d18;
    border-color: var(--corp-gold);
    transform: scale(1.05);
}

/* Theater Stage */
.corp-theater-stage {
    flex: 1;
    position: relative;
    background: #030710;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scene Container */
.corp-scene-viewport {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.corp-scene {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.corp-scene.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

/* Scene Content Boxes */
.corp-scene-frame {
    width: 100%;
    max-width: 980px;
    background: rgba(13, 27, 42, 0.94);
    border: 1px solid var(--corp-border);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    position: relative;
}

/* Simulated Browser Chrome */
.corp-sim-browser {
    width: 100%;
    height: 100%;
    max-height: 520px;
    background: #0b1524;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.corp-sim-header {
    height: 38px;
    background: #112035;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 12px;
}

.corp-sim-dots {
    display: flex;
    gap: 6px;
}

.corp-sim-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.corp-sim-dots span:nth-child(1) { background: #ef4444; }
.corp-sim-dots span:nth-child(2) { background: #eab308; }
.corp-sim-dots span:nth-child(3) { background: #22c55e; }

.corp-sim-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: #94a3b8;
    font-family: monospace;
    direction: ltr;
}

.corp-sim-body {
    flex: 1;
    overflow-y: auto;
    background: #080f1a;
    position: relative;
    padding: 22px;
}

/* Simulated Cursor */
.corp-sim-cursor {
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23c9a45c' stroke='%23ffffff' stroke-width='1.5'><polygon points='3 3 10 22 13 14 21 11 3 3'/></svg>") no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.corp-click-ripple {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--corp-gold-light);
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    pointer-events: none;
    z-index: 9998;
    animation: corpRippleAnim 0.6s ease-out forwards;
}

@keyframes corpRippleAnim {
    0% { transform: translate(-50%, -50%) scale(0.2); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Audio Wave Visualizer Overlay (No images) */
.corp-audio-wave-overlay {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 95;
    pointer-events: none;
}

.corp-audio-wave-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(7, 13, 24, 0.85);
    border: 1px solid var(--corp-border);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.corp-audio-wave-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--corp-gold-light);
}

/* Equalizer animation */
.corp-live-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.corp-live-equalizer span {
    width: 3px;
    background: var(--corp-gold-light);
    border-radius: 2px;
    height: 4px;
    transition: height 0.15s ease;
}

.corp-live-equalizer.active span:nth-child(1) { animation: eqBar 0.8s ease-in-out infinite 0.1s; }
.corp-live-equalizer.active span:nth-child(2) { animation: eqBar 0.6s ease-in-out infinite 0.2s; }
.corp-live-equalizer.active span:nth-child(3) { animation: eqBar 0.9s ease-in-out infinite 0.0s; }
.corp-live-equalizer.active span:nth-child(4) { animation: eqBar 0.7s ease-in-out infinite 0.3s; }
.corp-live-equalizer.active span:nth-child(5) { animation: eqBar 0.5s ease-in-out infinite 0.15s; }

@keyframes eqBar {
    0%, 100% { height: 4px; }
    50% { height: 16px; background: #ffffff; }
}

/* Subtitles Bar */
.corp-subtitles-bar {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 24px;
    max-width: 820px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.corp-subtitles-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

/* Theater Control Bar */
.corp-theater-controls {
    background: rgba(10, 18, 30, 0.98);
    border-top: 1px solid rgba(201, 164, 92, 0.2);
    padding: 12px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

/* Timeline scrubber */
.corp-timeline-wrap {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: height 0.2s ease;
}

.corp-timeline-wrap:hover {
    height: 12px;
}

.corp-timeline-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #a07840 0%, #c9a45c 50%, #dfb76c 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 12px var(--corp-gold-glow);
    transition: width 0.1s linear;
}

.corp-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.corp-controls-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.corp-btn-play-theater {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--corp-gold);
    color: #070d18;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(201, 164, 92, 0.4);
}

.corp-btn-play-theater:hover {
    background: #fff;
    transform: scale(1.08);
}

.corp-time-display {
    font-size: 14px;
    font-weight: 700;
    color: #cbd5e1;
    font-family: monospace;
}

.corp-time-display span {
    color: var(--corp-gold-light);
}

/* Scene Chapters Quick Bar */
.corp-chapters-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0;
    scrollbar-width: none;
}

.corp-chapters-bar::-webkit-scrollbar {
    display: none;
}

.corp-chapter-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.corp-chapter-chip:hover {
    background: rgba(201, 164, 92, 0.15);
    color: #fff;
    border-color: rgba(201, 164, 92, 0.3);
}

.corp-chapter-chip.active {
    background: var(--corp-gold);
    color: #070d18;
    border-color: var(--corp-gold);
    font-weight: 700;
}

.corp-controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.corp-ctrl-icon-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.corp-ctrl-icon-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   3. SCENE SPECIFIC STYLES (NO PRESENTER PHOTOS)
   ========================================================================== */

/* Scene 1: Grand Intro */
.scene-intro-hero {
    text-align: center;
    max-width: 800px;
}

.scene-intro-logo {
    width: 190px;
    filter: drop-shadow(0 0 30px rgba(201, 164, 92, 0.4));
    margin-bottom: 25px;
    animation: corpFloat 4s ease-in-out infinite;
}

@keyframes corpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.scene-intro-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 164, 92, 0.15);
    border: 1px solid var(--corp-gold);
    border-radius: 30px;
    color: var(--corp-gold-light);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.scene-intro-title {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.scene-intro-subtitle {
    font-size: 18px;
    color: #cbd5e1;
}

/* Scene 2: About Us Cards */
.scene-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.scene-about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.scene-about-card.highlight {
    background: rgba(201, 164, 92, 0.12);
    border-color: var(--corp-gold);
    transform: scale(1.03);
}

.scene-about-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--corp-gold-light);
    margin-bottom: 6px;
}

.scene-about-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.scene-about-card p {
    font-size: 12px;
    color: var(--corp-text-muted);
    margin: 0;
}

/* Scene 3: Departments */
.scene-depts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 15px;
}

.scene-dept-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.scene-dept-box.active-dept {
    background: rgba(201, 164, 92, 0.15);
    border-color: var(--corp-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(201, 164, 92, 0.2);
}

.scene-dept-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 164, 92, 0.2);
    color: var(--corp-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.scene-dept-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.scene-dept-box p {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

/* Scene 4: Managers & Board (Clean Avatar Icons) */
.scene-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 15px;
}

.scene-team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.scene-team-card.featured {
    border-color: var(--corp-gold);
    background: rgba(201, 164, 92, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.scene-team-avatar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 2px solid var(--corp-gold);
    background: rgba(201, 164, 92, 0.15);
    color: var(--corp-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.scene-team-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
}

.scene-team-card .role {
    font-size: 12px;
    font-weight: 600;
    color: var(--corp-gold-light);
    margin: 0 0 4px 0;
}

.scene-team-card .dept {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

/* Scene 5: Training Department */
.scene-training-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 15px;
}

.scene-training-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scene-training-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.scene-training-item i {
    color: var(--corp-gold-light);
    font-size: 18px;
}

.scene-training-item h5 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Scene 6: Training Supervisor */
.scene-supervisor-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--corp-border);
    border-radius: 18px;
    padding: 24px;
    margin-top: 15px;
}

.scene-supervisor-avatar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--corp-gold);
    background: rgba(201, 164, 92, 0.15);
    color: var(--corp-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
}

.scene-supervisor-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
}

.scene-supervisor-details .badge-role {
    display: inline-block;
    background: rgba(201, 164, 92, 0.2);
    color: var(--corp-gold-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.scene-supervisor-duties {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.scene-supervisor-duty {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: #cbd5e1;
}

/* Scene 7: Platform Tour */
.scene-platform-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.scene-step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.scene-step-num {
    position: absolute;
    top: -12px;
    right: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--corp-gold);
    color: #070d18;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene-step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 6px;
}

.scene-step-card p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

/* Scene 8: Outro & Contacts */
.scene-outro-wrap {
    text-align: center;
    max-width: 850px;
}

.scene-contacts-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.scene-contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--corp-border);
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scene-contact-pill:hover {
    background: var(--corp-gold);
    color: #070d18;
    border-color: var(--corp-gold);
}

.scene-contact-pill i {
    color: var(--corp-gold-light);
}

.scene-contact-pill:hover i {
    color: #070d18;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .corp-highlights-grid {
        grid-template-columns: 1fr;
    }
    .corp-sec-title {
        font-size: 30px;
    }
    .corp-video-preview {
        height: 300px;
    }
    .scene-depts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .scene-team-grid {
        grid-template-columns: 1fr;
    }
    .scene-training-split {
        grid-template-columns: 1fr;
    }
    .scene-platform-steps {
        grid-template-columns: 1fr;
    }
}
