/* ==========================================================================
   GLOBAL TYPOGRAPHY TOKENS (FORCED OVERRIDES)
   ========================================================================== */

:root {
    --display: "Bebas Neue", sans-serif;
    --sans: "Inter", sans-serif;
    --mono: "JetBrains Mono", monospace;
    --serif: "Fraunces", serif;
}

/* 1. Smash Global Base Body Resets */
body, html {
    font-family: var(--sans) !important;
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased !important;
}

/* 2. Force Uppercase Display Headlines (Headlines, Prices, Package Titles) */
h1, h2, h3, h4, h5, h6,
.price, 
.package-title, 
#resultTitle, 
#secondaryTitle,
.metric-val,
.director-top h2 {
    font-family: var(--display) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* 3. Force Tech System Badges (Labels, Badges, Codes, Counters, Dates) */
.badge, 
.director-number, 
.timeline-number-box, 
.step-meta, 
.discount-code, 
#discountCode,
.metric-lbl,
.director-mini,
#discountValidity,
.secondary-label {
    font-family: var(--mono) !important;
    letter-spacing: 2px !important;
}

/* 4. Force Interactive Inputs (Buttons, Forms, CTAs) */
button, 
input, 
select, 
textarea, 
.director-btn, 
.reminder-inline-btn,
.whatsapp-btn,
#unlockBtn {
    font-family: var(--sans) !important;
}

/* 5. Force Editorial Accents (The "Based on your answers..." line) */
.editorial-accent, 
.quiz-subtitle-accent,
.quiz-step p em {
    font-family: var(--serif) !important;
    font-style: italic !important;
}

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

html {
    scroll-behavior: smooth;
} 

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    /* 🚀 Pushes main page content exactly down below your fixed 80px navigation line */
    padding-top: 80px !important; 
}

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

/* ==========================================================================
   🚀 COMPACT, PREMIUM NAVIGATION BAR ENGINE
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* FIXED HEIGHT ARCHITECTURE: Locks the bar row securely to 80px on desktop screens */
    height: 80px !important;
    min-height: 80px !important;
    z-index: 999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0; 
    height: 100%; /* Forces the wrapper container to stay centered within the 80px bar */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

/* Base image rendering setup to boost clarity */
.logo a img {
    height: auto;
    display: block;
    object-fit: contain; 
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 🚀 DEFAULT DESKTOP VISIBILITY SWITCHES */
.logo .logo-desktop {
    display: block !important;
    width: 120px;
    padding-top: 20px; /* Keeps your wide logo at a perfect footprint on desktop */
}

.logo .logo-mobile {
    display: none !important; /* Completely hides the mobile icon badge on desktop viewports */
}

.logo h2 {
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo h2 span {
    color: #ff000f;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #cfcfcf;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-btn {
    background: #ff000f;
    color: #fff;
    padding: 14px 28px;
    
    /* 1. REMOVE THE ROUNDED CORNERS AND BORDERS */
    border-radius: 0px !important; 
    border: none !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    
    /* 2. MAKE IT A PARALLELOGRAM (Tilt it by -12 degrees) */
    transform: skewX(-12deg); 
    
    display: inline-flex; 
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* 3. SKEW THE TEXT INSIDE BACK TO NORMAL SO IT'S PERFECTLY READABLE */
.nav-btn > * {
    transform: skewX(12deg); 
    display: inline-block;
}

.nav-btn .small-text {
    font-size: 0.75em; /* Adjust as needed */
    opacity: 0.9;      /* Optional */
    vertical-align: middle;
    font-style: italic;
}

/* 4. PREMIUM HOVER INTERACTION LOOK */
.nav-btn:hover {
    background: #ff1a1a; /* Brighter accent red on hover */
    transform: skewX(-12deg) translateY(-2px); /* Lifts up slightly while maintaining shape */
    box-shadow: 0 6px 20px rgba(255, 0, 15, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 🚀 ONLY TARGET DESKTOP FOR INDIVIDUAL FLEX ALIGNMENTS (Prevents Mobile Spills) */
@media (min-width: 769px) {
    .nav-menu, 
    .nav-links, 
    .navbar-nav {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ==========================================================================
   FLUID MOBILE VIEWPORT & HAMBURGER SAFETY ENGINE (SCREENS 768px & BELOW)
   ========================================================================== */
/* ==========================================================================
   FLUID MOBILE VIEWPORT & HAMBURGER SAFETY ENGINE (SCREENS 768px & BELOW)
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        height: 70px !important;
        min-height: 70px !important;
    }
    
    body {
        padding-top: 70px !important;
    }

    /* 🛑 HIDES the wide desktop layout file completely on mobile views */
    .logo .logo-desktop {
        display: none !important;    
    }

    /* ✅ SHOWS your custom cropped mobile emblem asset at your exact 100px size */
    .logo .logo-mobile {
        display: block !important;   
        width: 100px !important;      
        max-width: 100px !important;
        height: auto;
    }

    /* RESTORES YOUR ORIGINAL HAMBURGER TOGGLE CONTROLS */
    .nav-menu, 
    .nav-links, 
    .navbar-nav {
        height: auto;
    }
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
   
    background-size:cover;
    background-position:center;
    padding-top:0px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(255,0,0,0.12),
    transparent 60%);
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1200px;
    padding-right:120px;
}

.tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:40px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgb(153, 1, 1);
    margin-bottom:35px;
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:red;
}

.hero h1{
    font-size:70px;
    line-height:0.95;
    font-weight:900;
    margin-bottom:30px;
    max-width:1200px;
    
}

.gray-text{
    color:#fff;
}

.red-text{
    color:#ff000f;
}

.hero p{
    font-size:20px;
    line-height:1.6;
    color:#d2d2d2;
    max-width:980px;
    margin-bottom:45px;
}

/* ================= HERO BUTTONS ================= */

.hero-buttons{

    display:flex;

    flex-direction:row !important;

    align-items:center;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

/* BUTTONS */

.hero-btn{

    height:58px;

    padding:0 34px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    text-decoration:none;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:0.35s ease;

}

/* PRIMARY */

.hero-btn-primary{

    background:#ff000f;

    color:#fff;

}

.hero-btn-primary  span{

    font-size: 12px;
    font-style: italic;

}

/* SECONDARY */

.hero-btn-secondary{

    border:1px solid rgba(255,255,255,0.25);

    background:transparent;

    color:#fff;

}

/* SMALL TEXT */

.hero-small-text{

    width:100%;

    margin-top:2px;

    color:#999;

    font-size:14px;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .hero-buttons{

        flex-direction:column !important;

        align-items:stretch;

        gap:14px;

    }

    .hero-btn{

        width:100%;

        justify-content:center;

        height:56px;

    }

    .hero-small-text{

        text-align:center;

        margin-top:16px;

    }

}
/* ================= HERO STATS ================= */

.hero-stats{
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.stat-box{
    padding:42px 40px;
    border-right:1px solid rgba(255,255,255,0.06);
}

.stat-box:last-child{
    border-right:none;
}

.stat-box h2{
    font-size:52px;
    font-weight:900;
    color:#ff000f;
    line-height:1;
    margin-bottom:10px;
}

.stat-box p{
    font-size:15px;
    line-height:1.5;
    color:#bdbdbd;
    text-transform:uppercase;
    letter-spacing:0.5px;
    max-width:240px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

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

    .stat-box:nth-child(2){
        border-right:none;
    }

    .stat-box{
        border-bottom:1px solid rgba(255,255,255,0.06);
    }

}

@media(max-width:768px){

    .hero-stats{
        grid-template-columns:1fr;
        margin-top:60px;
    }

    .stat-box{
        border-right:none;
        padding:32px 20px;
    }

    .stat-box h2{
        font-size:52px;
    }

    .stat-box p{
        font-size:13px;
        max-width:100%;
    }

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .nav-links{
        display:none;
    }

    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .hero{
        padding-top:50px;
        padding-bottom:80px;
    }

    .hero h1{
        font-size:62px;
    }

    .hero p{
        font-size:22px;
    }

    .hero-btn{
        width:100%;
        justify-content:center;
        font-size:18px;
        padding:18px 25px;
    }
@media(max-width:768px){

    .hero-content{
        padding-right:0;
        
    }

}
}

@media(max-width:768px){

    .container{
        width:92%;
    }

    .hero{
        min-height:auto;
    }

    .hero h1{
        font-size:48px;
        line-height:1.05;
    }

    .hero p{
        font-size:17px;
        line-height:1.7;
    }

    .tag{
        font-size:11px;
        padding:10px 16px;
        gap:8px;
    }

    .hero-btn{
        font-size:16px;
        padding:16px 22px;
    }

    .small-text{
        font-size:14px;
    }

    .logo img{
        height:40px;
    }

}
@media(max-width:992px){

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000;
        flex-direction:column;
        padding:25px;
        gap:20px;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:16px;
    }

}


/* ================= MARQUEE STRIP ================= */

.marquee-strip{

    width:100%;

    overflow:hidden;

    background: #e31e24;

    border-top:2px solid #000;
    border-bottom:2px solid #e31e24;

    padding:18px 0;

    position:relative;

}

/* TRACK */

.marquee-track{

    display:flex;

    width:max-content;

    animation:
    marqueeMove 40s linear infinite;

}

/* TEXT */

.marquee-track span{

    display:flex;

    align-items:center;

    white-space:nowrap;

    padding:0 48px;

    color:#fff;

    font-size:34px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    font-family:'Bebas Neue', sans-serif;

}

/* ANIMATION */

@keyframes marqueeMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .marquee-strip{

        padding:14px 0;

    }

    .marquee-track span{

        font-size:18px;

        padding:0 24px;

        letter-spacing:2px;

    }

}


/* ================= CTA LINK ================= */

.ba-cta-link{

    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:0px;

    color:#fff;

    text-decoration:none;

    font-size:15px;
    font-weight:500;

    transition:0.3s ease;

}

.ba-cta-link span{

    transition:0.3s ease;

}

/* HOVER */

.ba-cta-link:hover{

    color:#ff000f;

}

.ba-cta-link:hover span{

    transform:translateX(5px);

}


/* ================= SECTION ================= */

.ba-section{

    padding:30px 0;

    background:#000;

}

/* ================= TOP ================= */

.ba-top-text{

    margin-bottom:40px;

}

.ba-top-text span{

    color:#ff000f;

    font-size:11px;

    letter-spacing:3px;

    font-weight:900;

    text-transform:normal;

}

.ba-top-text h2{

    margin-top:18px;

    font-size:36px;

    line-height:1;

    color:#fff;

    max-width:900px;

    font-weight:900;

}

.ba-top-text h2 span{

    color:#ff000f;

    display:inline;

    font-size:inherit;

    letter-spacing:0;

}

.ba-top-text p{

    margin-top:20px;

    color:#fff;

    font-size:15px;

}

/* ================= SLIDER ================= */

.ba-slider{

    position:relative;

    width:100%;

    height:550px;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(0,0,0,0.15);

    background:#ddd;

}

/* BOTH IMAGES */

.ba-before-img,
.ba-after-img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    user-select:none;

    pointer-events:none;

}

/* AFTER */

.ba-after-img{

    z-index:1;

}

/* BEFORE WRAPPER */


/* --- UPDATED SLIDER HANDLE TRACK LINE --- */
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #FFFFFF;
    z-index: 5;
    transform: translateX(-50%);
    cursor: ew-resize;
    /* Added subtle shadow outline to guarantee bar separation over any bright pixel regions */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* --- OPTIMIZED WRAPPER CONTAINER TO REPLACE BORDER-RIGHT OVERLAP CLIPPING --- */
.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: none !important; /* Strips structural container line out to prevent double outlines */
}

/* CENTER BUTTON */

.ba-handle span{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    width:56px;
    height:56px;

    border-radius:50%;

    background:#ff000f;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:24px;

    color:#fff;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.18);

}

/* LABELS */

.ba-label{

    position:absolute;

    top:18px;

    z-index:10;

    padding:8px 14px;

    border-radius:30px;

    font-size:10px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;
      transition:
    opacity .25s ease;

}

.ba-label.before{

    left:18px;

    background:#000;

    color:#fff;

}

.ba-label.after{

    right:18px;

    background:#ff000f;

    color:#fff;

}





@media(max-width:768px){

    .ba-section{

        padding:70px 0;

    }

    .ba-top-text h2{

        font-size:38px !important;

        line-height:1.1;

        letter-spacing:-1px;

    }

    .ba-top-text p{

        font-size:14px;

    }

    .ba-slider{

        height:240px;

        border-radius:18px;

    }

    .ba-after-img,
    .ba-before-img{

        object-fit:cover;

    }

    .ba-handle span{

        width:42px;
        height:42px;

        font-size:18px;

    }

    .ba-label{

        padding:6px 6px;

        font-size:7px;

        letter-spacing:1px;

    }

}


/* ================= BOTTOM ================= */

.ba-bottom-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:28px;

}

.ba-box span{

    color:#ff000f;

    font-size:11px;

    letter-spacing:3px;

    font-weight:700;

}

.ba-box p{

    margin-top:14px;

    color:#333;

    line-height:1.9;

    font-size:15px;

}


/* ================= FILMMAKER SECTION ================= */

.filmmaker-section{
    background:#fff;
    padding:120px 0;
    border-top:1px solid rgba(255,255,255,0.06);
}

.filmmaker-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:35px;
}

