/* ================================================================
           REDESIGN 2026 — DARK PRECISION (SEO PAGE)
        ================================================================ */

        /* DARK TOKENS */
        :root {
            --color-bg-primary: #080B14 !important;
            --dark-950: #080B14;
            --dark-900: #0D1117;
            --dark-800: #161C28;
            --dark-700: #1E2739;
            --indigo: #2563EB;
            --indigo-dark: #1d4ed8;
            --indigo-light: #60a5fa;
            --emerald: #4ade80;
            --amber: #f59e0b;
            --txt-bright: #F0F4FF;
            --txt-sub: #94A3B8;
            --txt-muted: #64748B;
            --shadow-indigo: 0 8px 30px rgba(37, 99, 235, 0.2);
        }

        body {
            background-color: var(--dark-950) !important;
            color: var(--txt-sub);
        }

        /* SCROLL REVEAL */
        .js-enabled [data-animate] {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .5s ease, transform .5s ease;
        }

        .js-enabled [data-animate].is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* HERO */
        .hero {
            position: relative;
            background: var(--dark-950) !important;
            background-image:
                radial-gradient(ellipse 80% 50% at 20% 50%, rgba(37, 99, 235, .15) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 80% 30%, rgba(37, 99, 235, .08) 0%, transparent 60%) !important;
            overflow: hidden;
            padding: 240px 0 var(--space-24) !important;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .hero::before {
            display: none !important;
        }

        .hero-svg-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
            background:
                radial-gradient(circle at 50% 10%, rgba(74, 222, 128, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
        }

        .hero-rankings {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 0 5%;
            opacity: 0.25;
            mask-image: linear-gradient(to top, black, transparent);
            -webkit-mask-image: linear-gradient(to top, black, transparent);
        }

        .ranking-bar {
            width: 35px;
            background: linear-gradient(to top, var(--emerald), transparent);
            border-radius: 6px 6px 0 0;
            position: relative;
            filter: blur(1px);
        }

        .seo-trendline {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.3;
        }

        .seo-keyword-tag {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            padding: 6px 14px;
            backdrop-filter: blur(8px);
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.6);
            white-space: nowrap;
            z-index: 2;
            animation: float-tag 8s infinite alternate ease-in-out;
        }

        @keyframes float-tag {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(15px, -15px);
            }
        }

        .searchlight {
            position: absolute;
            width: 600px;
            height: 1000px;
            background: conic-gradient(from 180deg at 50% 0%, transparent 165deg, rgba(74, 222, 128, 0.03) 180deg, transparent 195deg);
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            filter: blur(60px);
            z-index: 1;
            pointer-events: none;
        }

        .hero-overline {
            display: inline-block;
            font-size: var(--font-size-sm);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: var(--letter-spacing-wider);
            color: #93c5fd;
            background: rgba(37, 99, 235, .12);
            border: 1px solid rgba(37, 99, 235, .25);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            margin-bottom: var(--space-5);
        }

        .hero-title-accent {
            background: linear-gradient(135deg, #93c5fd, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: var(--font-size-lg);
            line-height: var(--line-height-relaxed);
            margin-bottom: var(--space-8);
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            margin: var(--space-12) auto 0;
            padding: var(--space-4) var(--space-8);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-xl);
            display: flex;
            gap: var(--space-10);
            justify-content: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            width: fit-content;
            max-width: 100%;
            flex-wrap: wrap;
        }

        /* SECTION BACKGROUNDS */
        section {
            position: relative;
            overflow: hidden;
        }

        .why-seo {
            background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 50%), var(--dark-900) !important;
        }

        .methodology {
            background: radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%), var(--dark-950) !important;
        }

        .features {
            background: radial-gradient(circle at 20% 70%, rgba(37, 99, 235, 0.04) 0%, transparent 50%), var(--dark-900) !important;
        }

        .differentials {
            background: radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.03) 0%, transparent 50%), var(--dark-950) !important;
        }

        .cases {
            background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.03) 0%, transparent 50%), var(--dark-900) !important;
        }

        /* SECTION HEADERS */
        .section-title {
            color: var(--txt-bright) !important;
        }

        .section-description {
            color: var(--txt-sub) !important;
        }

        .section-overline {
            color: #93c5fd !important;
            background: rgba(37, 99, 235, .10) !important;
            border: 1px solid rgba(37, 99, 235, .20) !important;
        }

        /* BENTO GRID */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin-top: var(--space-12);
        }

        /* Why SEO grid spans */
        .why-grid .card-service:nth-child(1) {
            grid-column: span 4;
        }

        .why-grid .card-service:nth-child(2) {
            grid-column: span 4;
        }

        .why-grid .card-service:nth-child(3) {
            grid-column: span 4;
        }

        /* Methodology grid spans */
        .method-grid .card-service:nth-child(1) {
            grid-column: span 12;
            flex-direction: row;
            text-align: left;
        }

        .method-grid .card-service:nth-child(2) {
            grid-column: span 12;
            flex-direction: row;
            text-align: left;
        }

        .method-grid .card-service:nth-child(3) {
            grid-column: span 12;
            flex-direction: row;
            text-align: left;
        }

        .method-grid .card-service:nth-child(4) {
            grid-column: span 12;
            flex-direction: row;
            text-align: left;
        }

        /* Features grid spans */
        .features-grid .card-service:nth-child(1) {
            grid-column: span 4;
        }

        .features-grid .card-service:nth-child(2) {
            grid-column: span 4;
        }

        .features-grid .card-service:nth-child(3) {
            grid-column: span 4;
        }

        .features-grid .card-service:nth-child(4) {
            grid-column: span 3;
        }

        .features-grid .card-service:nth-child(5) {
            grid-column: span 3;
        }

        .features-grid .card-service:nth-child(6) {
            grid-column: span 3;
        }

        .features-grid .card-service:nth-child(7) {
            grid-column: span 3;
        }

        .features-grid .card-service:nth-child(8) {
            grid-column: span 6;
        }

        /* Differentials grid */
        .diff-grid .card-service:nth-child(1) {
            grid-column: span 6;
        }

        .diff-grid .card-service:nth-child(2) {
            grid-column: span 6;
        }

        /* Cases grid */
        .cases-grid .card-service:nth-child(1) {
            grid-column: span 7;
        }

        .cases-grid .card-service:nth-child(2) {
            grid-column: span 5;
        }

        @media (max-width: 900px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-grid .card-service {
                grid-column: span 1 !important;
                flex-direction: column !important;
                text-align: center !important;
            }
        }

        /* GLASSMORPHISM CARD */
        .card-service {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            z-index: 1;
        }

        .card-service:hover {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
        }

        .card-service::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .card-service:hover::before {
            opacity: 1;
        }

        .card-service-icon {
            background: rgba(255, 255, 255, 0.03);
            color: var(--txt-bright);
            border: 1px solid rgba(255, 255, 255, 0.08);
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: var(--space-6);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .card-service:hover .card-service-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--indigo);
            color: #fff;
            border-color: var(--indigo-light);
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
        }

        .card-service-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--txt-bright);
            margin-bottom: 12px;
        }

        .card-service-description {
            font-size: 15px;
            color: var(--txt-sub);
            line-height: 1.7;
        }

        /* METHOD CARD ROW */
        .method-card-row {
            gap: 28px;
            align-items: center;
        }

        .method-number {
            flex-shrink: 0;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.15);
            color: var(--txt-bright);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 800;
            border: 1px solid rgba(37, 99, 235, 0.25);
            transition: all 0.3s ease;
        }

        .card-service:hover .method-number {
            background: var(--indigo);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
        }

        .method-title {
            font-size: 26px !important;
            font-weight: 700;
            color: var(--txt-bright);
            margin-bottom: 10px;
        }

        .method-desc {
            font-size: 16px;
            color: var(--txt-sub);
            line-height: 1.7;
            margin: 0;
        }

        /* DIFFERENTIALS LARGE CARD */
        .diff-card-large {
            padding: 48px !important;
        }

        .diff-icon {
            width: 72px !important;
            height: 72px !important;
            border-radius: 18px;
            margin-bottom: 24px;
        }

        .diff-title {
            font-size: 28px !important;
            font-weight: 700;
            color: var(--txt-bright);
            margin-bottom: 16px;
        }

        .diff-text {
            font-size: 17px;
            line-height: 1.7;
            color: var(--txt-sub);
            margin-bottom: 14px;
        }

        /* CASE STUDY CARD */
        .case-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .case-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--txt-bright);
            margin-bottom: 12px;
        }

        .case-desc {
            font-size: 16px;
            color: var(--txt-sub);
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .stats-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--txt-muted);
        }

        .kw-box {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            padding: 20px;
            border-radius: 14px;
        }

        .kw-box-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--txt-bright);
            margin-bottom: 10px;
        }

        .kw-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .kw-tag {
            padding: 6px 14px;
            background: rgba(37, 99, 235, .1);
            border: 1px solid rgba(37, 99, 235, .2);
            border-radius: 20px;
            font-size: 13px;
            color: #93c5fd;
        }

        /* BUTTONS */
        .btn-shimmer {
            position: relative;
            overflow: hidden;
            background: #2563EB;
            color: #fff;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: var(--radius-lg);
            transition: all var(--transition-base) var(--ease-out);
        }

        .btn-shimmer:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(37, 99, 235, .45);
            color: #fff;
        }

        .btn-shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
            transform: skewX(-20deg);
            animation: cta-shimmer 3.5s infinite 1s;
        }

        @keyframes cta-shimmer {
            0% {
                left: -100%
            }

            100% {
                left: 160%
            }
        }

        .btn-outline-hero {
            background: transparent;
            color: rgba(255, 255, 255, .9);
            border: 1.5px solid rgba(255, 255, 255, .25);
            border-radius: var(--radius-lg);
        }

        .btn-outline-hero:hover {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .4);
            color: #fff;
            transform: translateY(-2px);
        }

        /* CTA SECTION */
        .cta-final {
            background:
                radial-gradient(ellipse 60% 60% at 30% 50%, rgba(37, 99, 235, .25) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 80% 40%, rgba(16, 185, 129, .15) 0%, transparent 60%),
                var(--dark-950) !important;
        }

        .cta-title {
            font-size: 44px;
            font-weight: 800;
            color: var(--txt-bright);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-desc {
            font-size: 20px;
            color: var(--txt-sub);
            margin-bottom: 40px;
            line-height: 1.6;
        }

