:root {
    --brand-red: #8B1A1A;
    --dark-bg: #0D0D0D;
    --text-main: #111;
    --text-light: #555;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { color: var(--text-main); overflow-x: hidden; background: #fff; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 50px; }

/* --- HEADER & NAVIGATION --- */
header {  
    background: #ffffff;  
    padding: 10px 0;  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);  
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000;
}

nav { 
    display: flex;  
    justify-content: space-between;   
    align-items: center;   
    max-width: 1300px; 
    margin: 0 auto;   
    padding: 0 30px;
}

/* Logo Section */
.logo-container {
    display: flex; 
    align-items: center; 
    gap: 10px;
}

.logo-img { 
    height: 50px; 
    width: auto;
}

.logo-text-group { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.logo-main-text { 
    font-size: 1.6em; 
    font-weight: 800; 
    color: #111; 
    line-height: 1; 
    letter-spacing: 1px;
}

.logo-tagline { 
    font-size: 0.6em; 
    font-weight: 700; 
    color: #111; 
    margin-top: 2px; 
    letter-spacing: 0.5px; 
}

/* Ticker */
.header-service-ticker-container { 
    height: 1.2em; 
    overflow: hidden; 
    width: 200px; 
    border-left: 1px solid #ddd; 
    padding-left: 20px; 
    margin: 0 20px;
}

.service-ticker {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B1A1A;
    line-height: 1.8;
}

.service-ticker span {
    display: block;
}

/* Menu */
nav ul { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
    align-items: center;
}

nav ul li a {  
    text-decoration: none;  
    color: #333;  
    font-weight: 600;  
    font-size: 0.85rem;  
    text-transform: uppercase; 
    transition: 0.3s;
}

nav ul li a:hover { 
    color: #8B1A1A;
}

.menu-icons { 
    display: flex; 
    gap: 15px; 
    padding-left: 15px; 
    border-left: 1px solid #ddd; 
    color: #555; 
    cursor: pointer;
}

#standalone-content {
    position: relative;
    z-index: 10;
    background-color: #fff;
    margin-bottom: 100vh;
    min-height: 100vh;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
#site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px 20px 40px;
    z-index: 1;
}

.footer-top-bar {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    font-weight: 700;
}

.huge-logo {
    font-size: 7vw;
    font-weight: 900;
    letter-spacing: 1vw;
    text-align: center;
    line-height: 0.8;
    margin-top: 5vh;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid white;
}

.footer-bottom-bar .footer-socials{
    display: flex; gap: 20px; font-size: 1.5rem; margin-top: 20px;
}

.footer-bottom-bar .footer-socials a {
    color: #fff;
    transition: 0.3s;
}

.footer-bottom-bar .footer-socials i:hover {
    color: #e27b7b;
}

.footer-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- RESPONSIVE MENU --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    #main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        display: flex;
        z-index: 1000;
        padding-top: 50px;
    }

    #main-menu.active {
        right: 0;
    }

    nav {
        padding: 0 20px;
    }
}

/* ========== HERO SECTION - FIXED HEADING ALIGNMENT ========== */
.hero-section { 
    padding: 120px 0 60px; 
    background: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.3fr; 
    gap: 60px;
    align-items: start;
}

.hero-left { 
    max-width: 500px; 
}

.sub-badge { 
    color: var(--brand-red); 
    font-weight: 800; 
    font-size: 14px; 
    letter-spacing: 2px; 
    display: block; 
    margin-bottom: 15px;
}

.description { 
    font-size: 16px;
    line-height: 1.6; 
    color: var(--text-light); 
    margin-bottom: 20px;
}

.benefit-list { 
    list-style: none; 
    margin-bottom: 25px;
}

.benefit-list li { 
    margin-bottom: 8px;
    padding-left: 25px; 
    position: relative; 
    font-weight: 500; 
    color: var(--text-light);
    font-size: 15px;
}

.benefit-list li::before { 
    content: "•"; 
    color: var(--brand-red); 
    position: absolute; 
    left: 0; 
    font-weight: 900; 
}

.btn-outline { 
    background: transparent; 
    border: 1.5px solid #222; 
    padding: 12px 28px;
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 14px;
}

.btn-outline:hover { 
    background: #222; 
    color: #fff; 
}

/* Right Column - Fixed Heading */
.hero-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-title { 
    font-family: 'Lexend', sans-serif; 
    font-size: 48px;
    line-height: 1.2; 
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    color: #111;
    font-weight: 800;
    word-wrap: break-word;
    width: 100%;
}