.filmmaker-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.filmmaker-section h2{
    font-size:55px;
    line-height:1.08;
    font-weight:900;
    color:#000;
    margin-bottom:50px;
}

.filmmaker-section h2 span{
    color:#ff000f;
}

.filmmaker-content{
    max-width:980px;
}

.quote{
    font-size:18px;
    line-height:1.7;
    color:#000;
    font-style:italic;
    font-weight:400;
    margin-bottom:35px;
}

.founder{
    color:#000;
    font-size:16px;
    margin-bottom:55px;
}

.film-note{
    display:flex;
    align-items:flex-start;
    gap:22px;
}

.film-note span{
    width:5px;
    min-width:5px;
    height:58px;
    background:#ff000f;
}

.film-note p{
    color:#000;
    font-size:18px;
    line-height:1.7;
}

.film-note strong{
    font-weight:800;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .filmmaker-section h2{
        font-size:62px;
    }

    .quote{
        font-size:21px;
    }

}

@media(max-width:768px){

    .filmmaker-section{
        padding:80px 0;
    }

    .filmmaker-section h2{
        font-size:42px;
        line-height:1.15;
        margin-bottom:35px;
    }

    .quote{
        font-size:18px;
        line-height:1.9;
    }

    .founder{
        font-size:16px;
        margin-bottom:40px;
    }

    .film-note{
        gap:16px;
    }

    .film-note p{
        font-size:18px;
        line-height:1.8;
    }

    .film-note span{
        height:50px;
    }

    .filmmaker-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}


/* ================= FRAMEWORK SECTION ================= */

.framework-section{
    background:#000;
    padding:20px 0;
}

.framework-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:35px;
}

.framework-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.framework-section h2{
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:80px;
    max-width:1200px;
}

.framework-section h2 span{
    color:#ff000f;
}

.framework-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.framework-card{
    background:#f6f6f6;
    border:1px solid #dddddd;
    border-radius:22px;
    padding:42px 34px;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* HOVER EFFECT */

.framework-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ff000f;
    transform:scaleX(0);
    transform-origin:left;
    transition:0.4s;
}

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

.framework-card:hover{
    transform:translateY(-10px);
    background:#ffffff;
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.framework-number{
    font-size:26px;
    font-weight:900;
    color:#ff000f;
    margin-bottom:28px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    line-height:1;
}

.framework-number span{
    font-size:18px;
    letter-spacing:2px;
    font-weight:700;
}

.framework-card p{
    font-size:18px;
    line-height:1.8;
    color:#222;
    margin-bottom:28px;
}

.framework-card h4{
    font-size:16px;
    line-height:1.7;
    color:#000;
    font-weight:800;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

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

    .framework-section h2{
        font-size:58px;
    }

}

@media(max-width:768px){

    .framework-section{
        padding:20px 0;
    }

    .framework-section h2{
        font-size:40px;
        line-height:1.18;
        margin-bottom:45px;
    }

    .framework-card{
        padding:32px 24px;
    }

    .framework-number{
        font-size:48px;
    }

    .framework-number span{
        font-size:16px;
    }

    .framework-card p{
        font-size:16px;
    }

    .framework-card h4{
        font-size:16px;
    }

    .framework-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    background:#000;
    padding:50px 0;
}

.testimonial-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:35px;
}

