/* ========================================================
   SEO SERVICES PAGE STYLES (SEARCH BEAMS THEME)
   ======================================================== */

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

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

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

/* ========================================================
   SEARCH BEAMS ANIMATION LOGIC
   ======================================================== */
.ranking-beams-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.beam {
    position: absolute;
    width: 2px;
    height: 150%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 178, 0.6), transparent);
    top: -25%;
    opacity: 0.3;
    animation: beam-sweep 8s infinite ease-in-out alternate;
    box-shadow: 0 0 15px rgba(0, 255, 178, 0.5);
}

.beam-1 {
    left: 15%;
    animation-delay: 0s;
}

.beam-2 {
    left: 50%;
    width: 4px;
    animation-duration: 12s;
    animation-delay: 2s;
    opacity: 0.15;
}

.beam-3 {
    left: 85%;
    animation-delay: 5s;
}

@keyframes beam-sweep {
    0% {
        transform: translateY(-10%) rotate(5deg);
    }

    100% {
        transform: translateY(10%) rotate(-5deg);
    }
}

/* Floating Keyword Texts */
.floating-keywords {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.float-kw {
    position: absolute;
    color: rgba(0, 255, 178, 0.2);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: kw-float 20s infinite linear;
    text-shadow: 0 0 10px rgba(0, 255, 178, 0.2);
    white-space: nowrap;
}

.kw-1 {
    top: 20%;
    left: 5%;
    animation-duration: 25s;
}

.kw-2 {
    top: 60%;
    right: 10%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.kw-3 {
    bottom: 15%;
    left: 20%;
    animation-duration: 22s;
}

.kw-4 {
    top: 30%;
    right: 25%;
    animation-duration: 28s;
    animation-direction: reverse;
}

@keyframes kw-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translate(80px, -80px) rotate(10deg);
        opacity: 0.1;
    }
}

/* Laser Scan Line */
.laser-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00FFB2;
    box-shadow: 0 0 15px #00FFB2, 0 0 25px rgba(0, 255, 178, 0.8);
    z-index: 3;
    animation: laser-scan 4s infinite linear;
}

@keyframes laser-scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.seo-green {
    background: linear-gradient(90deg, #00FFB2, #00CC8E);
    -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(0, 255, 178, 0.15);
    border: 1px solid rgba(0, 255, 178, 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, 255, 178, 0.2);
}

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

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

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

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

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

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

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