:root {
    --bg-main: #0f172a;
    --bg-card: #1e293b;
    --primary: #3b82f6; /* Global Primary Blue */
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
}
body { background: var(--bg-main); color: var(--text-white); font-family: 'Poppins', sans-serif; overflow-x: hidden; }
/* --- HERO SECTION --- */
.tvc-hero {
    position: relative; height: 90vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
/* FIXED Parallax Video Background */
.video-bg-wrap { position: fixed; top:0; left:0; width:100%; height:100vh; z-index:0; pointer-events: none; }
.hero-video { width:100%; height:100%; object-fit:cover; opacity: 0.4; filter: contrast(1.1); }
.overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.95) 100%); z-index: 1; }
.relative-z { position: relative; z-index: 2; width: 100%; }
.pulse-tag {
    display: inline-block; padding: 8px 16px; background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--primary); color: #93c5fd; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; display: inline-block; }
.hero-sub { font-size: 1.15rem; color: #cbd5e1; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.btn-group-hero { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.glow-effect {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); 
    border: none; background: linear-gradient(90deg, #3b82f6, #2563eb);
}
.glow-effect:hover { box-shadow: 0 0 30px rgba(59, 130, 246, 0.7); transform: translateY(-2px); }
/* --- ABOUT SECTION --- */
.section { padding: 80px 0; }
.sub-tag { color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.highlight { color: var(--primary); }
.about-box { max-width: 800px; margin: 0 auto; }
.about-box h2 { font-size: 2.5rem; margin-bottom: 20px; }
.lead-text { font-size: 1.2rem; color: white; margin-bottom: 20px; line-height: 1.8; }
.about-box p { color: var(--text-muted); line-height: 1.7; }
/* --- WORKFLOW (Film Strip) --- */
.bg-darker { background: #0b1120; }
.sec-header.centered { text-align: center; margin-bottom: 60px; }
.film-strip-wrapper { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
}
.film-frame {
    background: var(--bg-card); padding: 30px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
    transition: 0.3s;
}
.film-frame:hover { border-color: var(--primary); transform: translateY(-5px); }
/* Film Holes Effect */
.film-frame::before {
    content: ''; position: absolute; top: 0; left: 10px; width: 10px; height: 100%;
    background-image: linear-gradient(to bottom, #0f172a 50%, transparent 50%);
    background-size: 10px 20px; opacity: 0.3;
}
.film-frame::after {
    content: ''; position: absolute; top: 0; right: 10px; width: 10px; height: 100%;
    background-image: linear-gradient(to bottom, #0f172a 50%, transparent 50%);
    background-size: 10px 20px; opacity: 0.3;
}
.frame-num {
    font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.03); position: absolute; right: 20px; top: 10px;
}
.frame-content { position: relative; z-index: 1; padding: 0 20px; }
.frame-content h3 { font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: white; }
.frame-content h3 i { color: var(--primary); }
.frame-content p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* --- WHY IT WORKS --- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.why-card {
    text-align: center; padding: 30px 20px; background: rgba(59, 130, 246, 0.05); border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1); transition: 0.3s;
}
.why-card:hover { background: rgba(59, 130, 246, 0.1); transform: scale(1.05); border-color: var(--primary); }
.why-card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.why-card h4 { font-size: 1rem; margin: 0; color: white; }
/* --- PERFECT FOR --- */
.pill-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
.pill {
    padding: 12px 30px; background: var(--bg-card); border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
    color: white; font-weight: 500; transition: 0.3s;
}
.pill:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
/* --- CTA --- */
.cta-strip { padding: 80px 0; background: linear-gradient(180deg, var(--bg-main) 0%, #172554 100%); }
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .film-frame::before, .film-frame::after { display: none; } /* Remove film strip decoration on mobile for space */
}