.testimonial-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.testimonial-section h2{
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:70px;
    max-width:1100px;
}

.testimonial-section h2 span{
    color:#ff000f;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial-card{
    background:#050505;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:34px 28px;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* HOVER EFFECT */
.testimonial-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 99%;
    height: 99%;
    border: 2px solid #ff000f;
    transform: scale(0);
    transition: 0.4s ease;
    pointer-events: none;
}


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

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,0,15,0.25);
    box-shadow:0 20px 45px rgba(255,0,15,0.08);
}

.stars{
    color:#ff000f;
    font-size:22px;
    letter-spacing:4px;
    margin-bottom:28px;
}

.testimonial-card p{
    color:#d9d9d9;
    font-size:16px;
    line-height:1.7;
    margin-bottom:38px;
}

.testimonial-user{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:24px;
}
/* ================= TRUSTED BY ================= */

.trusted-by-wrap{

    margin-top:50px;

    padding-top:40px;

    border-top:
    1px solid rgba(255,255,255,0.08);

}

/* TITLE */

.trusted-title{

    display:block;

    color:#7f7f7f;

    font-size:12px;

    letter-spacing:4px;

    font-weight:900;

    margin-bottom:28px;

}

/* LIST */

.trusted-list{

    display:flex;

    flex-wrap:wrap;

    gap:40px;

}

/* ITEMS */

.trusted-list span{

    color:#5f5f5f;

    font-size:14px;

    font-weight:900;

    transition:0.3s ease;

}

.trusted-list span:hover{

    color:#fff;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .trusted-by-wrap{

        margin-top:60px;

    }

    .trusted-list{

        gap:22px;

    }

    .trusted-list span{

        font-size:20px;

    }

}
/* ================= TESTIMONIAL USER ================= */

.testimonial-user h4{

    color:#fff;

    font-size:16px;

    margin-bottom:10px;

    font-weight:700;

}

/* ROLE */

.testimonial-role{

    display:block;

    color:#8f8f8f;

    font-size:14px;

    margin-bottom:20px;

}

/* LINK */

.testimonial-link{

    display:inline-flex;
    align-items:center;

    gap:8px;

    color:#ff000f;

    text-decoration:none;

    font-size:13px;

    font-weight:300;

    transition:0.3s ease;

}

.testimonial-link:hover{

    opacity:0.75;

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

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

    .testimonial-section h2{
        font-size:58px;
    }

}

@media(max-width:768px){

    .testimonial-section{
        padding:10px 0;
    }

    .testimonial-section h2{
        font-size:40px;
        line-height:1.18;
        margin-bottom:45px;
    }

    .testimonial-card{
        padding:28px 22px;
    }

    .testimonial-card p{
        font-size:16px;
        line-height:1.8;
    }

    .testimonial-user h4{
        font-size:18px;
    }

    .testimonial-user span{
        font-size:13px;
    }

    .stars{
        font-size:18px;
    }

    .testimonial-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}



/* ================= VIDEO CONTENT ================= */

.video-content{
    position:absolute;

    left:45px;
    bottom:38px;

    z-index:3;

    max-width:820px;
}

.video-content span{
    color:#ff000f;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;

    display:block;

    margin-bottom:14px;
}

.video-content p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
}

/* ================= BOTTOM TEXT ================= */

.showcase-bottom-text{
    text-align:center;
    margin-top:28px;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.showcase-bottom-text strong{
    color:#000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .showcase-section h2{
        font-size:54px;
    }

    .showcase-video{
        min-height:560px;
    }

}

@media(max-width:768px){

    .showcase-section{
        padding:80px 0;
    }

    .showcase-section h2{
        font-size:40px;
        line-height:1.15;
        margin-bottom:40px;
    }

    .showcase-video{
        min-height:360px;
        border-radius:18px;
    }

    .video-content{
        left:24px;
        right:24px;
        bottom:22px;
    }

    .video-content p{
        font-size:14px;
        line-height:1.7;
    }

    .play-button{
        width:78px;
        height:78px;
        font-size:24px;
    }

    .play-button::before{
        width:100px;
        height:100px;
    }

    .showcase-bottom-text{
        font-size:14px;
        margin-top:20px;
    }

}


/* ================= PACKAGE FINDER SECTION ================= */

.package-section{
    position:relative;
    background:#000;
    padding:140px 0;
    overflow:hidden;
    text-align:center;
}

.package-overlay{
    position:absolute;
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    width:1000px;
    height:500px;
    background:radial-gradient(circle,
    rgba(255,0,15,0.28),
    rgba(255,0,15,0.05),
    transparent 70%);
    filter:blur(10px);
}

.package-section .container{
    position:relative;
    z-index:2;
    max-width:950px;
}

.package-tag{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:35px;
}

.package-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.package-section h2{
    font-size:84px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:35px;
}

.package-section h2 span{
    color:#ff000f;
}

.package-desc{
    color:#d1d1d1;
    font-size:28px;
    line-height:1.7;
    max-width:900px;
    margin:0 auto 55px;
}

/* BUTTON */

.package-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    background:#ff000f;
    color:#fff;
    text-decoration:none;
    padding:24px 48px;
    border-radius:60px;
    font-size:24px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 0 35px rgba(255,0,15,0.28);
}

.package-btn:hover{
    transform:translateY(-5px) scale(1.02);
    box-shadow:0 15px 45px rgba(255,0,15,0.35);
}

/* SMALL TEXT */

.package-small-text{
    margin-top:28px;
    color:#bcbcbc;
    font-size:17px;
    line-height:1.7;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .package-section h2{
        font-size:62px;
    }

    .package-desc{
        font-size:22px;
    }

}

@media(max-width:768px){

    .package-section{
        padding:90px 0;
    }

    .package-section h2{
        font-size:42px;
        line-height:1.18;
        margin-bottom:25px;
    }

    .package-desc{
        font-size:17px;
        line-height:1.9;
        margin-bottom:35px;
    }

    .package-btn{
        width:100%;
        font-size:18px;
        padding:18px 24px;
    }

    .package-small-text{
        font-size:14px;
        line-height:1.8;
        padding:0 10px;
    }

    .package-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}

/* ================= PACKAGE FINDER SECTION ================= */

.package-section{
    position:relative;
    background:#000;
    padding:140px 0;
    overflow:hidden;
    text-align:center;
}

.package-overlay{
    position:absolute;
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    width:1000px;
    height:500px;
    background:radial-gradient(circle,
    rgba(255,0,15,0.28),
    rgba(255,0,15,0.05),
    transparent 70%);
    filter:blur(10px);
}

.package-section .container{
    position:relative;
    z-index:2;
    max-width:950px;
}

.package-tag{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:35px;
}

.package-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.package-section h2{
    font-size:60px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:35px;
}

.package-section h2 span{
    color:#ff000f;
}

.package-desc{
    color:#d1d1d1;
    font-size:22px;
    line-height:1.7;
    max-width:900px;
    margin:0 auto 55px;
}

/* BUTTON */

.package-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    background:#ff000f;
    color:#fff;
    text-decoration:none;
    padding:24px 48px;
    border-radius:60px;
    font-size:20px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 0 35px rgba(255,0,15,0.28);
}

.package-btn:hover{
    transform:translateY(-5px) scale(1.02);
    box-shadow:0 15px 45px rgba(255,0,15,0.35);
}

/* SMALL TEXT */

.package-small-text{
    margin-top:28px;
    color:#bcbcbc;
    font-size:17px;
    line-height:1.7;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .package-section h2{
        font-size:62px;
    }

    .package-desc{
        font-size:22px;
    }

}

