/* ========================================================
   BRANDING PAGE STYLES (COLOR SPECTRUMS THEME)
   ======================================================== */

.brand-page {
    /* Deep purplish-dark background serving as canvas for bright gradients */
    background: linear-gradient(135deg, #090014 0%, #17002e 50%, #090014 100%);
    color: #ffffff;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.brand-hero {
    padding-top: 160px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.brand-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* ========================================================
   FLOATING LOGO GRIDS THEME
   ======================================================== */

.floating-logos-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    perspective: 1000px;
}

.floating-logo-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    backdrop-filter: blur(4px);
    animation: float-logo 20s infinite alternate ease-in-out;
    transform-style: preserve-3d;
}

/* Pseudo-shadows for 3D effect */
.floating-logo-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2), rgba(255, 0, 122, 0.2));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    filter: blur(10px);
}

.float-logo-1 {
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.float-logo-2 {
    top: 70%;
    left: 15%;
    animation-duration: 22s;
    animation-delay: -5s;
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.float-logo-3 {
    top: 20%;
    right: 10%;
    animation-duration: 28s;
    animation-delay: -10s;
}

.float-logo-4 {
    top: 60%;
    right: 5%;
    animation-duration: 20s;
    animation-delay: -2s;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.float-logo-5 {
    top: 40%;
    left: 85%;
    animation-duration: 30s;
    animation-delay: -15s;
}

@keyframes float-logo {
    0% {
        transform: translate3d(0, 0, -100px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    33% {
        transform: translate3d(30px, -50px, 50px) rotateX(15deg) rotateY(-20deg) rotateZ(10deg);
        color: rgba(0, 240, 255, 0.4);
        border-color: rgba(0, 240, 255, 0.3);
    }

    66% {
        transform: translate3d(-20px, 40px, 0px) rotateX(-10deg) rotateY(15deg) rotateZ(-5deg);
        color: rgba(255, 0, 122, 0.4);
        border-color: rgba(255, 0, 122, 0.3);
    }

    100% {
        transform: translate3d(0, 0, -50px) rotateX(5deg) rotateY(5deg) rotateZ(0deg);
    }
}

/* Primary Spectrum Gradient spanning Orange to Cyan to Pink */
.brand-spectrum {
    background: linear-gradient(90deg, #FFB300, #00F0FF, #FF007A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: spectrumFlow 4s linear infinite;
}

.brand-spectrum-text {
    background: linear-gradient(90deg, #FFB300, #00F0FF, #FF007A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: spectrumFlow 4s linear infinite;
}

@keyframes spectrumFlow {
    to {
        background-position: 200% center;
    }
}

.hero-video-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(255, 0, 122, 0.3);
}

.hero-image-board {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Base structural overrides for the grid reused from about */
.diff-card {
    border: 1px solid rgba(0, 240, 255, 0.15);
    transition: all 0.4s ease;
}

.diff-card:hover {
    box-shadow: 0 10px 40px rgba(255, 0, 122, 0.15);
    border-color: #FFB300;
}

.data-vis-section {
    padding: 80px 20px;
}

.brand-kpis {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.brand-kpis .stat {
    background: rgba(255, 0, 122, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 30px;
    border-radius: 16px;
    min-width: 200px;
    backdrop-filter: blur(5px);
}

.brand-kpis .counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00F0FF;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.cross-link-banner {
    padding: 40px 20px 80px;
}

.mt-5 {
    margin-top: 50px;
}