/* ========================================================
   CONTENT MARKETING PAGE STYLES (FLOATING DOCUMENTS THEME)
   ======================================================== */

.content-page {
    background: linear-gradient(135deg, #0a0114 0%, #170329 50%, #0a0114 100%);
    color: #ffffff;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

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

.content-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ========================================================
   FLOATING DOCUMENT LAYERS & BLOG FLIPPING THEME
   ======================================================== */

.floating-docs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    perspective: 1000px;
}

.float-doc {
    position: absolute;
    width: 250px;
    height: 350px;
    background: rgba(157, 0, 255, 0.15);
    /* Significantly brighter */
    border: 1px solid rgba(157, 0, 255, 0.6);
    /* More visible border */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(157, 0, 255, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    animation: doc-float-flip 20s infinite ease-in-out;
}

.doc-line {
    height: 4px;
    background: rgba(157, 0, 255, 0.8);
    border-radius: 2px;
    width: 100%;
}

.doc-line.short {
    width: 60%;
}

.doc-line.title {
    height: 12px;
    width: 80%;
    background: rgba(0, 240, 255, 0.8);
    /* Cyan neon title */
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    margin-bottom: 20px;
}

.doc-image-placeholder {
    height: 100px;
    width: 100%;
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 4px;
    margin-bottom: 10px;
}

.doc-1 {
    top: 15%;
    left: 5%;
    transform: rotateY(-30deg) rotateX(10deg) translateZ(-100px);
    animation-delay: 0s;
}

.doc-2 {
    top: 45%;
    right: 5%;
    transform: rotateY(40deg) rotateX(-15deg) translateZ(-50px);
    animation-delay: -5s;
    animation-duration: 25s;
    animation-direction: reverse;
    width: 300px;
    height: 400px;
}

.doc-3 {
    bottom: -10%;
    left: 25%;
    transform: rotateY(-15deg) rotateX(25deg) translateZ(-150px);
    animation-delay: -12s;
    animation-duration: 28s;
}

@keyframes doc-float-flip {
    0% {
        transform: translateY(0) rotateY(-30deg) rotateX(10deg) translateZ(-100px);
        opacity: 0.3;
    }

    25% {
        opacity: 0.8;
    }

    50% {
        transform: translateY(-150px) rotateY(30deg) rotateX(-10deg) translateZ(50px);
        opacity: 0.5;
    }

    75% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) rotateY(-30deg) rotateX(10deg) translateZ(-100px);
        opacity: 0.3;
    }
}

/* Abstract Keyword Nodes floating across docs */
.content-nodes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.node {
    position: absolute;
    color: rgba(157, 0, 255, 0.4);
    font-size: 1.5rem;
    animation: node-drift 15s infinite linear;
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
}

.node-1 {
    top: 20%;
    left: 30%;
    animation-duration: 18s;
}

/* ✍️ */
.node-2 {
    top: 70%;
    right: 30%;
    animation-duration: 22s;
    animation-direction: reverse;
}

/* 📈 */
.node-3 {
    bottom: 30%;
    left: 10%;
    animation-duration: 25s;
}

/* 🔗 */

@keyframes node-drift {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0;
    }
}

.content-purple {
    background: linear-gradient(90deg, #9D00FF, #D100FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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 30px rgba(157, 0, 255, 0.15);
    border: 1px solid rgba(157, 0, 255, 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(157, 0, 255, 0.2);
}

.diff-card:hover {
    box-shadow: 0 10px 40px rgba(157, 0, 255, 0.1);
    border-color: #9D00FF;
}

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

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

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

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

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

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