@media(max-width:768px){

    .package-section{
        padding:90px 0;
    }

    .package-section h2{
        font-size:42px;
        line-height:1.18;
        margin-bottom:25px;
    }

    .package-desc{
        font-size:17px;
        line-height:1.9;
        margin-bottom:35px;
    }

    .package-btn{
        width:100%;
        font-size:18px;
        padding:18px 24px;
    }

    .package-small-text{
        font-size:14px;
        line-height:1.8;
        padding:0 10px;
    }

    .package-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}

/* ================= AUDIENCE SECTION ================= */

.audience-section{
    background:#f3f3f3;
    padding:50px 0;
}

.audience-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:30px;
}

.audience-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.audience-section h2{
    font-size:54px;
    line-height:1.08;
    font-weight:900;
    color:#000;
    margin-bottom:25px;
}

.audience-section h2 span{
    color:#ff000f;
}

.audience-subtext{
    color:#555;
    font-size:22px;
    line-height:1.7;
    margin-bottom:60px;
}

/* ================= AUDIENCE GRID ================= */

.audience-grid{

    display:grid;

    grid-template-columns:
    repeat(2, 1fr);

    gap:24px;

    margin-top:60px;

}

/* CARD */

.audience-card{

    background:#fff;

    border:1px solid rgba(0,0,0,0.08);

    border-radius:24px;

    padding:34px;

    transition:0.35s ease;

    cursor:pointer;

}

/* HOVER */

.audience-card:hover{

    transform:translateY(-8px);

    border-color:#ff000f;

    box-shadow:
    0 18px 45px rgba(0,0,0,0.08);

}

/* TOP */

.audience-top{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:28px;

}

/* ICON */

.audience-icon{

    font-size:34px;

}

/* TITLE */

.audience-top h3{

    font-size:20px;

    color:#000;

    font-weight:700;

}

/* HEADING */

.audience-card h4{

    font-size:16px;

    line-height:1.35;

    color:#111;

    margin-bottom:20px;

    font-weight:700;

}

/* TEXT */

.audience-card p{

    color:#555;

    font-size:16px;

    line-height:1.8;

}

/* LINE */

.audience-line{

    width:100%;
    height:1px;

    background:
    rgba(0,0,0,0.08);

    margin:30px 0 22px;

}

/* TAG */

.audience-tag{

    color:#ff000f;

    font-size:12px;

    letter-spacing:1px;

    font-weight:700;

}

/* ================= BOTTOM LINK ================= */

.audience-bottom-link{

    display:inline-flex;

    align-items:center;

    flex-wrap:wrap;

    gap:8px;

    margin-top:40px;

    color:#444;

    text-decoration:none;

    font-size:14px;

}

.audience-bottom-link span{

    color:#000;

    font-weight:600;

    transition:0.3s ease;

}

.audience-bottom-link:hover span{

    color:#ff000f;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .audience-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .audience-card{

        padding:26px;

    }

    .audience-top h3{

        font-size:24px;

    }

    .audience-section h2{

        font-size:30px;

    }

    .audience-card h4{

        font-size:22px;

    }

    .audience-card p{

        font-size:15px;

    }

    .audience-tag{

        font-size:11px;

        letter-spacing:2px;

    }

    .audience-bottom-link{

        font-size:15px;

    }

}



/* ================= DIRECTOR CUT SECTION ================= */

/* ==========================================================================
   DIRECTOR SECTION — CONNECTIVE TIMELINE DESIGN
   ========================================================================== */

