/* =========================================
   SEO Optimization Premium Styles
   Theme: Data Intelligence / Growth / Search
   ========================================= */

:root {
    /* SEO Page Specific Palette */
    --seo-bg-dark: #0b0c15;
    --seo-bg-darker: #06070a;
    --seo-bg-gray: #1a1c24;
    /* New gray for CTA section */
    --seo-bg-light: #f7f9fc;

    --seo-primary: #0586FE;
    /* Brand Blue */
    --seo-success: #00d4ff;
    /* Growth Cyan */
    --seo-purple: #7044ff;
    /* Deep Data Purple */

    --gradient-seo-hero: linear-gradient(180deg, #06070a 0%, #10121e 100%);
    --gradient-seo-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-seo-highlight: linear-gradient(to right, #0586FE, #00d4ff);

    --seo-border: 1px solid rgba(255, 255, 255, 0.06);
    --seo-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);

    --section-gap: 100px;
}

/* Animations */
@keyframes grid-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

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

    50% {
        opacity: 1;
    }

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

/* Base Layout */
.seo-page-wrapper {
    font-family: 'Saira', sans-serif;
    background-color: var(--seo-bg-light);
    color: #333;
    overflow-x: hidden;
}

.seo-section-padding {
    padding: var(--section-gap) 0;
}

/* =========================================
   Module 1: SEO Hero (Data Grid Theme)
   ========================================= */
.seo-hero {
    min-height: 75vh;
    background: var(--gradient-seo-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* Background Grid Effect */
.seo-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: grid-move 20s linear infinite;
    z-index: 0;
}

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

.seo-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(5, 134, 254, 0.15);
    border: 1px solid rgba(5, 134, 254, 0.3);
    border-radius: 50px;
    color: var(--seo-success);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Button Variant (Secondary) */
.customer-btn-two {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.customer-btn-two:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.customer-btn-two i {
    margin-left: 8px;
    transition: 0.3s;
}

.customer-btn-two:hover i {
    transform: translateX(5px);
}

/* =========================================
   Module 2: Advantages (Radar Cards)
   ========================================= */
.seo-light-section {
    background-color: var(--seo-bg-light);
    position: relative;
}

.seo-card-radar {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.seo-card-radar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 134, 254, 0.1);
    border-color: rgba(5, 134, 254, 0.2);
}

.seo-card-radar .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(5, 134, 254, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--seo-primary);
    margin-bottom: 25px;
    transition: 0.4s;
}

.seo-card-radar:hover .icon-box {
    background: var(--seo-primary);
    color: #fff;
    transform: rotateY(180deg);
}

.seo-card-radar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* =========================================
   Module 3: Solutions (Cyber Data Style)
   ========================================= */
.seo-dark-section {
    background-color: var(--seo-bg-darker);
    position: relative;
}

.seo-solution-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.seo-solution-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--seo-primary);
    box-shadow: 0 0 20px rgba(5, 134, 254, 0.15);
}

.seo-solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.seo-solution-icon {
    font-size: 2rem;
    color: var(--seo-success);
    margin-right: 15px;
}

.seo-solution-item h4 {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
}

.seo-solution-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-solution-item ul li {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.seo-solution-item ul li i {
    color: var(--seo-primary);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 0.8rem;
}

/* =========================================
   Module 4: Process (Timeline)
   ========================================= */
.seo-process-wrapper {
    position: relative;
}

.seo-step-card {
    text-align: center;
    padding: 40px 25px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    z-index: 1;
}

.seo-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(5, 134, 254, 0.12);
    border-color: rgba(5, 134, 254, 0.3);
}

.seo-step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(5, 134, 254, 0.08);
    position: absolute;
    top: 5px;
    right: 10px;
    line-height: 1;
    z-index: 0;
    transition: 0.3s;
}

.seo-step-card:hover .seo-step-num {
    color: rgba(5, 134, 254, 0.15);
    transform: scale(1.1);
}

.seo-step-content {
    position: relative;
    z-index: 2;
    padding-top: 10px;
}

.seo-step-icon {
    font-size: 2.5rem;
    color: var(--seo-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.seo-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Connector Arrows */
.seo-process-wrapper .col-md-3:not(:last-child) .seo-step-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-top: 2px solid rgba(5, 134, 254, 0.2);
    border-right: 2px solid rgba(5, 134, 254, 0.2);
    transform: translateY(-50%) rotate(45deg);
    z-index: 10;
    display: block;
}

@media (max-width: 768px) {
    .seo-process-wrapper .col-md-3:not(:last-child) .seo-step-card::after {
        top: auto;
        bottom: -15px;
        right: 50%;
        transform: translateX(50%) rotate(135deg);
    }

    .col-md-3 {
        margin-bottom: 30px;
    }
}

/* =========================================
   Module 5: CTA (Refined)
   ========================================= */
.seo-cta-section {
    background-color: var(--seo-bg-gray);
    padding: 120px 0;
    /* Increased spacing */
}

.seo-cta-box {
    background: linear-gradient(145deg, #252b42 0%, #181b29 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.seo-cta-box:hover {
    transform: translateY(-5px);
    border-color: rgba(5, 134, 254, 0.3);
}

.seo-cta-box h2 {
    color: #fff;
    font-size: 2.5rem;
}

.seo-cta-box p {
    color: rgba(255, 255, 255, 0.6);
}

/* Custom button override for this section if needed, 
   otherwise rely on .customer-btn */

.seo-cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIOHYzMmgzMnY4eiIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9nPjwvc3ZnPg==');
    opacity: 0.3;
}