
        /* --- CSS VARIABLES --- */
        :root {
            --seo-bg: #000000;
            /* Pure Black */
            --seo-surface: rgba(30, 41, 59, 0.4);
            --seo-border: rgba(255, 255, 255, 0.08);
            --seo-primary: #6366f1;
            /* Indigo 500 */
            --seo-accent: #06b6d4;
            /* Cyan 500 */
            --seo-text-main: #f8fafc;
            --seo-text-muted: #94a3b8;
            --seo-radius: 20px;
        }

        /* --- BASE STYLES --- */
        body {
            margin: 0;
            background-color: var(--seo-bg);
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--seo-text-main);
            overflow-x: hidden;
        }

        /* --- MODULE CONTAINER --- */
        .seo-wrapper {
            position: relative;
            padding: 6rem 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
            /* Subtle mesh gradient on black background */
            background-image: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%), radial-gradient(circle at 90% 60%, rgb(255 255 255 / 1%) 0%, transparent 40%);
        }

        /* --- HEADINGS & TEXT --- */
        .seo-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem auto;
        }

        .seo-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 100px;
            color: var(--seo-primary);
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .seo-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .seo-desc {
            font-size: 1.125rem;
            color: var(--seo-text-muted);
            line-height: 1.7;
        }

        /* --- CARDS GRID (FEATURES) --- */
        .seo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
            margin-bottom: 6rem;
        }

        .seo-card {
            background: rgba(12, 12, 20, 0.65);
            border: 1px solid var(--seo-border);
            border-radius: var(--seo-radius);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            cursor: default;
        }

        /* Simple Hover Effect (No Spotlight) */
        .seo-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            background: rgba(30, 41, 59, 0.6);
        }

        .card-content {
            position: relative;
            z-index: 2;
        }

        /* Icons */
        .seo-icon-box {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .seo-icon-box svg {
            width: 28px;
            height: 28px;
        }

        .icon-indigo {
            color: #818cf8;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
        }

        .icon-cyan {
            color: #22d3ee;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
        }

        .icon-emerald {
            color: #34d399;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .card-text {
            color: var(--seo-text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* --- NEW PRICING SECTION (MATCHING IMAGE) --- */
        .pricing-section-container {
            display: flex;
            justify-content: center;
            padding: 2rem 0;
        }

        /* The Card Itself */
        .pricing-card-modern {
            background: linear-gradient(175deg, #1e1b4b 0%, #0f0b29 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 32px;
            /* Extra rounded as per image */
            padding: 3rem 2.5rem;
            max-width: 480px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease;
        }

        .pricing-card-modern:hover {
            transform: translateY(-5px);
            border-color: rgba(99, 102, 241, 0.4);
        }

        /* "Scale" Tag */
        .plan-tag {
            background: linear-gradient(90deg, #818cf8, #67e8f9);
            color: #000;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 6px 18px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        /* Plan Name */
        .plan-name {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 1rem 0;
            letter-spacing: -0.02em;
        }

        /* Price Row */
        .plan-price-row {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 1.5rem;
        }

        .plan-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        .plan-period {
            font-size: 1.1rem;
            color: #94a3b8;
            font-weight: 500;
        }

        /* Description */
        .plan-desc {
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        /* Features List */
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 3rem 0;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #cbd5e1;
            /* Light grey text */
            font-size: 1.05rem;
            margin-bottom: 1.2rem;
            font-weight: 500;
        }

        /* The Gradient Bullet Point */
        .plan-features li::before {
            content: '';
            width: 14px;
            height: 14px;
            background: linear-gradient(135deg, #60a5fa, #22d3ee);
            /* Blue/Cyan gradient */
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
        }

        /* Button */
        .btn-get-started {
            display: block;
            width: 100%;
            background: linear-gradient(90deg, #8b5cf6, #38bdf8);
            /* Purple to Cyan */
            color: #000000;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            padding: 18px;
            border-radius: 99px;
            /* Pill shape */
            font-size: 1.1rem;
            transition: opacity 0.2s, transform 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-get-started:hover {
            opacity: 0.95;
            transform: scale(1.02);
        }

        /* --- ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .seo-title {
                font-size: 2.5rem;
            }

            .pricing-card-modern {
                padding: 2rem;
            }

            .plan-price {
                font-size: 2.8rem;
            }
        }