.director-section {
    background: #000000;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

.director-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 15, 0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.director-section .container {
    position: relative;
    z-index: 2;
    max-width: 950px; /* Kept concise for better cinematic layout readability */
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= TOP INTERFACE ================= */
.director-top { max-width: 900px; }
.director-mini {
    color: #ff000f;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
}
.director-top h2 {
    color: #ffffff;
    font-size: 64px;
    line-height: 1.1;
    margin-top: 18px;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1.5px;
}
.director-top h2 span { color: #ff000f; }
.director-sub {
    color: #bdbdbd;
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.4;
}
.director-text {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.9;
}
.director-manifesto-badge {
    display: inline-flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 25px;
    padding: 18px 24px;
    background: linear-gradient(90deg, rgba(255, 0, 15, 0.05) 0%, rgba(10, 9, 8, 0.4) 100%);
    border: 1px solid rgba(255, 0, 15, 0.2);
    border-radius: 4px; /* Crisp, tech-focused geometry edges matching reference layout */
    color: #e5efe6;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    box-shadow: inset 0 0 12px rgba(255, 0, 15, 0.03), 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Iconic left-side premium border indicator accent */
.director-manifesto-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: #ff000f;
    box-shadow: 0 0 10px #ff000f;
}

/* Subtle micro-interactive lift when hover states trigger */
.director-manifesto-badge:hover {
    border-color: rgba(255, 0, 15, 0.4);
    background: linear-gradient(90deg, rgba(255, 0, 15, 0.08) 0%, rgba(15, 15, 15, 0.6) 100%);
    box-shadow: inset 0 0 16px rgba(255, 0, 15, 0.05), 0 8px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}
/* =====================================================
   CINEMATIC DUAL-TONE PUNCHLINE STYLE WITH UNDERLINE
===================================================== */
.director-top h3 {
    margin-top: 30px;
    color: #ffffff;             /* Crisp cinematic white baseline text */
    font-size: 56px;
    line-height: 1.2;
    font-weight: 900;           /* Maximum heavy structural weight */
    font-family: 'Impact', 'Arial Black', sans-serif; /* Loud, commercial typography profile */
    text-transform: uppercase;  /* Forces absolute authority */
    letter-spacing: -0.01em;    /* Perfectly tracked headline width */
    
    position: relative;
    display: inline-block;
    padding-bottom: 18px;       /* Breathing space for the underline */
}

/* 🚀 THE GLOWING CITY ACCENT POINT */
.director-top h3 .accent-glow {
    font-style: italic;
    color: #ff000f;             /* Signature YFI Red */
    text-shadow: 0 0 15px rgba(255, 0, 15, 0.5),
                 0 0 30px rgba(255, 0, 15, 0.25);
}

/* 🚀 THE HIGH-CONTRAST UNDERLINE ACCENT BAR */
.director-top h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;               /* Clean, asymmetric horizontal length */
    height: 6px;                /* Thick, bold industrial bar profile */
    background: #ff000f;        /* Matches the glowing red tone */
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 0, 15, 0.4); /* Subtle ambient spill */
}

/* ================= MOBILE OPTIMIZATION MATRIX ================= */
@media (max-width: 768px) {
    .director-top h3 {
        font-size: 38px;        /* Prevents text clipping on tablet viewports */
        padding-bottom: 14px;
    }
    .director-top h3::after {
        width: 80px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .director-top h3 {
        font-size: 28px;        /* Crisp, readable scaling for small mobile screens */
        padding-bottom: 12px;
    }
    .director-top h3::after {
        width: 60px;
        height: 4px;
    }
}
.director-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 30px 0;
}

.director-process-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
     font-family: var(--display) !important;
}
.director-process-title span { color: #ff000f; }

/* ================= CONNECTIVE TIMELINE TRACK SYSTEM ================= */
.director-timeline-container {
    position: relative;
    padding-left: 80px; /* Space for the timeline line and numbers */
    margin-top: 40px;
}

/* The vertical connecting track line */
.timeline-line {
    position: absolute;
    left: 24px; /* Center aligned with the 50px number boxes */
    top: 0;
    bottom: 40px; /* Stops short at the last content element block */
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.timeline-step {
    position: relative;
    padding-bottom: 60px; /* Space between steps */
}

.timeline-step:last-child {
    padding-bottom: 0;
}

/* The Red Boxed Counter Box */
.timeline-number-box {
    position: absolute;
    left: -80px; /* Push back left inside the track axis padding zone */
    top: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #ff000f;
    background: #000000;
    color: #ff000f;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 2px; /* Sharp minimal look matching screenshot layout */
}

/* Timeline text block */
.timeline-content {
    position: relative;
    top: -4px; /* Align top lines nicely with the border numbers box */
}

.step-meta {
    color: #ff000f;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.timeline-content p {
    color: #999999;
    font-size: 16px;
    line-height: 1.8;
    max-width: 750px;
    margin-bottom: 20px;
}

/* The Large Metric Labels underneath descriptive paragraphs */
.step-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 15px;
}

.metric-val {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.metric-lbl {
    color: #555555;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* =========================================================
   YFI STUDIOS — DIRECTOR'S CUT LUXURY EDITORIAL SYSTEM CARD
========================================================= */

/* Core Container Wrapper Background Styling */
.directors-cut-showcase {
    background-color: #0A0908 !important; /* Matte black base canvas block background */
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* --- UPPER INDEPENDENT META TIMING UNIT --- */
.delivery-meta-badge {
    text-align: center;
    margin-bottom: 40px;
}

.meta-days-count {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 48px;
    line-height: 1;
    color: #F5EBDD; /* Warm cream primary typography code tone value */
    letter-spacing: 0.02em;
}

.meta-days-label {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: #9C958A; /* Dim tertiary label value context color link */
    margin-top: 8px;
    text-transform: uppercase;
}

/* --- MAIN HIGH-END INTERIOR EDITORIAL FRAME LAYOUT --- */
.editorial-bordered-card {
    background: #131210; /* Elevated subtle panel background matrix layout */
    border: 1px solid rgba(245, 235, 221, 0.05); /* Faint micro hairline definition edge border */
    padding: 48px 32px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* --- STRUCTURAL ACCENT DECORATIVE CORNER FRAME BRACKETS --- */
.frame-bracket {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #ff1a1a; /* Brand core contrast viral accent red tone layer */
}

.bracket-tl {
  top: 1370px;
    left: 13px;
    border-right: none !important;
    border-bottom: none !important;
}

.bracket-br {
    bottom: -10px;
    right: 13px;
    border-left: none !important;
    border-top: none !important;
}

/* --- CARD INTRO MINI EYEBROW ENTRY LINE ROW --- */
.card-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.eyebrow-dash-line {
    width: 20px;
    height: 1px;
    background-color: #ff1a1a;
    display: inline-block;
}

.eyebrow-meta-text {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: #ff1a1a;
    font-weight: 500;
}

/* --- CENTER THE HEADLINE GRAPHICS SCREEN PROFILE --- */
.hero-display-headline {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(34px, 7vw, 48px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: #F5EBDD;
    margin: 0 0 36px 0;
    text-transform: uppercase;
}

.italicized-accent-text {
   
    font-style: italic;
    font-weight: 600;
    color: #ff1a1a;
    text-shadow: 0 0 20px rgba(255, 31, 61, 0.22); /* Smooth soft atmospheric glow drop pass layer */
    text-transform: uppercase;
}

/* --- THE DOT SPECIFICATIONS GRID LIST LAYOUT ENGINE --- */
.specifications-bullet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 44px;
    max-width: 440px;
}

.bullet-item {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #9C958A;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    min-width: 140px; /* Forces bullet pairings grid alignment breakdown flow layout */
}

.bullet-dot {
    width: 5px;
    height: 5px;
    background-color: #ff1a1a;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    flex-shrink: 0;
}

/* --- CONVERSION ACTION BUTTON CTA SECTOR CONTROLLER --- */
.cta-action-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.director-btn {
    background-color: #ff000f!important;
    color: #FFFFFF !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    padding: 18px 24px;
    border-radius: 2px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    box-shadow: 0 8px 32px rgba(255, 31, 61, 0.16);
    transition: background-color 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-btn:hover {
    background-color: #FF3D55 !important; /* Brighter accent pop interaction look */
    transform: translateY(-2px);
}

.btn-core-arrow {
    font-size: 16px;
    line-height: 1;
}

.cta-micro-copy {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.16em;
    color: #5A544C; /* Tertiary muted tint tone readability line configuration */
    margin: 0;
    text-transform: uppercase;
}

/* =========================================================
   RESPONSIVE BREAKPOINT INTERFACE ADAPTABILITY OVERRIDES
========================================================= */

@media (max-width: 480px) {
    .editorial-bordered-card {
        padding: 40px 20px; /* Soft padding adjustment for tighter modern screen canvas edges */
    }
    
    .specifications-bullet-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .bullet-item {
        min-width: 100%;
    }
    
    .director-btn {
        padding: 16px 20px;
        font-size: 12px;
    }
}
/* ================= MOBILE ADAPTATION SYSTEM ================= */
@media(max-width: 768px) {
    .director-section { padding: 70px 0; }
    .director-top h2 { font-size: 42px; }
    .director-top h3 { font-size: 28px; }
    
    .director-timeline-container {
        padding-left: 50px; /* Narrower line layout space for tight viewports */
    }
    .timeline-line {
        left: 15px;
    }
    .timeline-number-box {
        left: -50px;
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-width: 1px;
    }
    .timeline-content h4 { font-size: 20px; }
    .timeline-content p { font-size: 15px; }
    .metric-val { font-size: 26px; }
}

/* ================= FAQ SECTION ================= */

.faq-section{
    background:#f3f3f3;
    padding:50px 0;
}

.faq-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:30px;
}

.faq-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

.faq-section h2{
    font-size:58px;
    line-height:1.08;
    font-weight:900;
    color:#000;
    margin-bottom:70px;
}

.faq-section h2 span{
    color:#ff000f;
}

/* FAQ WRAPPER */

.faq-wrapper{
    border-top:1px solid #d8d8d8;
}

/* FAQ ITEM */

.faq-item{
    border-bottom:1px solid #d8d8d8;
    padding:30px 0;
}

/* QUESTION */

.faq-question{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    cursor:pointer;
}

.faq-question h3{
    font-size:18px;
    color:#000;
    font-weight:800;
    line-height:1.4;
}

.faq-icon{
    color:#ff000f;
    font-size:18px;
    transition:0.3s;
}

/* ANSWER */

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

.faq-answer p{
    color:#555;
    font-size:16px;
    line-height:1.9;
    padding-top:25px;
    max-width:1000px;
}

/* ACTIVE */

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

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

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .faq-section h2{
        font-size:58px;
    }

    .faq-question h3{
        font-size:28px;
    }

}

@media(max-width:768px){

    .faq-section{
        padding:20px 0;
    }

    .faq-section h2{
        font-size:40px;
        line-height:1.18;
        margin-bottom:45px;
    }

    .faq-question h3{
        font-size:20px;
        line-height:1.5;
    }

    .faq-answer p{
        font-size:16px;
        line-height:1.8;
        padding-top:18px;
    }

    .faq-item{
        padding:22px 0;
    }

    .faq-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}

/* ================= FINAL CTA SECTION ================= */

.final-cta-section{
    position:relative;
    background:#000;
    padding:50px 0;
    overflow:hidden;
    text-align:center;
}

/* BACKGROUND GLOW */

.final-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(255,0,15,0.14),
    transparent 65%);
    z-index:1;
}

/* OPTIONAL BACKGROUND IMAGE */

.final-cta-section::before{
    content:'';
    position:absolute;
    inset:0;
  
    background-size:cover;
    background-position:center;
    opacity:0.12;
    z-index:0;
}

.final-cta-section .container{
    position:relative;
    z-index:2;
    max-width:1000px;
}

/* HEADING */

.final-cta-section h2{
    font-size:62px;
    line-height:1.05;
    font-weight:900;
    color:#fff;
    margin-bottom:35px;
}

.final-cta-section h2 span{
    color:#ff000f;
}

/* TEXT */

.final-cta-section p{
    color:#e1e1e1;
    font-size:20px;
    line-height:1.7;
    max-width:900px;
    margin:0 auto 55px;
}

/* BUTTON */

.final-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    background:#ff000f;
    color:#fff;
    text-decoration:none;
    padding:24px 48px;
    border-radius:60px;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 0 35px rgba(255,0,15,0.28);
}

.final-cta-btn:hover{
    transform:translateY(-5px) scale(1.02);
    box-shadow:0 18px 45px rgba(255,0,15,0.35);
}

/* FEATURES */

.final-features{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    margin-top:30px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#d0d0d0;
    font-size:16px;
}

.feature-item i{
    color:#ff000f;
    font-size:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .final-cta-section h2{
        font-size:64px;
    }

    .final-cta-section p{
        font-size:22px;
    }

}

@media(max-width:768px){

    .final-cta-section{
        padding:30px 0;
    }

    .final-cta-section h2{
        font-size:42px;
        line-height:1.18;
        margin-bottom:24px;
    }

    .final-cta-section p{
        font-size:17px;
        line-height:1.9;
        margin-bottom:35px;
    }

    .final-cta-btn{
        width:100%;
        font-size:18px;
        padding:18px 24px;
    }

    .final-features{
        gap:16px;
        flex-direction:column;
        margin-top:24px;
    }

    .feature-item{
        font-size:15px;
    }

}

/* ================= FOOTER SECTION ================= */


.footer-section{

    background:#000;

    padding:
    50px 0 60px;

}
.pain-cta{
    margin-top:25px;
    text-align:center;
}

.quiz-cta-btn{
    display:inline-block;

    padding:14px 26px;
    border-radius:10px;

    background:#ff0000;
    color:#fff;

    font-weight:600;
    font-size:15px;

    text-decoration:none;

    transition:0.3s ease;

    box-shadow:0 10px 25px rgba(255,0,0,0.2);
}


.quiz-cta-btn span{
    font-size: 12px;
    font-style: italic;
}


.quiz-cta-btn:hover{
    background:#cc0000;
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(255,0,0,0.3);
}
/* TAG */

.footer-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:28px;
}

