
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }

        :root {
            --deep-space: #0a0a0f;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --stardust: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-top: 6rem;
        }

        #particles-js {
            position: fixed;
            inset: 0;
            z-index: 1;
        }

        .top-content-wrapper { width: 100%; position: relative; z-index: 2; }

        .container {
            display: block;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .container--hero {
            padding: 0 1.5rem;
        }

        .hero-section {
            padding: 3rem 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            text-align: left;
        }

        .hero-intro {
            width: 100%;
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .content-section {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .full-width-section {
            width: 100%;
            padding: 2rem 1.5rem 3rem;
            position: relative;
            z-index: 2;
        }

        .seo-sim-section {
            position: relative;
            width: 100%;
            margin: 0 0 2.5rem;
            padding: 0;
        }

        .seo-sim-section::before {
            content: '';
            position: absolute;
            inset: -15% -5%;
            background: radial-gradient(ellipse at 50% 50%, rgba(0, 255, 157, 0.08) 0%, rgba(0, 243, 255, 0.05) 40%, transparent 72%);
            pointer-events: none;
        }

        .visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 640px;
            overflow: hidden;
        }

        .visual-section::before {
            content: '';
            position: absolute;
            inset: -10% 0;
            background: radial-gradient(ellipse at 50% 45%, rgba(0, 255, 157, 0.08) 0%, rgba(0, 243, 255, 0.05) 40%, transparent 72%);
            pointer-events: none;
        }

        .badge {
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid rgba(0, 243, 255, 0.4);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--neon-blue);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
            width: fit-content;
            margin: 0 0 2rem;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .hero-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-align: center;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            line-height: 1.7;
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            text-align: center;
        }

        .hero-subtitle strong {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 600;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem 2rem;
            margin: 2.5rem 0 0;
            width: 100%;
            text-align: left;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(0, 243, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-icon.green {
            background: rgba(0, 255, 157, 0.1);
            color: var(--matrix-green);
        }

        .feature-text h3 {
            color: white;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .cta-container {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: rgba(0, 243, 255, 0.1);
            color: var(--neon-blue);
            padding: 1rem 2.2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 243, 255, 0.2);
            backdrop-filter: blur(10px);
            letter-spacing: 0.5px;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
        }

        .seo-card-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 1rem;
            padding: 0.42rem 0.85rem;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 999px;
            border: 1px solid rgba(0, 243, 255, 0.32);
            color: var(--stardust);
            background: rgba(0, 243, 255, 0.07);
            transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .seo-card-btn i { font-size: 0.62rem; transition: transform 0.25s ease; }

        .seo-card-btn:hover {
            background: rgba(0, 243, 255, 0.14);
            border-color: rgba(0, 255, 157, 0.45);
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 243, 255, 0.15);
        }

        .seo-card-btn:hover i { transform: translateX(2px); }

        .sw-section {
            max-width: 1100px;
            margin: 0 auto 3.5rem;
            padding: 0 0.5rem;
        }

        .sw-section-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 2.4rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .sw-section-lead {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .sw-section-lead strong { color: rgba(255, 255, 255, 0.9); }

        .sw-signals {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1.5rem 1.75rem;
            backdrop-filter: blur(8px);
        }

        .sw-signals-title {
            font-size: 1rem;
            color: var(--matrix-green);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sw-signals-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem 1.5rem;
        }

        .sw-signals-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.5;
        }

        .sw-signals-list i {
            color: var(--matrix-green);
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .sw-use-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .sw-use-card {
            padding: 1.35rem;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
            transition: border-color 0.2s ease, transform 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .sw-use-card:hover {
            border-color: rgba(185, 103, 255, 0.45);
            transform: translateY(-2px);
        }

        .sw-use-card > i {
            font-size: 1.35rem;
            color: var(--neon-purple);
            margin-bottom: 0.75rem;
        }

        .sw-use-card h3 {
            font-size: 1rem;
            color: #fff;
            margin-bottom: 0.45rem;
        }

        .sw-use-card p {
            font-size: 0.86rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.62);
            flex: 1;
        }

        .sw-compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .sw-compare-col {
            padding: 1.5rem;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
        }

        .sw-compare-col h3 {
            font-size: 1.05rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .sw-compare-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .sw-compare-col li {
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.72);
            padding-left: 1.1rem;
            position: relative;
        }

        .sw-compare-col li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }

        .sw-compare-col--custom {
            border-color: rgba(185, 103, 255, 0.35);
            box-shadow: 0 0 30px rgba(185, 103, 255, 0.08);
        }

        .sw-compare-col--custom h3 { color: var(--neon-purple); }

        .seo-tech-intro {
            font-size: 0.82rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.58);
            margin: -0.35rem 0 1rem;
        }

        .seo-tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .seo-tech-tags span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.78);
            background: rgba(0, 243, 255, 0.08);
            border: 1px solid rgba(0, 243, 255, 0.2);
        }

        .seo-tech-tags i {
            font-size: 0.65rem;
            color: var(--neon-blue);
        }

        .sw-process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .sw-process-step {
            padding: 1.25rem;
            border-radius: 14px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.03);
        }

        .sw-process-num {
            display: inline-flex;
            width: 32px;
            height: 32px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: rgba(0, 243, 255, 0.12);
            color: var(--neon-blue);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .sw-process-step h3 {
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 0.4rem;
        }

        .sw-process-step p {
            font-size: 0.84rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.62);
        }

        .faq-section {
            padding: 2rem 0;
            margin-bottom: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-section h2 {
            font-family: 'Poiret One', sans-serif;
            font-size: 2.8rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 0.8rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
        }

        .section-label {
            text-align: center;
            font-weight: 600;
            color: var(--neon-blue);
            font-size: 1rem;
            margin-bottom: 2.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: block;
        }

        .accordion-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s;
        }

        .accordion-item:hover { border-color: var(--neon-blue); }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.4rem 2rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--stardust);
            transition: color 0.3s;
        }

        .accordion-header:hover { color: var(--neon-blue); }

        .accordion-header i {
            font-size: 1rem;
            color: var(--matrix-green);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .accordion-header[aria-expanded="true"] i { transform: rotate(180deg); }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 2rem;
        }

        .accordion-content.active {
            max-height: 400px;
            padding: 0.5rem 2rem 1.5rem;
        }

        .accordion-content p {
            font-size: 0.93rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.72);
        }

        .personal-consult-module {
            background: var(--glass-bg);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 25px;
            padding: 3rem 2rem;
            margin-top: 2rem;
            margin-bottom: 4rem;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.1);
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
        }

        .personal-consult-module h3 {
            font-family: 'Poiret One', sans-serif;
            color: var(--neon-blue);
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
        }

        .personal-consult-module p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .personal-consult-module .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 25px rgba(0, 255, 157, 0.5);
            min-height: 58px;
            border: none;
        }

        .personal-consult-module .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(0, 255, 157, 0.75);
        }

        /* --- SIMULADOR GOOGLE + IA --- */
        .seo-search-sim {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .seo-search-sim__row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            width: 100%;
            align-items: stretch;
        }

        .seo-sim-panel {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .seo-g-window,
        .seo-ai-window {
            flex: 1;
        }

        .seo-search-sim__glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 120%;
            transform: translate(-50%, -50%);
            background: radial-gradient(ellipse at center, rgba(0, 255, 157, 0.12) 0%, rgba(0, 243, 255, 0.07) 45%, rgba(185, 103, 255, 0.05) 65%, transparent 78%);
            filter: blur(36px);
            pointer-events: none;
            animation: seoSimGlow 5s ease-in-out infinite;
        }

        @keyframes seoSimGlow {
            0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
        }

        .seo-sim-panel__label {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 0.45rem;
            padding-left: 0.25rem;
        }

        .seo-sim-panel__label i { font-size: 0.85rem; }

        .seo-sim-panel--google .seo-sim-panel__label i { color: #4285f4; }
        .seo-sim-panel--ai .seo-sim-panel__label i { color: var(--matrix-green); }

        .seo-sim-panel__badge {
            margin-left: auto;
            padding: 0.15rem 0.55rem;
            border-radius: 999px;
            font-size: 0.58rem;
            letter-spacing: 0.06em;
        }

        .seo-sim-panel__badge--g {
            background: rgba(0, 255, 157, 0.12);
            border: 1px solid rgba(0, 255, 157, 0.35);
            color: var(--matrix-green);
        }

        .seo-sim-panel__badge--ai {
            background: rgba(185, 103, 255, 0.12);
            border: 1px solid rgba(185, 103, 255, 0.35);
            color: var(--neon-purple);
        }

        .seo-g-window,
        .seo-ai-window {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
        }

        .seo-g-window {
            background: #f8f9fa;
            position: relative;
            min-height: 280px;
            height: 100%;
        }

        .seo-g-chrome {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.65rem;
            background: #e8eaed;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .seo-g-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .seo-g-dot--r { background: #ff5f57; }
        .seo-g-dot--y { background: #febc2e; }
        .seo-g-dot--g { background: #28c840; }

        .seo-g-url {
            flex: 1;
            text-align: center;
            font-size: 0.62rem;
            color: rgba(0, 0, 0, 0.45);
            margin-right: 2rem;
        }

        .seo-g-toolbar {
            padding: 0.65rem 0.75rem 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.55rem;
        }

        .seo-g-logo {
            font-family: 'Inter', sans-serif;
            font-size: 1.35rem;
            letter-spacing: -1px;
        }

        .seo-g-logo b:nth-child(1) { color: #4285f4; font-weight: 500; }
        .seo-g-logo b:nth-child(2) { color: #ea4335; font-weight: 500; }
        .seo-g-logo b:nth-child(3) { color: #fbbc05; font-weight: 500; }
        .seo-g-logo b:nth-child(4) { color: #4285f4; font-weight: 500; }
        .seo-g-logo b:nth-child(5) { color: #34a853; font-weight: 500; }
        .seo-g-logo b:nth-child(6) { color: #ea4335; font-weight: 500; }

        .seo-g-search {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 0.85rem;
            background: #fff;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
            min-height: 38px;
        }

        .seo-g-search i {
            color: #9aa0a6;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .seo-g-query {
            flex: 1;
            font-size: 0.78rem;
            color: #202124;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .seo-g-cursor {
            color: #4285f4;
            animation: seoCursorBlink 1s step-end infinite;
            font-weight: 300;
        }

        .seo-g-cursor.is-hidden { display: none; }

        @keyframes seoCursorBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .seo-g-meta {
            display: flex;
            justify-content: space-between;
            padding: 0.35rem 0.85rem 0.25rem;
            font-size: 0.62rem;
            color: #70757a;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .seo-g-meta--visible { opacity: 1; }

        .seo-g-results {
            padding: 0.25rem 0.85rem 0.85rem;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.45s ease, transform 0.45s ease;
        }

        .seo-g-results--visible {
            opacity: 1;
            transform: translateY(0);
        }

        .seo-g-result {
            display: flex;
            gap: 0.5rem;
            padding: 0.55rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .seo-g-result:last-child { border-bottom: none; }

        .seo-g-rank {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.62rem;
            font-weight: 800;
            background: rgba(0, 0, 0, 0.06);
            color: #70757a;
            margin-top: 2px;
        }

        .seo-g-rank--muted { font-weight: 600; font-size: 0.58rem; }

        .seo-g-result--top {
            background: linear-gradient(90deg, rgba(0, 255, 157, 0.12) 0%, transparent 85%);
            border-radius: 8px;
            padding: 0.55rem 0.45rem;
            margin: 0 -0.45rem;
            border-bottom: none;
        }

        .seo-g-result--top .seo-g-rank {
            background: linear-gradient(135deg, #00ff9d, #00c878);
            color: #0a1628;
            box-shadow: 0 2px 8px rgba(0, 255, 157, 0.35);
        }

        .seo-g-result h4 {
            font-size: 0.82rem;
            font-weight: 500;
            color: #1a0dab;
            margin-bottom: 0.15rem;
            line-height: 1.3;
        }

        .seo-g-result--top h4 { color: #0d652d; font-weight: 600; }

        .seo-g-result cite {
            display: block;
            font-size: 0.65rem;
            color: #006621;
            font-style: normal;
            margin-bottom: 0.2rem;
        }

        .seo-g-result p {
            font-size: 0.68rem;
            color: #4d5156;
            line-height: 1.45;
        }

        .seo-g-loading {
            position: absolute;
            inset: 0;
            top: 88px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 2rem;
            background: rgba(248, 249, 250, 0.85);
            gap: 0.35rem;
        }

        .seo-g-loading.is-hidden { display: none; }

        .seo-g-loading span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4285f4;
            animation: seoGLoadDot 1.2s ease-in-out infinite;
        }

        .seo-g-loading span:nth-child(2) { animation-delay: 0.15s; background: #ea4335; }
        .seo-g-loading span:nth-child(3) { animation-delay: 0.3s; background: #34a853; }

        @keyframes seoGLoadDot {
            0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
            40% { transform: scale(1); opacity: 1; }
        }

        /* --- Panel ChatGPT --- */
        .seo-ai-window {
            background: #343541;
        }

        .seo-ai-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 0.85rem;
            background: #202123;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .seo-ai-avatar {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: linear-gradient(135deg, #10a37f, #1a7f64);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.65rem;
        }

        .seo-ai-header strong {
            font-size: 0.82rem;
            color: #ececf1;
            font-weight: 600;
        }

        .seo-ai-model {
            margin-left: auto;
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.35);
            padding: 0.15rem 0.45rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
        }

        .seo-ai-body {
            padding: 0.75rem;
            min-height: 240px;
            max-height: 280px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .seo-ai-msg--assistant {
            align-items: flex-start;
        }

        .seo-ai-msg__content {
            flex: 1;
            min-width: 0;
            font-size: 0.72rem;
            line-height: 1.5;
            color: #d1d5db;
        }

        .seo-ai-intro {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.7rem;
            line-height: 1.45;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .seo-ai-intro.seo-ai-rec--visible {
            opacity: 1;
            transform: translateY(0);
        }

        .seo-ai-results {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .seo-ai-rec {
            display: flex;
            gap: 0.45rem;
            padding: 0.45rem 0.5rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            opacity: 0;
            transform: translateY(6px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .seo-ai-rec--visible {
            opacity: 1;
            transform: translateY(0);
        }

        .seo-ai-rec--top {
            background: rgba(16, 163, 127, 0.12);
            border-color: rgba(16, 163, 127, 0.35);
        }

        .seo-ai-rec__num {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.5);
            margin-top: 1px;
        }

        .seo-ai-rec--top .seo-ai-rec__num {
            background: #10a37f;
            color: #fff;
        }

        .seo-ai-rec__body { min-width: 0; }

        .seo-ai-rec__head {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem;
            margin-bottom: 0.15rem;
        }

        .seo-ai-rec__head strong {
            color: #ececf1;
            font-size: 0.72rem;
            font-weight: 600;
        }

        .seo-ai-rec--top .seo-ai-rec__head strong { color: #10a37f; }

        .seo-ai-rec__tag {
            font-size: 0.52rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.1rem 0.4rem;
            border-radius: 999px;
            background: rgba(16, 163, 127, 0.2);
            color: #10a37f;
            border: 1px solid rgba(16, 163, 127, 0.35);
        }

        .seo-ai-rec__body p {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.4;
        }

        .seo-ai-msg {
            display: flex;
            gap: 0.5rem;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .seo-ai-msg.is-hidden { display: none; }

        .seo-ai-msg--enter { display: flex; }

        .seo-ai-msg--visible {
            opacity: 1;
            transform: translateY(0);
        }

        .seo-ai-msg--user { justify-content: flex-end; }

        .seo-ai-msg--user .seo-ai-msg__bubble {
            background: #2f2f3a;
            color: #ececf1;
            border-radius: 14px 14px 4px 14px;
            max-width: 92%;
        }

        .seo-ai-msg--assistant .seo-ai-msg__bubble {
            background: transparent;
            color: #d1d5db;
            padding-left: 0;
            font-size: 0.72rem;
            line-height: 1.55;
        }

        .seo-ai-msg__bubble {
            padding: 0.55rem 0.75rem;
            font-size: 0.72rem;
            line-height: 1.45;
        }

        .seo-ai-msg__bubble strong { color: #10a37f; font-weight: 600; }

        .seo-ai-msg__avatar {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 4px;
            background: #10a37f;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.6rem;
            margin-top: 2px;
        }

        .seo-ai-typing {
            display: flex;
            gap: 0.35rem;
            padding: 0.35rem 0.5rem;
        }

        .seo-ai-typing.is-hidden { display: none; }

        .seo-ai-typing span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.35);
            animation: seoAiTypeDot 1.2s ease-in-out infinite;
        }

        .seo-ai-typing span:nth-child(2) { animation-delay: 0.15s; }
        .seo-ai-typing span:nth-child(3) { animation-delay: 0.3s; }

        @keyframes seoAiTypeDot {
            0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
            40% { transform: translateY(-4px); opacity: 1; }
        }

        .seo-sim-caption {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            justify-content: flex-start;
            margin-top: 0.75rem;
        }

        .seo-sim-caption__pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.65);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .seo-sim-caption__pill i { font-size: 0.68rem; color: var(--neon-blue); }
        .seo-sim-caption__pill:nth-child(2) i { color: var(--matrix-green); }
        .seo-sim-caption__pill:nth-child(3) i { color: var(--neon-purple); }

        @media (prefers-reduced-motion: reduce) {
            .seo-search-sim__glow { animation: none; opacity: 0.5; }
            .seo-g-cursor { animation: none; }
        }

        @media (max-width: 1200px) {
            .sw-use-grid { grid-template-columns: repeat(2, 1fr); }
            .sw-process-steps { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 968px) {
            .hero-section { padding: 2.5rem 0 1.5rem; }
            .hero-title { font-size: 2.8rem; }
            .hero-subtitle { max-width: 100%; font-size: 1.05rem; }
            .seo-sim-section { max-width: 100%; margin-bottom: 2rem; }
            .seo-search-sim__row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
            .features { grid-template-columns: 1fr; }
            .cta-container { justify-content: center; }
            .sw-signals-list { grid-template-columns: 1fr; }
            .sw-compare-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .sw-use-grid { grid-template-columns: 1fr; }
            .seo-search-sim__row { grid-template-columns: 1fr; gap: 1.75rem; max-width: 400px; }
            .features { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            body { padding-top: 5rem; }
            .container--hero { padding: 0 1rem; }
            .hero-section { padding: 2rem 0 1rem; }
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
            .cta-container { flex-direction: column; align-items: center; }
            .cta-button { width: 100%; justify-content: center; }
            .sw-process-steps { grid-template-columns: 1fr; }
            .full-width-section { padding: 2rem 1rem; }
            .faq-section h2 { font-size: 1.9rem; }
            .sw-section-title { font-size: 2rem; }
            .personal-consult-module { padding: 2rem 1.25rem; }
        }