.hero-stats { 
    display: flex; 
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.number-wrapper { 
    color: var(--brand-red); 
    font-weight: 800; 
    font-size: 38px;
    font-family: 'Lexend', sans-serif; 
}

.stat-block p { 
    font-size: 12px;
    font-weight: 600; 
    color: var(--text-light); 
    max-width: 150px; 
}

/* VIDEO BANNER */
.video-section { 
    width: 100%; 
    display: block; 
}

.video-banner { 
    position: relative; 
    height: 500px;
    background: #000; 
    overflow: hidden; 
    width: 100%; 
}

.banner-bg { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.6; 
}

.banner-overlay { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-align: center; 
}

.banner-content h2 { 
    font-family: 'Lexend', sans-serif; 
    font-size: 32px;
    margin-bottom: 15px;
}

.play-circle { 
    width: 70px;
    height: 70px;
    border: 2px solid #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 20px auto;
    font-size: 22px;
    cursor: pointer; 
    transition: 0.3s; 
}

.play-circle:hover { 
    background: white; 
    color: black; 
}

.banner-socials { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    font-size: 18px;
}

/* LOGO TRACK */
.partners-area { 
    padding: 60px 0;
    background: #f5f5f5; 
    text-align: center; 
    overflow: hidden; 
}

.partners-area h1 { 
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: 'Lexend', sans-serif; 
    background: linear-gradient(90deg, #6a1b9a, #d32f2f); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.logo-track-container { 
    display: flex; 
    flex-direction: column; 
    gap: 30px;
}

.track-content { 
    display: flex; 
    width: max-content; 
    gap: 60px;
    align-items: center; 
}

.logo-track .track-content { 
    animation: scroll-rtl 15s linear infinite; 
}

.logo-track1 .track-content { 
    animation: scroll-ltr 15s linear infinite; 
}

.logo-track:hover .track-content, 
.logo-track1:hover .track-content { 
    animation-play-state: paused; 
}

.track-content img { 
    height: 40px;
    filter: grayscale(1); 
    opacity: 0.5; 
    transition: 0.4s; 
    flex-shrink: 0; 
}

.track-content img:hover { 
    filter: grayscale(0); 
    opacity: 1; 
    transform: scale(1.1); 
}

@keyframes scroll-rtl { 
    from { transform: translateX(0); } 
    to { transform: translateX(-50%); } 
}

@keyframes scroll-ltr { 
    from { transform: translateX(-50%); } 
    to { transform: translateX(0); } 
}

/* STRATEGY SECTION */
.strategy-section { 
    background: var(--dark-bg); 
    color: #fff; 
    padding: 80px 0;
}

.strategy-grid { 
    display: grid; 
    grid-template-columns: 1.4fr 1fr; 
    gap: 50px;
    align-items: center; 
}

.pink-label { 
    color: #E91E63; 
    font-weight: 800; 
    font-size: 12px;
}

.strategy-info h2 { 
    font-family: 'Lexend', sans-serif; 
    font-size: 32px;
    margin: 10px 0;
    line-height: 1.2; 
}

.dark-stats-grid { 
    display: flex; 
    gap: 15px;
    margin-top: 30px;
}

.dark-card { 
    background: #1a1a1a; 
    padding: 25px 15px;
    border-radius: 8px; 
    flex: 1; 
    border-bottom: 3px solid transparent; 
    transition: 0.3s; 
}

.dark-card:hover { 
    border-bottom-color: var(--brand-red); 
}

.dark-card .number-wrapper { 
    color: #fff; 
    font-size: 28px;
    margin-bottom: 8px;
}

.dark-card p { 
    font-size: 10px;
    color: #888; 
    line-height: 1.4; 
}

.strategy-visual img { 
    width: 100%; 
    border-radius: 12px; 
    filter: grayscale(100%); 
}

/* ANIMATIONS */
.slide-in { 
    opacity: 0; 
    transform: translateX(-30px); 
    animation: slideIn 0.8s ease-out forwards; 
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes slideIn { 
    to { 
        opacity: 1; 
        transform: translateX(0); 
    } 
}

.word-wrapper { 
    display: inline-block; 
    overflow: hidden; 
    margin-right: 12px; 
}

.word { 
    display: inline-block; 
    opacity: 0; 
    transform: translateY(100%); 
    animation: wordUp 0.6s ease-out forwards; 
}

@keyframes wordUp { 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .number-wrapper {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .sub-badge {
        text-align: center;
    }
    
    .description {
        text-align: center;
        font-size: 15px;
    }
    
    .benefit-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    
    .btn-outline {
        display: inline-block;
        margin: 0 auto;
    }
    
    .hero-right {
        text-align: center;
    }
    
    .main-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .number-wrapper {
        font-size: 30px;
    }
    
    .stat-block p {
        font-size: 11px;
        text-align: center;
        max-width: 100%;
    }
    
    .video-banner {
        height: 350px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
    
    .play-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .partners-area {
        padding: 40px 0;
    }
    
    .partners-area h1 {
        font-size: 1.5rem;
    }
    
    .track-content {
        gap: 40px;
    }
    
    .track-content img {
        height: 30px;
    }
    
    .strategy-section {
        padding: 60px 0;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strategy-info {
        text-align: center;
    }
    
    .strategy-info h2 {
        font-size: 26px;
    }
    
    .dark-stats-grid {
        flex-direction: column;
        gap: 15px;
        max-width: 400px;
        margin: 20px auto 0;
    }
    
    /* Footer */
    #site-footer {
        padding: 30px 20px 15px;
    }
    
    .huge-logo {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .video-banner {
        height: 250px;
    }
    
    .banner-content h2 {
        font-size: 20px;
    }
    
    .partners-area h1 {
        font-size: 1.3rem;
    }
    
    .track-content {
        gap: 30px;
    }
    
    .track-content img {
        height: 25px;
    }
    
    .strategy-info h2 {
        font-size: 22px;
    }
    
    .huge-logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: 24px;
    }
    
    .huge-logo {
        font-size: 1.5rem;
    }
}