.footer-tag span{
    width:34px;
    height:2px;
    background:#ff000f;
}

/* HEADING */

.footer-section h2{
    font-size:36px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:70px;
}

.footer-section h2 span{
    color:#ff000f;
}

/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:60px;
    margin-bottom:80px;
}

/* TITLE */

.footer-title{
    display:flex;
    align-items:center;
    gap:12px;
    color:#ff000f;
    font-size:16px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:30px;
}

.footer-title i{
    font-size:18px;
}

/* LOCATION */

.footer-box h3{
    color:#fff;
    font-size:18px;
    font-weight:800;
    margin-bottom:22px;
}

.footer-box p{
    color:#d0d0d0;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.footer-small{
    color:#8c8c8c;
    font-size:16px;
}

/* HOURS */

.hours-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.hour-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding-bottom:16px;
}

.hour-item span{
    color:#d4d4d4;
    font-size:14px;
}

.hour-item strong{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

/* CONTACT */

.contact-links{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-links a{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.contact-links a:hover{
    color:#ff000f;
}

.contact-links i{
    font-size:18px;
}

/* RESPONSE BADGE */

.response-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#111;
    padding:14px 22px;
    border-radius:40px;
    margin-top:35px;
    color:#d0d0d0;
    font-size:12px;
}

.response-badge span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ff000f;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* FOOTER LOGO */

/* ==========================================================================
   RAZOR-SHARP VECTOR FOOTER LOGO ENGINE
   ========================================================================== */
.footer-logo {
    display: inline-flex !important;  /* 🚀 Forces them to stay side-by-side on one line */
    align-items: center;
    gap: 18px; 
    user-select: none;
    width: auto;
}

/* THE LEFT EMBLEM IMAGE COMPONENT */
.footer-logo img {
    width: 58px; 
    max-width: 58px;                  /* 🚀 Prevents the image from expanding on mobile screens */
    height: auto;
    display: block;
    flex-shrink: 0;                   /* 🚀 Prevents the graphic from compressing or distorting */
    
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* THE DIGITAL TYPOGRAPHY GRID COLUMN WRAPPER */
.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* MAIN HEADING SPECIFICATIONS */
.footer-logo-text .brand-title {
    color: #ffffff;
    font-size: 16px; 
    font-weight: 800; 
    font-family: 'Inter', sans-serif; 
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* SIGNATURE BRAND RED EMBED */
.footer-logo-text .brand-red {
    color: #ff000f;
    text-shadow: 0 0 10px rgba(255, 0, 15, 0.15);
}

/* TARGET PUNCH TAGLINE SPECIFICATIONS */
.footer-logo-text .brand-subtitle {
    color: #a3a3a3; 
    font-size: 11px; 
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    margin-top: 6px; 
    letter-spacing: 0.28em; 
    text-transform: uppercase;
}

/* ==========================================================================
   FLUID MOBILE DISPLAY RENDERING OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 480px) {
    .footer-logo {
        gap: 12px;                     /* Brings them slightly closer on small phone viewports */
        display: inline-flex !important; /* Re-enforces horizontal row locking on phones */
    }
    
    .footer-logo img {
        width: 42px;                   /* Scales the icon down cleanly on mobile phone screens */
        max-width: 42px !important;
    }
    
    .footer-logo-text .brand-title {
        font-size: 14px;               /* Clean scaling down from 16px desktop text width */
    }
    
    .footer-logo-text .brand-subtitle {
        font-size: 8px;                /* Keeps layout proportional and balanced */
        letter-spacing: 0.22em;
        margin-top: 3px;
    }
}

.footer-logo-text h2{

    color:#fff;
    font-size:28px;
    font-weight:800;
    margin:0;
    line-height:1;

}

.footer-logo-text h2 span{

    color:#ff000f;

}

.footer-logo-text p{

    color:#777;
    font-size:12px;
    letter-spacing:4px;
    margin-top:4px;
    margin-bottom:0;

}
.footer-bottom p{
    color:#8d8d8d;
    font-size:12px;
    line-height: 1.3;
}
.studio-hours{
    color:#fff;
}

.studio-title{
    display:flex;
    align-items:center;
    gap:10px;

    font-weight:700;
    color:red;
    margin-bottom:15px;
}

/* ROW STYLE */
.hours-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.hours-row .left{
    font-weight:500;
}

.hours-row .right{
    font-weight:600;
    text-align:right;
}

/* NOTE TEXT */
.hours-note{
    font-size:13px;
    color:#aaa;

    margin:8px 0 15px 0;
    line-height:1.4;
}

/* MOBILE */
@media(max-width:768px){

    .hours-row{
        flex-direction:column;
        gap:5px;
    }

    .hours-row .right{
        text-align:left;
    }
}
/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .footer-section h2{
        font-size:8px;
    }
    
    .small-text{
        font-size:14px;
    }

    /* FOOTER LOGO */

    .footer-logo{

        display:flex;
        align-items:center;
        gap:10px;
        flex-wrap:wrap;

    }

    .footer-logo img{

        width:322px;
        height:auto;
        flex-shrink:0;

    }

    .footer-logo-text h2{

        font-size:6px;
       
        margin:0;

    }

    .footer-logo-text p{

        font-size:10px;
        letter-spacing:3px;
        margin-top:6px;

    }

}

@media(max-width:768px){

    .footer-section{
        padding:80px 0 35px;
    }

    .footer-section h2{
        font-size:40px;
        line-height:1.18;
        margin-bottom:45px;
    }

    .footer-title{
        font-size:16px;
        margin-bottom:20px;
    }

    .footer-box h3{
        font-size:28px;
    }

    .footer-box p{
        font-size:16px;
        line-height:1.8;
    }

    .footer-small{
        font-size:14px;
    }

    .hour-item{
        flex-direction:column;
        gap:8px;
    }

    .hour-item span,
    .hour-item strong{
        font-size:16px;
    }

    .contact-links a{
        font-size:16px;
    }

    .response-badge{
        font-size:14px;
        padding:12px 18px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom p{
        font-size:14px;
    }

    .footer-tag{
        font-size:12px;
        letter-spacing:3px;
    }

}

/* ================= QUIZ MODAL ================= */


/* CONTAINER */
.quiz-container{
    width:100%;
    max-width:760px;
    background:#0d0d0d;
    border:1px solid rgba(255,255,255,0.08);
    padding:28px;
    position:relative;
    max-height:92vh;
    overflow-y:auto;
}




/* PROGRESS */

.quiz-progress-wrapper{
    width:100%;
    height:4px;
    background:#222;
    margin-bottom:15px;
}

.quiz-progress-bar{
    height:100%;
    width:16%;
    background:#ff000f;
    transition:0.4s;
}


.quiz-step-text{
    color:#ff000f;
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:35px;
    text-align:center;
}

/* STEP */

.quiz-step{
    display:none;
}

.quiz-step.active{
    display:block;
}

.quiz-step small{
    color:#888;
    display:block;
    margin-bottom:20px;
    letter-spacing:2px;
}

.quiz-step h2{
    color:#fff;
    font-size:36px;
    margin-bottom:10px;
    font-weight:900;
    line-height:1.1;
}

/* SUBTEXT */

.quiz-step p{
    color:#bbb;
    margin-bottom:22px;
    font-size:15px;
}

/* OPTIONS */

.quiz-options{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.quiz-option{
    background:#171717;
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    padding:16px;
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
    transition:0.3s;
    font-size:14px;
    width:100%;
    text-align:left;
}

.quiz-option span{
    width:28px;
    height:28px;
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    flex-shrink:0;
}

.quiz-option:hover,
.quiz-option.active{
    border-color:#ff000f;
    background:#1d0b0d;
}

/* BUTTONS */

.quiz-buttons{
    margin-top:25px;
}

.quiz-buttons button{
    padding:14px 22px;
    font-size:12px;
}

/* INPUTS */

.quiz-step input{
    padding:14px;
    margin-bottom:14px;
    font-size:14px;
}


#backBtn{
    background:#111;
    color:#fff;
}

#nextBtn{
    background:#ff000f;
    color:#fff;
}

/* FORM */

.quiz-step input{
    width:100%;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    padding:18px;
    margin-bottom:18px;
    font-size:16px;
}

/* SUBMIT */

.submit-btn,
.whatsapp-btn{
    width:100%;
    background:#ff000f;
    color:#fff;
    border:none;
    padding:18px;
    cursor:pointer;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:15px;
}

/* RESULT */

.result-card{
    padding:18px;
    margin:18px 0;
}

.result-card h3{
    font-size:22px;
}


.result-summary{
    color:#bbb;
    line-height:2;
}

/* MOBILE */

@media(max-width:768px){

    .quiz-container{
        padding:20px;
        max-height:94vh;
    }

    .quiz-step h2{
        font-size:24px;
    }

    .quiz-step p{
        font-size:13px;
        margin-bottom:18px;
    }

    .quiz-option{
        padding:14px;
        font-size:13px;
    }

    .quiz-buttons button{
        padding:12px 18px;
        font-size:11px;
    }

}

.map-btn{

    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:15px;

    background:#ff000f;
    color:#fff;

    text-decoration:none;

    padding:12px 22px;

    border-radius:10px;

    font-size:14px;
    font-weight:600;

    transition:0.3s;

}

.map-btn:hover{

    background:#e0000d;
    transform:translateY(-2px);

}

.hero-buttons{
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* keeps text aligned with button */
    gap: 15px;
}

.small-text{
    font-size: 18px;
    color: #fff;
}

/* ================= STICKY CTA ================= */

/* ================= STICKY CTA ================= */

.sticky-cta{

    position:fixed;

    left:0;
    bottom:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 24px;

    background:#000;

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transition:0.35s ease;

}
/* ACTIVE */

.sticky-cta.active{

    opacity:1;
    visibility:visible;

}

/* ================= QUIZ BUTTON ================= */

.sticky-quiz-btn{

    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#ff000f;
    color:#fff;
       margin-left:142px;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    line-height:1;

    box-shadow:
    0 10px 25px rgba(255,0,15,0.18);

}




/* ================= WHATSAPP ================= */

.sticky-wa-btn{

    width:52px;
    height:52px;

    border-radius:50%;
       margin-right:232px;

    background:#0f0f0f;

    border:1px solid #25D366;

    color:#25D366;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:30px;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .sticky-cta{

        padding:4px 12px;

    }

    .sticky-quiz-btn{

        padding:12px 18px;

        font-size:13px;
         margin-left:0;

    }

    .sticky-wa-btn{

        width:40px;
        height:40px;

        font-size:18px;
         margin-right:0;

    }

}

