
        /* --- VARIABLES Y RESET CSS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        :root {
            --deep-space: #0a0a0f;
            --cosmic-purple: #1a0b2e;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --void: #000000;
            --stardust: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
            --blur-amount: 15px;
            --border-radius-card: 20px;
            --core-glow: rgba(0, 243, 255, 0.6);
            --home-shell-max: var(--cw-shell-wide, 1540px);
            --home-shell-pad: var(--cw-shell-pad-x, 5%);
            --home-pad-x: var(--cw-shell-pad-x, 5%);
            --home-pad-y: clamp(0.4rem, 2vw, 2%);
            --home-section-gap: clamp(0.5rem, 2vw, 2%);
            --home-bridge-tight: clamp(0.15rem, 0.6vw, 0.45rem);
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            padding-top: 5.25rem;
        }

        /* --- ESTRUCTURA PRINCIPAL Y FONDO --- */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
            position: relative;
            z-index: 2;
        }

        /* Puente visual: banner ↔ pilares ↔ soluciones */
        .home-intro-bridge {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: var(--home-shell-max);
            margin: 0 auto;
            padding: 0 var(--home-shell-pad) 0;
        }

        .home-intro-bridge::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            transform: none;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(10, 10, 15, 0.02) 45%,
                rgba(10, 10, 15, 0.06) 100%
            );
            pointer-events: none;
            z-index: 0;
        }

        .home-intro-bridge > * {
            position: relative;
            z-index: 1;
        }

        /* Banner completo: grid del hero */
        .home-hero-zone {
            position: relative;
            z-index: 2;
            min-height: auto;
            display: flex;
            flex-direction: column;
            width: calc(100% + (var(--home-shell-pad) * 2));
            max-width: none;
            margin-top: 3%;
            margin-left: calc(var(--home-shell-pad) * -1);
            margin-right: calc(var(--home-shell-pad) * -1);
            margin-bottom: var(--home-bridge-tight);
            padding: 0 0 var(--home-pad-y);
        }

        .home-hero-zone .container {
            flex: 1 1 auto;
            min-height: 0;
            width: 100%;
            max-width: 100%;
        }

        @media (min-width: 1200px) {
            .home-intro-bridge .content-section {
                padding-left: var(--home-pad-x);
                padding-right: var(--home-pad-x);
            }
        }

        .content-section {
            padding: var(--home-pad-y) var(--home-pad-x);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* --- TIPOGRAFÍA Y TEXTOS MEJORADOS --- */
        .badge {
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid var(--matrix-green);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--matrix-green);
            width: fit-content;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
        }

        .badge-mexico {
            background: rgba(185, 103, 255, 0.15);
            border: 1px solid rgba(185, 103, 255, 0.6);
            color: #e6d4ff;
            box-shadow: 0 0 12px rgba(185, 103, 255, 0.4);
            margin-top: 0.5rem;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            border-width: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
        }

        .badge-mexico::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .badge-mexico:hover::before {
            left: 100%;
        }

        .badge-mexico:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(185, 103, 255, 0.5);
            border-color: var(--neon-purple);
        }

        .badge-mexico i {
            flex-shrink: 0;
            font-size: 0.9rem;
            color: #d4b3ff;
        }

        .hero-title {
            font-family: 'Poiret One', sans-serif; 
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 0.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;
            position: relative;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.75rem;
            line-height: 1.65;
            max-width: 90%;
            font-weight: 400;
        }
        
        /* --- Pilares: puente integrado entre banner y cards --- */
        .hero-pillars-band {
            position: relative;
            z-index: 2;
            width: calc(100% + (var(--home-shell-pad) * 2));
            max-width: none;
            margin: 0 calc(var(--home-shell-pad) * -1) var(--home-section-gap);
            padding: 0;
        }

        .hero-pillars-band__inner {
            width: 100%;
            padding: var(--home-bridge-tight) var(--home-pad-x) var(--home-pad-y);
            border: none;
            border-radius: 0;
            overflow: visible;
            background: linear-gradient(
                180deg,
                rgba(10, 10, 15, 0) 0%,
                rgba(10, 10, 15, 0.18) 42%,
                rgba(10, 10, 15, 0.32) 100%
            );
            box-shadow: none;
        }

        .hero-pillars-band .hero-pillars-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.85rem;
            margin: 0 0 0.5rem;
            padding: 0.35rem var(--home-pad-x) 0.65rem;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(0, 243, 255, 0.82);
            border: none;
            background: transparent;
        }

        .hero-pillars-label::before,
        .hero-pillars-label::after {
            content: '';
            flex: 1;
            max-width: 160px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.22), transparent);
        }

        .hero-pillars-row {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0;
            align-items: stretch;
        }

        .hero-pillars-band .feature {
            display: grid;
            grid-template-columns: auto 1fr;
            grid-template-areas:
                "icon title"
                ". desc"
                "btn btn";
            column-gap: 0.65rem;
            row-gap: 0.35rem;
            align-items: start;
            height: 100%;
            padding: var(--home-pad-y) var(--home-pad-x);
            border-radius: 0;
            border: none;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            background: transparent;
            backdrop-filter: none;
            transition: background 0.25s ease;
        }

        .hero-pillars-band .feature:last-child {
            border-right: none;
        }

        .hero-pillars-band .feature:hover {
            background: rgba(0, 243, 255, 0.03);
            box-shadow: none;
            transform: none;
        }

        .hero-pillars-band .feature-icon {
            grid-area: icon;
            align-self: center;
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(0, 243, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 0.95rem;
            border: 1px solid rgba(0, 243, 255, 0.15);
        }

        .hero-pillars-band .feature-text {
            display: contents;
        }

        .hero-pillars-band .feature-text h3 {
            grid-area: title;
            color: #fff;
            margin: 0;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            text-align: left;
            line-height: 1.25;
            align-self: center;
        }

        .hero-pillars-band .feature-text p {
            grid-area: desc;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.78rem;
            line-height: 1.5;
            text-align: left;
            margin: 0;
        }

        .hero-pillar-btn {
            grid-area: btn;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            margin-top: 0.35rem;
            padding: 0.55rem 1rem;
            min-height: var(--cw-btn-h-sm, 44px);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none !important;
            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, color 0.25s ease, box-shadow 0.25s ease;
        }

        .hero-pillar-btn i {
            font-size: 0.62rem;
            transition: transform 0.25s ease;
        }

        .hero-pillar-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);
        }

        .hero-pillar-btn:hover i {
            transform: translateX(2px);
        }

        /* --- Conversión home (CTAs discretos, enlaces internos) --- */
        .cards-section .section-subtitle {
            margin: -1.25rem auto 2.25rem;
            max-width: 42rem;
            font-size: 1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.62);
            line-height: 1.55;
        }

        .home-inline-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin-top: 1.75rem;
            justify-content: center;
        }

        .home-inline-ctas--services {
            margin-top: 2.5rem;
        }

        .ia-module .home-inline-ctas {
            justify-content: flex-start;
        }

        .home-inline-ctas__secondary {
            border-color: rgba(37, 211, 102, 0.35);
            background: rgba(37, 211, 102, 0.08);
        }

        .home-inline-ctas__secondary:hover {
            border-color: rgba(37, 211, 102, 0.55);
            background: rgba(37, 211, 102, 0.14);
        }

        .home-text-link {
            color: var(--neon-blue);
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 0.18em;
            transition: color 0.2s ease;
        }

        .home-text-link:hover {
            color: var(--matrix-green);
        }

        .integrations-note .home-text-link {
            font-weight: 600;
        }

        .services-text .home-text-link,
        .accordion-content .home-text-link {
            font-weight: 500;
        }

        .home-consult-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.85rem;
        }

        .home-consult-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.88rem;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .home-consult-link:hover {
            color: var(--neon-blue);
        }

        .home-consult-link i {
            font-size: 0.72rem;
        }

        /* Legacy .features fuera del hero (otras páginas) */
        .features {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin: 2rem 0;
        }

        .features .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-pillars-band .feature:hover {
                transform: none;
            }

            .hero-pillar-btn:hover i {
                transform: none;
            }
        }

        /* --- MÓDULO DE IA MEJORADO Y FUSIONADO --- */
        .ia-module {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 11, 46, 0.95) 100%);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 40px;
            padding: 4rem 3rem;
            margin: 4rem auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 243, 255, 0.1) inset;
            max-width: 1300px;
            position: relative;
            z-index: 2;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ia-module::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
            animation: rotateGradient 20s linear infinite;
            z-index: -1;
        }

        @keyframes rotateGradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .ia-module:hover {
            border-color: var(--matrix-green);
            box-shadow: 0 12px 40px 0 rgba(0, 255, 157, 0.2);
            transform: translateY(-5px);
        }

        .ia-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.8rem;
            flex-wrap: wrap;
        }

        .ia-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(0, 255, 157, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--matrix-green);
            font-size: 2.2rem;
            border: 1px solid rgba(0, 255, 157, 0.3);
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
            position: relative;
            overflow: hidden;
            animation: pulse 3s infinite;
        }

        .ia-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(0, 255, 157, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: iaGlow 3s linear infinite;
        }

        @keyframes iaGlow {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.5); }
            70% { box-shadow: 0 0 0 20px rgba(0, 255, 157, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
        }

        .ia-text {
            flex: 1;
        }

        .ia-title {
            font-size: 3.2rem;
            font-family: 'Poiret One', sans-serif;
            font-weight: 400;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            letter-spacing: 2px;
        }

        .ia-subtitle {
            color: var(--neon-blue);
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 0.3rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ia-content {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1.1rem;
            text-align: left;
            padding-left: 0.5rem;
            margin: 2rem 0 3rem 0;
            max-width: 900px;
        }

        .ia-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .ia-highlight {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .ia-highlight:hover {
            border-color: var(--neon-blue);
            transform: translateY(-3px);
            background: rgba(0, 243, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
        }

        .ia-highlight-icon {
            color: var(--neon-blue);
            font-size: 2rem;
            margin-bottom: 1.2rem;
        }

        .ia-highlight h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
            text-align: center;
        }

        .ia-highlight p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.5;
            text-align: center;
        }

        /* --- SECCIÓN DE INTEGRACIONES IA - ESTILO COHERENTE --- */
        .integrations-section {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 11, 46, 0.95) 100%);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 40px;
            padding: 4rem 3rem;
            margin: 4rem auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 243, 255, 0.1) inset;
            max-width: 1300px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .integrations-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
            animation: rotateGradient 20s linear infinite;
            z-index: -1;
        }

        .integrations-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .integrations-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(0, 255, 157, 0.15);
            border: 1px solid var(--matrix-green);
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--matrix-green);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
        }

        .integrations-badge i {
            font-size: 1.2rem;
        }

        .integrations-title {
            font-size: 3.2rem;
            font-family: 'Poiret One', sans-serif;
            font-weight: 400;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            letter-spacing: 2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .integrations-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
        }

        .integrations-showcase {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin: 3rem 0;
        }

        .integrations-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .integration-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .integration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), var(--matrix-green), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .integration-card:hover::before {
            transform: translateX(100%);
        }

        .integration-card:hover {
            transform: translateY(-8px);
            border-color: var(--neon-blue);
            box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
            background: rgba(0, 243, 255, 0.05);
        }

        .card-inner {
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-icon-glow {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(185, 103, 255, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--neon-blue);
            margin-bottom: 1.8rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }

        .integration-card:hover .card-icon-glow {
            transform: scale(1.1);
            color: var(--matrix-green);
            box-shadow: 0 0 40px rgba(0, 255, 157, 0.4);
        }

        .card-icon-glow i {
            position: relative;
            z-index: 2;
        }

        .card-inner h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
            background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-inner p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-stats {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-stats span {
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid rgba(0, 255, 157, 0.3);
            color: var(--matrix-green);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }

        .integrations-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .integrations-button {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: var(--deep-space);
            padding: 1.2rem 3rem;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
            border: none;
            cursor: pointer;
        }

        .integrations-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.8);
            gap: 2rem;
        }

        .integrations-button i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .integrations-button:hover i {
            transform: translateX(5px);
        }

        .integrations-note {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }

        /* --- SECCIÓN DE CARDS - ESTILO IDÉNTICO AL PRIMERO --- */
        .cards-section {
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(10px);
        }

        .cards-section--bridge {
            margin-top: var(--home-section-gap);
            margin-bottom: var(--home-section-gap);
            margin-left: calc(var(--home-shell-pad) * -1);
            margin-right: calc(var(--home-shell-pad) * -1);
            width: calc(100% + (var(--home-shell-pad) * 2));
            padding: var(--home-pad-y) var(--home-pad-x) calc(var(--home-pad-y) + 1rem);
            border-radius: 0;
            background: linear-gradient(
                180deg,
                rgba(10, 10, 15, 0.32) 0%,
                rgba(10, 10, 15, 0.68) 22%,
                rgba(10, 10, 15, 0.8) 100%
            );
            backdrop-filter: blur(12px);
        }

        .cards-section--bridge .cards-container {
            max-width: 100%;
        }

        .cards-section--bridge .section-title {
            margin-bottom: 2.25rem;
        }

        .cards-section--bridge .section-subtitle {
            margin-top: -1.5rem;
        }

        .section-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 3rem;
            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-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card {
            background: var(--glass-bg);
            border-radius: var(--border-radius-card);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            z-index: 10;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
            padding: 2.5rem 2rem;
            min-height: 380px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px 0 rgba(0, 243, 255, 0.25);
            border-color: var(--neon-blue);
        }

        .card-icon-container {
            flex-shrink: 0;
            margin-bottom: 2rem;
            text-align: left !important;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 2.0rem;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            margin: 0 !important;
            margin-right: auto !important;
            text-align: left !important;
        }

        .card:hover .card-icon {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        }

        .card-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: var(--stardust);
            font-weight: 700;
            text-align: left;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
        }

        .card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
            flex-grow: 1;
            font-size: 1rem;
            text-align: left;
            font-weight: 400;
        }

        /* --- BOTONES MEJORADOS - SIN SUBRAYADO Y CON DISEÑO MODERNO --- */
        .card-button,
        .modern-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: auto;
            border-radius: 50px;
            text-decoration: none !important;
            cursor: pointer;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            min-height: 50px;
            text-align: center;
            width: 100%;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(185, 103, 255, 0.2));
            border: 1px solid rgba(0, 243, 255, 0.3);
            color: var(--stardust);
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .card-button::before,
        .modern-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .card-button span,
        .modern-button span,
        .card-button i,
        .modern-button i {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .card-button i,
        .modern-button i {
            font-size: 1rem;
        }

        .card-button:hover,
        .modern-button:hover {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.3), rgba(185, 103, 255, 0.3));
            border-color: var(--matrix-green);
            box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
            transform: translateY(-3px);
            color: white;
        }

        .card-button:hover::before,
        .modern-button:hover::before {
            left: 100%;
        }

        .card-button:hover i,
        .modern-button:hover i {
            transform: translateX(5px);
            color: var(--matrix-green);
        }

        .card:hover .card-button,
        .card:hover .modern-button {
            border-color: rgba(0, 243, 255, 0.6);
        }

        /* --- ESTILOS MEJORADOS PARA ICONOS --- */
        .improved-icon {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.25) 0%, rgba(185, 103, 255, 0.25) 100%) !important;
            border: 1px solid rgba(0, 243, 255, 0.4) !important;
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.4) !important;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .improved-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transform: rotate(45deg);
            animation: iconGlow 4s linear infinite;
        }

        @keyframes iconGlow {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        .improved-icon i {
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 0 8px var(--neon-blue));
        }

        .card:hover .improved-icon {
            transform: scale(1.15) rotate(5deg);
            border-color: var(--matrix-green) !important;
            box-shadow: 0 0 35px var(--matrix-green) !important;
        }

        .card:hover .improved-icon i {
            color: var(--matrix-green);
        }

        /* --- SECCIÓN DE SERVICIOS - ESTILO IDÉNTICO --- */
        .services-section {
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
            background: rgba(26, 11, 46, 0.3);
            border-radius: 25px;
            margin: 3rem 0;
        }

        .services-content {
            max-width: 950px;
            margin: 0 auto;
            text-align: left;
        }

        .services-text h2 {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 2rem;
            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-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
            text-align: center;
        }

        .services-text p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 400;
            max-width: 100%;
            margin-left: 0;
            margin-right: auto;
            text-align: center;
        }

        .services-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .highlight {
            padding: 2.5rem 2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            transition: border-color 0.3s ease, transform 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .highlight:hover {
            border-color: var(--neon-blue);
            transform: translateY(-5px);
        }

        .highlight h3 {
            color: var(--neon-blue);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            text-align: left;
        }

        .highlight p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
            text-align: left;
        }

        /* --- SECCIÓN FAQ - ESTILO IDÉNTICO AL PRIMERO --- */
        .faq-section {
            padding: 3rem 0;
            max-width: 900px;
            margin: 4rem auto 3rem;
            position: relative;
            z-index: 20;
        }

        .faq-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            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-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        }

        .section-subtitle {
            margin-bottom: 3rem;
            font-weight: 600;
            color: var(--neon-blue);
            text-align: center;
            font-size: 1.2rem;
        }

        .accordion-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .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 ease;
            position: relative;
            z-index: 21;
        }

        .accordion-item:hover {
            border-color: var(--neon-blue);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--stardust);
            transition: color 0.3s ease;
            text-align: left;
            position: relative;
            z-index: 22;
            background: var(--glass-bg);
        }

        .accordion-header:hover {
            color: var(--neon-blue);
        }

        .accordion-header i {
            font-size: 1rem;
            color: var(--matrix-green);
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 2rem;
        }

        .accordion-content.active {
            max-height: 500px;
            padding: 1rem 1rem 1.2rem 1rem;
        }

        .accordion-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            text-align: left;
        }

        .accordion-header[aria-expanded="true"] i {
            transform: rotate(180deg);
        }

        .accordion-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .accordion-header > * {
            position: relative;
            z-index: 2;
        }
        /* Reseñas Google → assets/css/components/google-reviews.css */
        /* --- MÓDULO DE ASESORÍA PERSONALIZADA --- */
        .personal-consult-module {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: 3rem 2rem;
            margin: 4rem auto;
            text-align: center;
            backdrop-filter: blur(var(--blur-amount));
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .personal-consult-module h3 {
            color: var(--neon-blue);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Poiret One', sans-serif;
        }

        .personal-consult-module p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.35rem;
            font-size: 1.2rem;
            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: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 25px rgba(0, 255, 157, 0.6);
            border: none;
            cursor: pointer;
            min-height: 65px;
        }

        .personal-consult-module .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 35px rgba(0, 255, 157, 0.8);
        }

        /* Núcleo → assets/css/components/nexus-core.css */

        /* Responsive */
        @media (max-width: 1200px) {
            .integrations-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .integrations-title {
                font-size: 2.8rem;
            }
            
            .ia-title {
                font-size: 2.8rem;
            }
            
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .services-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-title {
                font-size: 3.2rem;
            }
            
            .section-title, .services-text h2, .faq-title {
                font-size: 2.8rem;
            }
            
            .ia-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
            
        }

        @media (max-width: 968px) {
    body.page-home {
        --home-shell-pad: 1rem;
        --home-mobile-x: 1rem;
        padding-top: 4.85rem;
    }

    body.page-home .home-intro-bridge {
        padding-left: var(--home-mobile-x, 1rem) !important;
        padding-right: var(--home-mobile-x, 1rem) !important;
        max-width: 100%;
        margin: 0;
    }

    body.page-home .home-hero-zone {
        min-height: 0;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0.15rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.page-home .cards-section--bridge,
    body.page-home .home-flow__services.cards-section--bridge,
    body.page-home .home-flow__services {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: var(--home-mobile-x, 1rem) !important;
        padding-right: var(--home-mobile-x, 1rem) !important;
        box-sizing: border-box;
    }

    .hero-pillars-label::before,
    .hero-pillars-label::after {
        max-width: 56px;
    }

    .container {
        grid-template-columns: 1fr;
    }
            
            .visual-section {
                min-height: clamp(300px, 52vw, 400px);
                max-height: none;
                order: 1;
                padding: 0.5rem 0 0.75rem;
            }
            
            .content-section {
                padding: 0.35rem 0 0.25rem;
                text-align: left;
                order: -1;
                align-items: flex-start;
            }
            
            .hero-title {
                font-size: clamp(1.95rem, 6.5vw, 2.75rem);
                line-height: 1.22;
                padding-block: 0.05em 0.12em;
                overflow: visible;
                text-align: left;
                letter-spacing: 0.5px;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                max-width: 100%;
                margin-bottom: 1.35rem;
                text-align: left;
                line-height: 1.55;
            }
            
            .badge {
                margin: 0 auto 0.65rem !important;
                font-size: 0.75rem;
                padding: 0.55rem 1rem;
                align-self: center;
            }
            
            .badge-mexico {
                margin: 0 auto 0.85rem !important;
                font-size: 0.72rem;
                padding: 0.45rem 0.9rem;
                align-self: center;
            }
            
            .hero-pillars-band {
                padding: 0;
                margin: 0 calc(var(--home-shell-pad) * -1) var(--home-section-gap);
            }

            .hero-pillars-band__inner {
                padding: var(--home-bridge-tight) var(--home-pad-x) var(--home-pad-y);
            }

            .hero-pillars-band .hero-pillars-label {
                padding: 0.35rem var(--home-pad-x) 0.55rem;
            }

            .hero-pillars-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0;
            }

            .hero-pillars-band .feature {
                padding: 1rem 0.85rem;
                column-gap: 0.6rem;
                row-gap: 0.3rem;
                border-right: 1px solid rgba(255, 255, 255, 0.08);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .hero-pillars-band .feature-icon {
                width: 36px;
                height: 36px;
                font-size: 0.88rem;
            }

            .hero-pillars-band .feature-text h3 {
                font-size: 0.88rem;
                line-height: 1.22;
            }

            .hero-pillars-band .hero-pillars-label {
                font-size: 0.62rem;
                letter-spacing: 0.16em;
                padding: 0.25rem 0.85rem 0.45rem;
            }

            .hero-pillar-btn {
                margin-top: 0.45rem;
            }

            .hero-pillars-band .feature:nth-child(2n) {
                border-right: none;
            }

            .hero-pillars-band .feature:nth-last-child(-n+2) {
                border-bottom: none;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .personal-consult-module {
                margin: 2rem auto;
                padding: 2rem 1.5rem;
            }
            
            .ia-module {
                padding: 3rem 2rem;
                margin: 3rem 1.5rem;
            }
            
            .ia-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .ia-title {
                font-size: 2.2rem;
            }
            
            .integrations-section {
                padding: 3rem 2rem;
                margin: 3rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            /* Cards soluciones: grid 2×2 fijo en móvil (sin carrusel horizontal) */
            .cards-section--bridge:not(:has(.cards-container--rail)) {
                position: relative;
                overflow: visible;
            }

            .cards-section--bridge:not(:has(.cards-container--rail))::after {
                display: none;
            }

            .cards-scroll-hint {
                display: none !important;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) {
                display: grid !important;
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                grid-auto-flow: row !important;
                grid-auto-columns: unset !important;
                gap: 0.65rem !important;
                overflow: visible !important;
                scroll-snap-type: none !important;
                padding: 0 !important;
                margin: 0 !important;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card {
                scroll-snap-align: unset;
                min-height: auto;
                padding: 1rem 0.85rem;
                border-radius: 16px;
                background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
                border-color: rgba(0, 243, 255, 0.18);
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card-icon-container {
                margin-bottom: 0 !important;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card-icon {
                width: 40px !important;
                height: 40px !important;
                font-size: 1.1rem !important;
                border-radius: 12px;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card h3 {
                font-size: var(--cw-title-card) !important;
                margin-bottom: 0.25rem !important;
                line-height: 1.32;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card p {
                font-size: var(--cw-text-card) !important;
                line-height: 1.45;
                margin-bottom: 0.65rem !important;
                display: -webkit-box;
                -webkit-line-clamp: 5;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card-button,
            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .modern-button {
                padding: 0.55rem 0.75rem !important;
                font-size: clamp(0.75rem, 2.6vw, 0.85rem) !important;
                min-height: var(--cw-btn-h-sm, 44px) !important;
                letter-spacing: 0.4px;
                gap: 0.35rem;
            }

            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .card-button span,
            .cards-container:not(.cards-container--rail):not(.cards-grid-balanced) .modern-button span {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .ia-highlights {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .ia-highlight {
                padding: 1rem 1.05rem;
                text-align: left;
            }

            .ia-highlight h4 {
                font-size: clamp(1.05rem, 4vw, 1.2rem);
                text-align: left;
            }

            .ia-highlight p {
                font-size: clamp(0.86rem, 3.2vw, 0.95rem);
                line-height: 1.5;
                text-align: left;
            }

            .ia-highlight-icon {
                font-size: 1.15rem;
                margin-bottom: 0;
            }
            
            .cards-section--bridge .section-title {
                text-align: left;
                font-size: clamp(1.75rem, 6vw, 2.15rem);
                margin-bottom: 1rem;
                letter-spacing: 1px;
            }

            .cards-section .section-subtitle {
                margin: 0 0 1.35rem;
                text-align: left;
                font-size: 0.92rem;
                max-width: none;
                line-height: 1.5;
            }

            .cards-section--bridge {
                padding: 1.15rem 1rem 1.35rem;
                background: transparent !important;
                background-image: none !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                border-radius: 0;
                overflow: visible;
            }

            .integrations-row {
                grid-template-columns: 1fr !important;
                gap: 0.75rem;
            }
            
            .integrations-section {
                padding: 1.75rem 1.1rem;
                margin: 1.75rem 0.85rem;
                border-radius: 22px;
            }
            
            .integrations-title {
                font-size: clamp(1.85rem, 7vw, 2.25rem);
                line-height: 1.28;
                text-align: center;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            }
            
            .integrations-badge {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }
            
            .integrations-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .card-inner {
                padding: 1.5rem 1rem;
            }
            
            .card-icon-glow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            
            .card-inner h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            
            .card-inner p {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 1rem;
            }
            
            .card-stats span {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
            }
            
            .integrations-cta {
                margin-top: 2rem;
            }
            
            .integrations-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                gap: 1rem;
            }
            
            .ia-title {
                font-size: 2rem;
            }
            
            .integrations-subtitle {
                font-size: 1.1rem;
            }

            .integration-card .card-inner {
                padding: 1.5rem 1rem;
            }
            
            .card-icon-container {
                text-align: left !important;
                margin-bottom: 1rem !important;
            }

            .integration-card .card-icon-glow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .integration-card .card-inner h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .integration-card .card-inner p {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 1rem;
            }
            
            .services-highlights {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2.5rem;
            }
            
            .highlight {
                padding: 1.5rem;
            }
            
            .highlight h3, .highlight p {
                text-align: center;
            }
            
            .carousel-controls {
                gap: 1rem;
            }
            
            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .section-title, .services-text h2, .faq-title {
                font-size: clamp(1.85rem, 5.5vw, 2.25rem);
                text-align: left;
            }

            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                text-align: left;
            }
            
            .services-text p {
                font-size: 1.1rem;
                text-align: left;
            }
            
            .ia-highlights {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .ia-module {
                padding: 1.75rem 1.2rem;
                margin: 1.75rem 1rem;
                border-radius: 22px;
            }
            
            .ia-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .ia-icon {
                width: 70px;
                height: 70px;
                margin: 0 auto;
            }
            
            .ia-title {
                text-align: center;
                font-size: 2rem;
            }
            
            .ia-subtitle {
                text-align: center;
            }
            
            .ia-content {
                text-align: center;
                padding-left: 0;
            }
        }

        @media (max-width: 480px) {
            body.page-home {
                padding-top: 4.65rem;
            }

            .home-hero-zone {
                margin-top: 0;
            }

            body.page-home .home-hero-zone .content-section {
                padding: 0.35rem 0 0.25rem;
            }

            .hero-pillars-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-pillars-band .feature {
                border-right: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            body.page-home .cards-section,
            body.page-home .services-section,
            body.page-home .faq-section,
            body.page-home .reviews-section,
            body.page-home .integrations-section {
                padding-top: 1.25rem;
                padding-bottom: 1.25rem;
            }

            .services-section,
            .faq-section,
            .reviews-section,
            .integrations-section {
                padding-left: var(--home-mobile-x, 1rem);
                padding-right: var(--home-mobile-x, 1rem);
            }
            
            .hero-title {
                font-size: clamp(1.75rem, 8.5vw, 2.1rem);
                letter-spacing: 0.25px;
                text-align: left;
            }
            
            .section-title, .services-text h2, .faq-title, .integrations-title, .ia-title {
                font-size: clamp(1.65rem, 6.5vw, 1.95rem);
                margin-bottom: 1.35rem;
                text-align: left;
            }
            
            .services-text p {
                font-size: 1.1rem;
                text-align: center;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.5;
                text-align: left;
            }
            
            .badge {
                font-size: 0.68rem !important;
                padding: 0.45rem 0.85rem !important;
                white-space: normal;
                width: auto;
                max-width: 100%;
                display: inline-flex;
                align-items: center;
                gap: 0.55rem;
                margin: 0 auto 0.5rem !important;
                align-self: center;
            }
            
            .badge-mexico {
                font-size: 0.64rem !important;
                padding: 0.38rem 0.75rem !important;
                letter-spacing: 1px;
                margin: 0 auto 0.75rem !important;
                align-self: center;
            }
            
            .card-button,
            .modern-button {
                padding: 0.65rem 1.1rem !important;
                font-size: var(--cw-btn-fs-sm, 0.8rem) !important;
                min-height: var(--cw-btn-h-sm, 44px) !important;
            }

            .cards-container .card-button,
            .cards-container .modern-button {
                padding: 0.55rem 0.75rem !important;
                font-size: clamp(0.75rem, 2.6vw, 0.85rem) !important;
                min-height: var(--cw-btn-h-sm, 44px) !important;
            }
            
            .integrations-row {
                grid-template-columns: 1fr !important;
                gap: 0.75rem;
            }
            
            .integrations-section {
                padding: 1.5rem 1rem;
            }
            
            .integrations-title {
                font-size: clamp(1.75rem, 7vw, 2.15rem);
                text-align: center;
            }
            
            .integrations-badge {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
            }
            
            .integrations-subtitle {
                font-size: 0.95rem;
                padding: 0 0.5rem;
                text-align: center;
            }
            
            .card-inner {
                padding: 1.05rem 1.1rem;
            }
            
            .card-icon-glow {
                width: 42px;
                height: 42px;
                font-size: 1.15rem;
                margin-bottom: 0;
            }
            
            .card-inner h3 {
                font-size: clamp(1.05rem, 4vw, 1.2rem);
            }
            
            .card-inner p {
                font-size: clamp(0.86rem, 3.2vw, 0.95rem);
                line-height: 1.5;
                margin-bottom: 0.5rem;
            }
            
            .card-stats span {
                font-size: 0.75rem;
                padding: 0.2rem 0.6rem;
            }
            
            .integrations-button {
                padding: 0.7rem 1.2rem;
                font-size: 0.8rem;
                gap: 0.8rem;
            }
            
            .accordion-header {
                padding: 1rem 1.2rem;
                font-size: 1rem;
                text-align: left;
            }
            
            .accordion-content {
                padding: 0 1.2rem;
            }
            
            .accordion-content.active {
                padding: 1rem 1rem 1.2rem 1rem;
            }
            
            .accordion-content p {
                font-size: 0.9rem;
                text-align: left;
            }
            
            .personal-consult-module {
                margin: 2rem auto !important;
                padding: 1.5rem 1rem;
                width: 90%;
            }
            
            .personal-consult-module h3 {
                font-size: 1.4rem;
            }
            
            .personal-consult-module p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .personal-consult-module .cta-button {
                font-size: 0.7rem;
                padding: 1rem 1.5rem;
                min-height: 55px;
            }
            
            .ia-module {
                padding: 1.5rem;
                margin: 2rem 0.5rem;
                border-radius: 25px;
            }
            
            .ia-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .ia-title {
                font-size: 1.8rem;
                line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            }
            
            .ia-subtitle {
                font-size: 0.9rem;
            }
            
            .ia-content {
                font-size: 1rem;
                line-height: 1.6;
                margin: 1.5rem 0 2rem 0;
            }
            
            .ia-highlight {
                padding: 1.5rem 1rem;
            }
            
            .ia-highlight-icon {
                font-size: 1.8rem;
            }
            
            .ia-highlight h4 {
                font-size: 1.1rem;
            }
            
            .ia-highlight p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .hero-title {
                font-size: 1.8rem;
                text-align: left;
            }
            
            .section-title, .services-text h2, .faq-title, .integrations-title, .ia-title {
                font-size: 1.7rem;
            }
            
            .badge {
                font-size: 0.65rem !important;
                padding: 0.4rem 0.8rem !important;
            }
            
            .badge-mexico {
                font-size: 0.6rem !important;
                padding: 0.3rem 0.6rem !important;
            }
            
            .quantum-orb {
                width: 200px;
                height: 200px;
            }
            
            .integrations-row {
                grid-template-columns: 1fr !important;
                gap: 0.7rem;
            }
            
            .integrations-title {
                font-size: clamp(1.7rem, 7vw, 2.1rem);
                text-align: center;
            }
            
            .card-inner {
                padding: 1rem 1.05rem;
            }
            
            .card-icon-glow {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                margin-bottom: 0;
            }
            
            .card-inner h3 {
                font-size: 0.85rem;
            }
            
            .card-inner p {
                font-size: 0.7rem;
                line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
                margin-bottom: 0.6rem;
            }
            
            .card-stats span {
                font-size: 0.55rem;
                padding: 0.15rem 0.5rem;
            }
            
            .ia-icon {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            
            .ia-title {
                font-size: 1.5rem;
            }
            
            .ia-content {
                font-size: 0.95rem;
            }
        }

        .cards-scroll-hint {
            display: none;
        }
    