/* ================= SHOWREEL SECTION ================= */

.showreel-section{

    background:#000;

    padding:10px 0;

}

/* TOP */

.showreel-top{

    margin-bottom:10px;

}

.showreel-mini{

    color:#ff000f;

    font-size:11px;

    letter-spacing:3px;

    font-weight:700;

}

.showreel-top h2{

    color:#fff;

    font-size:68px;
    font-weight: 800;

    line-height:1.05;

    max-width:900px;

    margin-top:18px;
    margin-bottom:20px;

}

.showreel-top h2 span{

    color:#ff000f;

}

.showreel-top p{

    color:#cfcfcf;

    font-size:18px;

}

/* ================= VIDEO CARD ================= */

.showreel-video-card{

    position:relative;
    overflow:hidden;

    border-radius:24px;

    margin-top:45px;

}

/* ==========================================================================
   YOUTUBE-STYLE VIDEO CONTROLS ARCHITECTURE
   ========================================================================== */

.yt-video-container {
    position: relative;
    width: 100%;
    height: 650px; /* Preservation of your layout height */
    background: #000;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
}

.yt-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TOUCH TRACKING LAYER SURFACE */
.yt-interaction-surface {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

/* THE CONTROLS CONTAINER HUD */
.yt-controls-hud {
    position: absolute;
    inset: 0;
    z-index: 3;
    /* Clean vignette mask matrix overlay framing */
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; 
    
    /* Smooth opacity transitions */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ACTIVE STATE CONTROL CLASS */
.yt-controls-hud.hud-visible {
    opacity: 1;
    visibility: visible;
}

/* 🚀 THE BIG CENTRAL PLAY BUTTON ARCHITECTURE (EXACTLY LIKE YOUTUBE) */
.yt-central-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto; /* Active intercept vector tracking */
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background-color 0.2s ease, 
                color 0.2s ease;
}

.yt-central-play-btn:hover {
    background: #ff000f; /* Signature YFI Red on precision center hovers */
    color: #fff;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 15, 0.45);
}

.yt-central-play-btn:active {
    transform: translate(-50%, -50%) scale(0.92);
}

/* HORIZONTAL BOTTOM STRIP */
.yt-bottom-bar {
    width: 100%;
    padding: 15px 25px;
    margin-top: auto; /* Force structural containment flow floor anchors */
    display: flex;
    justify-content: space-between; 
    align-items: center;
    pointer-events: auto; 
}

/* INDIVIDUAL MUTE CONTROL BUTTON */
.yt-hud-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.yt-hud-btn:hover {
    color: #fff;
    background: #ff000f;
    transform: scale(1.1);
}

/* ==========================================================================
   FLUID MOBILE RESPONSIVE ENGINE
   ========================================================================== */
@media (max-width: 1024px) {
    .yt-video-container { height: 500px; }
}

@media (max-width: 768px) {
    .yt-video-container { height: 360px; border-radius: 16px; }
    .yt-bottom-bar { padding: 10px 15px; }
    .yt-central-play-btn { width: 66px; height: 66px; font-size: 22px; }
    .yt-hud-btn { font-size: 16px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
    .yt-video-container { height: 240px; border-radius: 12px; }
    .yt-central-play-btn { width: 56px; height: 56px; font-size: 18px; }
    .yt-hud-btn { font-size: 14px; width: 34px; height: 34px; }
}
/* ==========================================================================
   MOBILE SOUND NOTIFICATION BADGE
   ========================================================================== */
.mobile-sound-alert {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 15, 0.85); /* Signature YFI Red */
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 4;
    pointer-events: none; /* Passes touches straight to the video container surface */
    box-shadow: 0 4px 15px rgba(255, 0, 15, 0.4);
    display: none; /* Hidden on desktop screens by default */
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: translateX(-50%) scale(1); opacity: 0.9; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 0.9; }
}

/* Show the audio alert button badge only on small mobile viewports */
@media (max-width: 768px) {
    .mobile-sound-alert.alert-active {
        display: block;
    }
}
/* NOTE */

.video-note{

    margin-top:16px;

    color:#8f8f8f;

    font-size:16px;

}

/* ================= FORMAT TITLE ================= */

.format-title{

    margin-top:60px;
    margin-bottom:25px;

    color:#bdbdbd;

    font-size:13px;

    letter-spacing:3px;

    font-weight:700;

}

/* ================= GRID ================= */

/* ================= FORMAT GRID ================= */

.format-grid{

    display:grid;

    grid-template-columns:
    repeat(3, 1fr);

    gap:22px;

    margin-top:25px;

}

/* CARD */

.format-card{

    position:relative;

    height:220px;

    overflow:hidden;

    border-radius:20px;

    background:#070707;

    border:1px solid rgba(255,255,255,0.08);

    cursor:pointer;

    transition:0.35s ease;

}

/* ACTIVE */

.format-card.active{

    border-color:#ff000f;

}

/* OVERLAY */

.format-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:16px;

    transition:0.4s ease;

}

/* ICON */

.format-icon{

    font-size:42px;

    transition:0.35s ease;

}

/* PLAY BUTTON */

.format-play{

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%, -50%)
    scale(0.8);

    width:64px;
    height:64px;

    border-radius:50%;

    background:#ff000f;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    opacity:0;

    transition:0.4s ease;

    box-shadow:
    0 10px 30px rgba(255,0,15,0.25);

}

/* TITLE */

.format-overlay h3{

    color:#fff;

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

    transition:0.3s ease;

}

/* ================= HOVER ================= */

.format-card:hover{

    border-color:#ff000f;

    transform:translateY(-6px);

}

.format-card:hover .format-icon{

    opacity:0.15;

    transform:scale(1.2);

}

.format-card:hover .format-play{

    opacity:1;

    transform:
    translate(-50%, -50%)
    scale(1);

}

.format-card:hover h3{

    transform:translateY(12px);

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .format-grid{

        grid-template-columns:1fr;

    }

    .format-card{

        height:180px;

    }

    .format-icon{

        font-size:34px;

    }

    .format-play{

        width:56px;
        height:56px;

        font-size:18px;

    }

    .format-overlay h3{

        font-size:12px;

    }

}
/* ================= LINK ================= */

.showreel-link{

    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:30px;

    color:#fff;

    text-decoration:none;

    font-size:15px;

    transition:0.3s;

}

.showreel-link span{

    transition:0.3s;

}

.showreel-link:hover{

    color:#ff000f;

}

.showreel-link:hover span{

    transform:translateX(5px);

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .showreel-section{

        padding:50px 0;

    }

    .showreel-top h2{

        font-size:36px;

    }

    .showreel-top p{

        font-size:15px;

    }

    .showreel-video-card img{

        height:300px;

    }

    .play-btn{

        width:68px;
        height:68px;

        font-size:24px;

    }

    .format-grid{

        grid-template-columns:1fr;

    }

    .format-card{

        padding:38px 20px;

    }

}


/* ================= PAIN SECTION ================= */

.pain-section{

    background:#000;

    padding:5px 0;

    overflow:hidden;

}

/* TOP LINE */

.pain-top-line{

    text-align:center;

    font-size:28px;

    font-weight:900;

    color:#fff;

    margin-bottom:70px;

}

.pain-top-line span{

    color:#ff000f;

    font-size:28px;

    font-weight:900;

}

/* ================= HEADLINE ================= */

.pain-top-line{position:relative;
padding-bottom:40px;
margin-bottom:30px;
}

.pain-top-line::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    transform:translateX(-50%);

    width:100vw;
    height:1px;

    background:
    rgba(0,0,0,0.08);

}

.pain-headline{

    text-align:center;

    margin-bottom:35px;

}

.pain-headline h2{

    font-size:70px;

    line-height:1.03;

    color:#fff;

    max-width:1200px;

    margin-top:10px;

    font-weight:900;
    text-align: justify;

}

.pain-headline h2 span{

    display:block;

    color:#ff000f;

}

/* ================= GRID ================= */

.pain-grid{

    display:grid;

    grid-template-columns:
    repeat(3, 1fr);

    gap:24px;

    max-width:1200px;

    margin:auto;

}

/* CARD */

.pain-card{

    background:#ebeae9;

    border:1px solid rgba(0,0,0,0.08);

    border-radius:22px;

    padding:34px;

    transition:0.35s ease;

}

.pain-card:hover{

    transform:translateY(-8px);

    border-color:#ff000f;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

}

/* TAG */

.pain-tag{

    color:#ff000f;

    font-size:14px;

    letter-spacing:4px;

    font-weight:700;

}

/* TITLE */

.pain-card h3{

    margin-top:20px;

    margin-bottom:18px;

    font-size:20px;

    line-height:1.2;

    color:#000;

    font-weight:700;

}

/* TEXT */

.pain-card p{

    color:#666;

    font-size:18px;

    line-height:1.7;

}

.strike-red {
    text-decoration: line-through;
    text-decoration-color: #ff000f; /* Matches your YFI signature premium red color */
    text-decoration-thickness: 1px;  /* Keeps the line perfectly thin and minimal */
}

/* ================= BOTTOM ================= */

.pain-bottom{

    text-align:center;

    margin-top:90px;

}

.pain-bottom h3{

    font-size:62px;

    line-height:1.1;

    color:#ffffff;

    max-width:1000px;

    margin:auto;

    font-weight:900;
    text-transform: capitalize;
    text-align: justify;

}

.pain-bottom h3 span{

    display:block;

    color:#ff000f;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .pain-section{

        padding:10px 0;

    }

    .pain-top-line{

        font-size:14px;

        margin-bottom:45px;

    }

    .pain-top-line span{

        font-size:30px;

    }

    .pain-headline h2{

        font-size:40px;
        text-align: left;

    }

    .pain-grid{

        grid-template-columns:1fr;

    }

    .pain-card{

        padding:28px;

    }

    .pain-card h3{

        font-size:24px;

    }

    .pain-card p{

        font-size:15px;

    }

    .pain-bottom{

        margin-top:60px;

    }

    .pain-bottom h3{

        font-size:34px;
        text-align: left;

    }

}
/* =========================================================
   YFI STUDIOS — EDITORIAL RED CTA CARD SYSTEM (CLEAN FIXED)
========================================================= */

.editorial-quiz-card {
    background-color: #ff000f !important; /* Fallback direct hex to prevent CSS variable read crashes */
    padding: 32px 24px 24px 24px;
    border-radius: 4px;
    max-width: 480px;
    width: 100%;
    margin: 20px auto;
    position: relative;
    box-sizing: border-box;
    color: #FFFFFF !important;
}

/* --- UPPER ROW META SUB-TEXT --- */
.card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 24px;
}

.card-meta-left .meta-bracket {
    font-weight: 700;
    font-size: 14px;
    margin-right: 2px;
}

.card-meta-right {
    background: rgba(0, 0, 0, 0.28);
    padding: 4px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- LIVE STATUS INDICATOR PULSE EDGE EFFECT --- */
.live-dot-pulse {
    width: 6px;
    height: 6px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    animation: metaPulse 1.4s infinite ease-in-out;
}

@keyframes metaPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* --- INNER CARD CORE TYPOGRAPHY BLOCK --- */
.card-body-content {
    margin-bottom: 28px;
}

.card-display-title {
    font-size: 36px !important;
    line-height: 0.95 !important;
    letter-spacing: 0.02em;
    margin: 0 0 12px 0 !important;
    text-transform: uppercase;
}

.card-display-sub {
    font-size: 12px;
    line-height: 1.12;
    font-weight: 400;
    opacity: 0.9;
    margin: 0 !important;
}

/* --- MINIMAL HAIRLINE SUB-SEPARATOR --- */
.card-divider-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin: 0 0 20px 0;
}

/* --- COMPONENT FOOT ACTION SECTOR BUTTON --- */
.final-cta-btn {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    color: #FFFFFF !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 4px 0;
}



.btn-action-arrow {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.footer-call{
    margin-top:15px;
}

.footer-call-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 10px;
    border-radius:10px;

    
    color:#fff;

    text-decoration:none;
    font-weight:300;

    transition:0.3s ease;
}

