
        /* --- 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);
            /* Colores para Glassmorphism */
            --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;
        }

        /* --- ESTRUCTURA PRINCIPAL Y FONDO --- */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            z-index: 2;
            max-width: 100%;
            margin: 0 auto;
        }

        .container--hero {
            max-width: var(--cw-shell-wide, 1540px);
            padding: 0 1.5rem;
        }

        .hero-section {
            display: flex;
            flex-direction: column;
            width: 100%;
            grid-column: 1 / -1;
        }

        @media (min-width: 969px) {
            .container--hero {
                display: grid;
                grid-template-columns: 1fr 1fr;
                align-items: start;
            }

            .hero-section {
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-areas:
                    "intro visual"
                    "features visual"
                    "cta visual";
                gap: 0 2rem;
                align-items: start;
            }

            .hero-intro { grid-area: intro; padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 1rem 0.5rem 0; }
            .visual-section { grid-area: visual; align-self: center; }
            .features { grid-area: features; padding: 0; }
            .cta-container { grid-area: cta; padding: 0.75rem 0 2rem; }
        }

        .hero-intro {
            padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 0 0.5rem;
        }

        /* Contenedor principal de ancho completo (FAQ y Asesoría) */
        .full-width-section {
            width: 100%;
            padding: 2rem 1.5rem; 
            position: relative;
            z-index: 2;
        }

        /* Contenedor del contenido superior */
        .top-content-wrapper {
            width: 100%;
        }

        .content-section {
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .visual-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 580px;
            overflow: visible;
            padding: 1.5rem 1rem 2rem;
        }

        .visual-section::before {
            content: '';
            position: absolute;
            inset: -10% 0;
            background: radial-gradient(ellipse at 50% 42%, rgba(0, 243, 255, 0.09) 0%, rgba(185, 103, 255, 0.04) 38%, transparent 72%);
            pointer-events: none;
        }

        /* --- TIPOGRAFÍA Y TEXTOS --- */
        .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-bottom: 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;
            position: relative;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            line-height: 1.7;
            max-width: 90%;
            font-weight: 300;
        }

        /* --- PROCESO DE DESARROLLO --- */
        .features {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 1rem 0 0.5rem;
            max-width: 90%;
            padding-left: 0;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .feature:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            flex: 0 0 40px;
            margin-top: 0.1rem;
            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;
            font-weight: 800;
        }

        .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;
        }

        /* --- CALL TO ACTION (CTA) --- */
        .cta-container {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.7rem;
            margin-top: 1.25rem;
            margin-bottom: 3rem;
            max-width: 90%;
            padding-left: 0;
        }

        .cta-button {
            display: inline-flex;
            align-items: 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);
        }

        /* --- FAQ ACCORDION --- */
        .faq-section { padding:2rem 0; margin-bottom:3rem; }
        .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; max-width:900px; margin-left:auto; margin-right:auto; }
        .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:.5rem 2rem 1.5rem; }
        .accordion-content p { font-size:0.93rem; line-height:1.65; color:rgba(255,255,255,0.72); }

        /* --- MÓDULO CTA FINAL --- */
        .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; transition:all 0.3s; 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); }

        /* --- SECCIONES EDUCATIVAS --- */
        .sw-section {
            max-width: var(--cw-shell-wide, 1540px);
            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;
        }

        .corp-inline-link,
        .hero-section .hero-subtitle a,
        .sw-section-lead a,
        .sw-process-note a:not(.cw-chip),
        .accordion-content a {
            color: #a8eef6;
            font-weight: 500;
            text-decoration: underline;
            text-decoration-color: rgba(0, 243, 255, 0.38);
            text-decoration-thickness: 1px;
            text-underline-offset: 0.2em;
            text-decoration-skip-ink: auto;
            border-bottom: none;
            padding-bottom: 0;
            border-radius: 0;
            background: none;
            text-shadow: none;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }

        .corp-inline-link:hover,
        .hero-section .hero-subtitle a:hover,
        .sw-section-lead a:hover,
        .sw-process-note a:not(.cw-chip):hover,
        .accordion-content a:hover {
            color: #c9ffe8;
            text-decoration-color: rgba(0, 255, 157, 0.55);
            text-shadow: none;
            background: none;
            border-bottom-color: transparent;
        }

        .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;
        }

        .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: 0;
        }

        .sw-use-card h3 {
            font-size: 1rem;
            color: #fff;
            margin: 0;
        }

        .sw-use-card p {
            font-size: 0.86rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.62);
        }

        .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);
        }

        .sw-compare-col h3 {
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .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(--neon-blue);
        }

        .sw-compare-col--generic {
            opacity: 0.85;
        }

        .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);
        }

        .sw-compare-col--custom li::before {
            color: var(--matrix-green);
        }

        .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);
        }

        .sw-process-note {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .sw-process-note a:not(.cw-chip) {
            color: #a8eef6;
            font-weight: 500;
            text-decoration: underline;
            text-decoration-color: rgba(0, 243, 255, 0.38);
            text-decoration-thickness: 1px;
            text-underline-offset: 0.2em;
            border-bottom: none;
            padding-bottom: 0;
            background: none;
            text-shadow: none;
        }

        .sw-process-note a:not(.cw-chip):hover {
            color: #c9ffe8;
            text-decoration-color: rgba(0, 255, 157, 0.55);
            text-shadow: none;
            background: none;
        }

        /* --- DIAGRAMA CLOUD FLOW (integrado al banner, sin caja) --- */
        .sw-cloud-flow {
            position: relative;
            width: 100%;
            max-width: 100%;
            min-height: auto;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            border: none;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
            overflow: visible;
        }

        .sw-cloud-flow::before {
            display: none;
        }

        .sw-cloud-flow__diagram {
            position: relative;
            width: 100%;
            max-width: 680px;
            margin: 0 auto;
            padding: 0.25rem clamp(0.85rem, 4vw, 1.25rem) 1rem;
            box-sizing: border-box;
        }

        .sw-cloud-flow__progress {
            position: relative;
            width: 100%;
            height: 3px;
            margin: 0 0 0.75rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .sw-cloud-flow__progress-bar {
            display: block;
            height: 100%;
            width: 12%;
            border-radius: inherit;
            background: linear-gradient(90deg, #00f3ff, #b967ff, #00ff9d);
            box-shadow: 0 0 12px rgba(0, 243, 255, 0.35);
            transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .sw-cloud-coach {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            width: 100%;
            margin: 0 0 1rem;
            padding: 0.75rem 0.95rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 243, 255, 0.14);
            background: rgba(0, 243, 255, 0.04);
        }

        .sw-cloud-coach__icon {
            flex: 0 0 auto;
            width: 1.35rem;
            height: 1.35rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(0, 243, 255, 0.12);
            color: var(--neon-blue);
            font-size: 0.62rem;
        }

        .sw-cloud-coach__text {
            margin: 0;
            font-size: 0.72rem;
            line-height: 1.48;
            color: rgba(255, 255, 255, 0.72);
        }

        .sw-cloud-status {
            min-height: 0;
            margin: 0 0 0.65rem;
            text-align: center;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(0, 255, 157, 0.9);
            opacity: 0;
            transform: translateY(-4px);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .sw-cloud-status.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .sw-cloud-flow__head.shop-demo-section__head {
            position: relative;
            z-index: 4;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            width: 100%;
            margin: 0 0 1rem;
            padding: 1.05rem 1.25rem;
            border-radius: 0;
            border-left: none;
            border-right: none;
            border-top: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            box-sizing: border-box;
        }

        .sw-cloud-flow__head .shop-demo-section__hint {
            margin-bottom: 0;
            font-size: 0.82rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.68);
        }

        .sw-cloud-flow__head .shop-demo-section__hint i {
            color: var(--neon-blue);
        }

        .sw-cloud-flow__head .shop-demo-section__actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            margin-top: 0;
        }

        .sw-cloud-flow__head .shop-demo-section__pills {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }

        .sw-cloud-flow__head .shop-demo-section__pills span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 0.35rem 0.72rem;
            border-radius: 999px;
            border: 1px solid transparent;
            color: rgba(255, 255, 255, 0.84);
            white-space: nowrap;
            line-height: 1.2;
            background: rgba(0, 243, 255, 0.08);
            border-color: rgba(0, 243, 255, 0.22);
        }

        .sw-cloud-flow__head .shop-demo-section__pills span i {
            margin: 0;
            font-size: 0.62rem;
            flex-shrink: 0;
        }

        .sw-cloud-flow__head .shop-demo-section__pills span:nth-child(2) {
            background: rgba(185, 103, 255, 0.08);
            border-color: rgba(185, 103, 255, 0.22);
        }

        .sw-cloud-flow__head .shop-demo-section__pills span:nth-child(3) {
            background: rgba(0, 255, 157, 0.08);
            border-color: rgba(0, 255, 157, 0.22);
        }

        .sw-cloud-flow__head .shop-demo-section__pills span:first-child i {
            color: var(--neon-blue);
        }

        .sw-cloud-flow__head .shop-demo-section__pills span:nth-child(2) i {
            color: var(--neon-purple);
        }

        .sw-cloud-flow__head .shop-demo-section__pills span:nth-child(3) i {
            color: var(--matrix-green);
        }

        .sw-cloud-flow__svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .sw-cloud-flow__canvas {
            position: relative;
            width: 100%;
            margin: 0 0 1rem;
            min-height: 280px;
        }

        .sw-cloud-flow__canvas .sw-cloud-flow__svg {
            z-index: 0;
            opacity: 0.88;
            pointer-events: none;
        }

        .sw-cloud-flow:not(.is-layout-static) .sw-cloud-hub__connector {
            display: none;
        }

        .sw-cloud-compose-wrap {
            width: 100%;
            max-width: 520px;
            margin: 0 auto 1.1rem;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .sw-cloud-compose-wrap.is-guide-target {
            position: relative;
            z-index: 6;
        }

        .sw-flow-path {
            fill: none;
            stroke: rgba(0, 243, 255, 0.32);
            stroke-width: 1.35;
            stroke-linecap: round;
            opacity: 0.22;
            transition: stroke 0.35s ease, stroke-width 0.35s ease, opacity 0.35s ease;
        }

        .sw-flow-path.is-lit {
            opacity: 1;
        }

        .sw-flow-path.is-dim {
            opacity: 0.12;
        }

        .sw-flow-path--route.is-lit {
            stroke: rgba(185, 103, 255, 0.72);
        }

        .sw-flow-path--arrow-cyan {
            marker-end: url(#swArrow);
        }

        .sw-flow-path.is-lit {
            marker-end: url(#swArrowLit);
            stroke: rgba(0, 243, 255, 0.72);
            stroke-width: 1.85;
            opacity: 1;
        }

        .sw-flow-path--module.is-lit:not(.is-dim) {
            stroke: rgba(185, 103, 255, 0.72);
            stroke-width: 1.85;
        }

        .sw-flow-path--device.is-lit {
            stroke: rgba(0, 255, 157, 0.68);
            stroke-width: 1.65;
        }

        .sw-flow-path--backbone.is-lit {
            stroke: rgba(0, 243, 255, 0.74);
            stroke-width: 1.9;
        }

        .sw-flow-path--backbone.sw-flow-path--fixed {
            stroke: rgba(0, 243, 255, 0.48);
            stroke-width: 1.6;
        }

        .sw-flow-path--cloud.sw-flow-path--fixed {
            stroke: rgba(0, 243, 255, 0.55);
            stroke-width: 1.6;
        }

        .sw-flow-path--cloudfan.sw-flow-path--fixed {
            stroke: rgba(0, 243, 255, 0.35);
            stroke-width: 1.3;
        }

        .sw-flow-path--module.sw-flow-path--fixed {
            stroke: rgba(0, 243, 255, 0.38);
            stroke-width: 1.4;
        }

        .sw-flow-path--modlink.sw-flow-path--fixed {
            stroke: rgba(185, 103, 255, 0.5);
            stroke-width: 1.5;
        }

        .sw-flow-path--webfeed.sw-flow-path--fixed {
            stroke: rgba(0, 255, 157, 0.4);
            stroke-width: 1.4;
        }

        .sw-flow-path--device.sw-flow-path--fixed {
            stroke: rgba(0, 243, 255, 0.38);
            stroke-width: 1.4;
        }

        .sw-flow-path--webfeed.is-dim-feed {
            stroke: rgba(0, 255, 157, 0.15);
            opacity: 0.55;
        }

        .sw-flow-path--modlink.is-dim-link {
            stroke: rgba(185, 103, 255, 0.2);
            opacity: 0.6;
        }

        .sw-flow-path--module.is-dim {
            stroke: rgba(0, 243, 255, 0.28);
            opacity: 0.65;
        }

        .sw-flow-packet--ambient {
            opacity: 0.65;
        }

        .sw-flow-packet--chain {
            opacity: 0.7;
        }

        .sw-flow-packet--device {
            opacity: 0.65;
        }

        .sw-flow-packet--route {
            opacity: 0.85;
        }

        .sw-flow-packet--live {
            opacity: 1;
            animation: swPacketPulse 0.45s ease-in-out infinite alternate;
        }

        @keyframes swPacketPulse {
            from { opacity: 0.85; }
            to { opacity: 1; }
        }

        @keyframes swPathFlow {
            0%, 100% { stroke-width: 2.2; filter: drop-shadow(0 0 4px rgba(0, 243, 255, 0.35)); }
            50% { stroke-width: 3.4; filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.75)); }
        }

        @keyframes swFlowBurst {
            0% { filter: brightness(1); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.45); }
            40% { filter: brightness(1.15); box-shadow: 0 0 0 8px rgba(0, 243, 255, 0.15); }
            100% { filter: brightness(1); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
        }

        @keyframes swAutoPending {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.35); }
            50% { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
        }

        @keyframes swCanvasFlashUpload {
            0% { background: transparent; }
            30% { background: rgba(0, 243, 255, 0.08); }
            100% { background: transparent; }
        }

        @keyframes swCanvasFlashRoute {
            0% { background: transparent; }
            30% { background: rgba(185, 103, 255, 0.1); }
            100% { background: transparent; }
        }

        @keyframes swCanvasFlashSync {
            0% { background: transparent; }
            30% { background: rgba(0, 255, 157, 0.09); }
            100% { background: transparent; }
        }

        .sw-cloud-flow.is-sending .sw-flow-path.is-lit {
            animation: swPathFlow 0.7s ease-in-out infinite;
        }

        .sw-cloud-flow.is-sending .sw-flow-joint.is-lit {
            r: 5;
            filter: drop-shadow(0 0 6px rgba(0, 243, 255, 0.8));
        }

        .sw-cloud-flow.is-auto-pending .sw-cloud-devices-wrap {
            animation: swAutoPending 1.1s ease-out infinite;
            border-radius: 14px;
        }

        .sw-cloud-flow.is-auto-pending .sw-cloud-device.is-selected {
            border-color: rgba(0, 255, 157, 0.55);
            background: rgba(0, 255, 157, 0.08);
        }

        .sw-cloud-flow__canvas[data-flow-flash="upload"] {
            animation: swCanvasFlashUpload 0.85s ease-out;
        }

        .sw-cloud-flow__canvas[data-flow-flash="route"] {
            animation: swCanvasFlashRoute 0.85s ease-out;
        }

        .sw-cloud-flow__canvas[data-flow-flash="sync"],
        .sw-cloud-flow__canvas[data-flow-flash="done"] {
            animation: swCanvasFlashSync 0.85s ease-out;
        }

        .sw-cloud-mod.is-flow-active,
        .sw-cloud-device.is-flow-active,
        .sw-cloud-hub.is-flow-burst {
            animation: swFlowBurst 0.95s ease-out;
        }

        .sw-cloud-mod.is-flow-active,
        .sw-cloud-device.is-flow-active {
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.45), 0 12px 32px rgba(0, 243, 255, 0.22);
            z-index: 8;
        }

        .sw-cloud-mod.is-flow-active {
            border-color: rgba(185, 103, 255, 0.75);
            box-shadow: 0 0 0 3px rgba(185, 103, 255, 0.5), 0 12px 36px rgba(185, 103, 255, 0.28);
        }

        .sw-cloud-device.is-flow-active {
            border-color: rgba(0, 255, 157, 0.65);
            box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.45), 0 12px 30px rgba(0, 255, 157, 0.22);
        }

        .sw-cloud-hub.is-flow-burst {
            border-color: rgba(0, 243, 255, 0.65);
            box-shadow: 0 0 0 4px rgba(0, 243, 255, 0.35), 0 0 40px rgba(0, 243, 255, 0.25);
        }

        .sw-cloud-flow.is-sending .sw-cloud-status.is-visible {
            font-size: 0.72rem;
            letter-spacing: 0.06em;
            text-shadow: 0 0 12px rgba(0, 255, 157, 0.45);
        }

        .sw-cloud-flow.is-sending .sw-cloud-flow__svg {
            opacity: 1;
            filter: drop-shadow(0 0 18px rgba(0, 243, 255, 0.12));
        }

        .sw-flow-joint--mod {
            fill: rgba(185, 103, 255, 0.25);
        }

        .sw-flow-joint--mod.is-lit {
            fill: var(--neon-purple);
            opacity: 1;
        }

        .sw-flow-joint--hub.is-lit {
            fill: var(--neon-purple);
            opacity: 1;
        }

        .sw-flow-joint {
            fill: rgba(0, 243, 255, 0.45);
            opacity: 0.7;
            transition: fill 0.35s ease, opacity 0.35s ease, r 0.35s ease;
        }

        .sw-flow-joint--hub {
            fill: rgba(185, 103, 255, 0.65);
            opacity: 0.9;
        }

        .sw-flow-joint.is-lit {
            fill: var(--neon-blue);
            opacity: 1;
        }

        .sw-flow-joint--web {
            fill: rgba(0, 255, 157, 0.3);
        }

        .sw-flow-joint--web.is-lit {
            fill: var(--matrix-green);
        }

        .sw-cloud-flow__stage {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-areas:
                "hub"
                "bridgemod"
                "modules"
                "bridgedev"
                "devices";
            grid-template-rows: auto auto auto auto auto;
            align-items: center;
            width: 100%;
            min-height: 280px;
            gap: 0.5rem;
            padding: 0.4rem 0 0.85rem;
        }

        .sw-cloud-hub-block {
            grid-area: hub;
            width: 100%;
            position: relative;
            z-index: 4;
        }

        .sw-cloud-flow__bridge {
            grid-area: bridgemod;
            position: relative;
            z-index: 2;
            min-height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            overflow: hidden;
        }

        .sw-cloud-flow__bridge--devices {
            grid-area: bridgedev;
        }

        .sw-cloud-flow__bridge--conn {
            min-height: 2rem;
            padding: 0.45rem 0;
            margin: 0.25rem 0;
            pointer-events: none;
        }

        .sw-cloud-modules {
            grid-area: modules;
            position: relative;
            z-index: 5;
            margin-top: 0.25rem;
            padding-top: 0.35rem;
        }

        .sw-cloud-devices-wrap {
            grid-area: devices;
            position: relative;
            z-index: 5;
            margin-top: 0.25rem;
            padding-top: 0.45rem;
        }

        [data-guide-zone].is-guide-target {
            position: relative;
            z-index: 6;
        }

        .sw-flow-joint--cloud {
            fill: rgba(0, 243, 255, 0.7);
            opacity: 0.95;
        }

        .sw-flow-joint--cloud.is-lit {
            fill: var(--neon-blue);
            opacity: 1;
        }

        .sw-cloud-hub {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.65rem;
            padding: 0.65rem 1.5rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 243, 255, 0.28);
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.08), rgba(185, 103, 255, 0.05));
            box-shadow: 0 0 22px rgba(0, 243, 255, 0.1), 0 0 40px rgba(185, 103, 255, 0.04);
            margin: 0 0 0.5rem;
        }

        .sw-cloud-hub__connector {
            position: absolute;
            left: 50%;
            bottom: -10px;
            width: 2px;
            height: 10px;
            margin-left: -1px;
            background: linear-gradient(to bottom, rgba(0, 243, 255, 0.85), rgba(0, 243, 255, 0.12));
            border-radius: 1px;
            pointer-events: none;
            z-index: 2;
            box-shadow: 0 0 8px rgba(0, 243, 255, 0.35);
        }

        .sw-cloud-hub__connector::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -3px;
            margin-left: -3px;
            border-left: 3px solid transparent;
            border-right: 3px solid transparent;
            border-top: 4px solid rgba(0, 243, 255, 0.65);
        }

        @keyframes swHubPulse {
            0%, 100% { opacity: 0.22; transform: scale(1); }
            50% { opacity: 0.48; transform: scale(1.02); }
        }

        .sw-cloud-hub__ring {
            position: absolute;
            inset: -10px -18px;
            border-radius: 999px;
            border: 1px solid rgba(0, 243, 255, 0.22);
            animation: swHubPulse 3s ease-in-out infinite;
            pointer-events: none;
        }

        .sw-cloud-hub__ring--2 {
            inset: -20px -32px;
            border-color: rgba(185, 103, 255, 0.14);
            animation-delay: 1s;
        }

        .sw-cloud-hub i.fa-cloud {
            font-size: 1.5rem;
            color: rgba(0, 243, 255, 0.92);
            filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.28));
            flex-shrink: 0;
        }

        .sw-cloud-hub__web {
            font-size: 0.85rem;
            color: rgba(0, 255, 157, 0.88);
            flex-shrink: 0;
        }

        .sw-cloud-hub__text {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.55rem;
        }

        .sw-cloud-hub strong {
            font-size: 0.92rem;
            letter-spacing: 0.4px;
            color: #fff;
            white-space: nowrap;
        }

        .sw-cloud-hub__sub {
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: rgba(255, 255, 255, 0.68);
            padding-left: 0.55rem;
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            white-space: nowrap;
        }

        .sw-cloud-hub-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.85rem;
            width: 100%;
            position: relative;
            padding-top: 0.35rem;
        }

        .sw-cloud-flow.has-payload .sw-cloud-hub-block {
            padding-top: 1.2rem;
        }

        .sw-cloud-hub__live {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 0.45rem);
            transform: translateX(-50%);
            max-width: min(100%, 280px);
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 255, 157, 0.35);
            background: rgba(0, 255, 157, 0.1);
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.62rem;
            font-weight: 600;
            line-height: 1.35;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 0 16px rgba(0, 255, 157, 0.12);
            pointer-events: none;
        }

        .sw-cloud-hub__draft {
            position: absolute;
            left: 50%;
            bottom: calc(100% + 0.45rem);
            transform: translateX(-50%);
            max-width: min(100%, 280px);
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            border: 1px dashed rgba(0, 243, 255, 0.35);
            background: rgba(0, 243, 255, 0.06);
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.62rem;
            font-weight: 600;
            line-height: 1.35;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            pointer-events: none;
            animation: swDraftPulse 1.6s ease-in-out infinite;
        }

        @keyframes swDraftPulse {
            0%, 100% { opacity: 0.72; }
            50% { opacity: 1; }
        }

        .sw-cloud-hub.is-published {
            border-color: rgba(0, 255, 157, 0.38);
        }

        .sw-cloud-hub[tabindex="0"] {
            cursor: pointer;
        }

        .sw-cloud-hub[tabindex="0"]:focus-visible {
            outline: 2px solid rgba(0, 243, 255, 0.55);
            outline-offset: 3px;
        }

        .sw-cloud-compose {
            width: 100%;
            max-width: 520px;
            margin: 0;
        }

        .sw-cloud-compose__label {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .sw-cloud-compose__row {
            display: flex;
            align-items: stretch;
            gap: 0.45rem;
        }

        .sw-cloud-compose__input {
            flex: 1 1 auto;
            min-width: 0;
            padding: 0.55rem 0.85rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 243, 255, 0.22);
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
            font-family: inherit;
            font-size: 0.76rem;
            line-height: 1.35;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .sw-cloud-compose__input::placeholder {
            color: rgba(255, 255, 255, 0.38);
        }

        .sw-cloud-compose__input:focus {
            outline: none;
            border-color: rgba(0, 243, 255, 0.45);
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
            background: rgba(255, 255, 255, 0.06);
        }

        .sw-cloud-compose__input:disabled {
            opacity: 0.55;
            cursor: not-allowed;
        }

        .sw-cloud-compose__btn {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.55rem 0.95rem;
            border: none;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.85), rgba(185, 103, 255, 0.75));
            color: #050508;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
        }

        .sw-cloud-compose__input.is-invalid {
            border-color: rgba(255, 90, 90, 0.65);
            box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.12);
            animation: swShake 0.45s ease;
        }

        .sw-cloud-compose__chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-top: 0.7rem;
        }

        .sw-cloud-compose__chip {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.32rem 0.62rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.72);
            font-family: inherit;
            font-size: 0.62rem;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
        }

        .sw-cloud-compose__chip i {
            color: var(--neon-blue);
            font-size: 0.58rem;
        }

        .sw-cloud-compose__chip:hover:not(:disabled) {
            border-color: rgba(0, 243, 255, 0.32);
            background: rgba(0, 243, 255, 0.08);
            color: #fff;
            transform: translateY(-1px);
        }

        .sw-cloud-compose__chip:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .sw-cloud-compose__btn:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(0, 243, 255, 0.18);
        }

        .sw-cloud-compose__btn:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .sw-cloud-compose__hint {
            margin: 0.45rem 0 0;
            text-align: center;
            font-size: 0.62rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.48);
        }

        .sw-cloud-flow.has-payload .sw-cloud-hub {
            border-color: rgba(0, 255, 157, 0.35);
            box-shadow: 0 0 22px rgba(0, 255, 157, 0.12), 0 0 40px rgba(0, 243, 255, 0.06);
        }

        .sw-cloud-flow.is-route-ready .sw-cloud-modules {
            animation: swPromptGlow 2.4s ease-in-out infinite;
        }

        .sw-cloud-flow.is-deliver-ready .sw-cloud-devices {
            animation: swPromptGlow 2.4s ease-in-out infinite;
        }

        @keyframes swPromptGlow {
            0%, 100% { filter: none; }
            50% { filter: drop-shadow(0 0 6px rgba(0, 243, 255, 0.12)); }
        }

        .sw-cloud-mod.is-prompt,
        .sw-cloud-device.is-prompt {
            animation: swNodePulse 1.8s ease-in-out infinite;
        }

        @keyframes swNodePulse {
            0%, 100% { box-shadow: 0 0 0 rgba(0, 243, 255, 0); }
            50% { box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.18); }
        }

        .sw-cloud-mod:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none !important;
        }

        .sw-cloud-flow.is-shake {
            animation: swShake 0.45s ease;
        }

        @keyframes swShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-4px); }
            75% { transform: translateX(4px); }
        }

        .sw-cloud-flow.is-sending .sw-flow-packet {
            opacity: 1 !important;
        }

        .sw-cloud-modules {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0.5rem;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            margin: 0;
            padding: 0.35rem 0 0.2rem;
        }

        .sw-cloud-mod {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            min-width: 0;
            padding: 0.5rem 0.85rem;
            height: 36px;
            min-height: 36px;
            max-height: 36px;
            box-sizing: border-box;
            border-radius: 999px;
            border: 1px solid rgba(0, 243, 255, 0.22);
            background: rgba(0, 243, 255, 0.05);
            color: inherit;
            cursor: pointer;
            font-family: inherit;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
            overflow: hidden;
        }

        .sw-cloud-mod i {
            font-size: 0.72rem;
            color: rgba(0, 243, 255, 0.78);
            transition: color 0.25s ease, transform 0.25s ease;
            flex-shrink: 0;
        }

        .sw-cloud-mod span {
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.9);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sw-cloud-mod:hover {
            border-color: rgba(0, 255, 157, 0.35);
            background: rgba(0, 243, 255, 0.1);
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(0, 243, 255, 0.08);
        }

        .sw-cloud-mod.is-active {
            border-color: rgba(185, 103, 255, 0.48);
            background: linear-gradient(135deg, rgba(185, 103, 255, 0.12), rgba(0, 243, 255, 0.07));
            box-shadow: 0 4px 14px rgba(185, 103, 255, 0.12), 0 0 0 1px rgba(185, 103, 255, 0.1);
        }

        .sw-cloud-mod:hover i {
            color: var(--neon-blue);
            transform: scale(1.05);
        }

        .sw-cloud-mod.is-active i {
            color: var(--neon-purple);
            transform: scale(1.08);
        }

        .sw-cloud-mod.is-active span {
            color: #fff;
        }

        .sw-flow-joint--platform {
            fill: rgba(0, 255, 157, 0.55);
        }

        .sw-flow-joint--platform.is-lit {
            fill: var(--matrix-green);
        }

        .sw-cloud-flow__bridge {
            position: relative;
            z-index: 2;
            margin: 0;
            padding: 0.35rem 0;
            font-size: 0.58rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.58);
            text-align: center;
        }

        .sw-cloud-flow__bridge i {
            font-size: 0.5rem;
            margin-right: 0.3rem;
            color: var(--neon-blue);
        }

        .sw-cloud-flow__bridge strong {
            color: rgba(255, 255, 255, 0.88);
        }

        .sw-cloud-devices-wrap {
            width: 100%;
        }

        .sw-cloud-devices__toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.65rem;
            margin: 0 0 0.65rem;
        }

        .sw-cloud-devices__all {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.32rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(185, 103, 255, 0.28);
            background: rgba(185, 103, 255, 0.08);
            color: rgba(255, 255, 255, 0.82);
            font-family: inherit;
            font-size: 0.62rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }

        .sw-cloud-devices__all:hover:not(:disabled) {
            border-color: rgba(185, 103, 255, 0.45);
            background: rgba(185, 103, 255, 0.14);
            transform: translateY(-1px);
        }

        .sw-cloud-devices__all:disabled {
            opacity: 0.45;
            cursor: not-allowed;
        }

        .sw-cloud-devices__count {
            font-size: 0.6rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.48);
        }

        .sw-cloud-devices {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.65rem;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            margin-inline: auto;
            margin-bottom: 0.75rem;
        }

        .sw-cloud-device {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0.3rem;
            min-width: 0;
            padding: 0.45rem 0.4rem 0.5rem;
            height: 84px;
            min-height: 84px;
            max-height: 84px;
            box-sizing: border-box;
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(10, 10, 15, 0.45);
            color: inherit;
            font-family: inherit;
            cursor: pointer;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
        }

        .sw-cloud-device:disabled {
            opacity: 0.42;
            cursor: not-allowed;
            transform: none !important;
        }

        .sw-cloud-device__icon i {
            font-size: 0.75rem;
            color: rgba(0, 243, 255, 0.58);
            transition: color 0.3s ease, filter 0.3s ease;
        }

        .sw-cloud-device__label {
            font-size: 0.52rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            color: rgba(255, 255, 255, 0.66);
            white-space: nowrap;
        }

        .sw-cloud-device__icon,
        .sw-cloud-device__label {
            display: block;
            text-align: center;
        }

        .sw-cloud-device__screen {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 1.65rem;
            height: 1.65rem;
            min-height: 1.65rem;
            max-height: 1.65rem;
            margin-top: 0.15rem;
            padding: 0.22rem 0.35rem;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.35);
            overflow: hidden;
        }

        .sw-cloud-device__msg {
            display: block;
            width: 100%;
            font-size: 0.48rem;
            line-height: 1.25;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.82);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            opacity: 0;
            transform: translateY(3px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .sw-cloud-device.is-selected {
            border-color: rgba(185, 103, 255, 0.42);
            background: rgba(185, 103, 255, 0.08);
            box-shadow: 0 0 12px rgba(185, 103, 255, 0.12);
        }

        .sw-cloud-device.is-selected .sw-cloud-device__icon i {
            color: rgba(185, 103, 255, 0.95);
        }

        .sw-cloud-device.is-delivered {
            border-color: rgba(0, 255, 157, 0.38);
            background: rgba(0, 255, 157, 0.07);
            box-shadow: 0 0 14px rgba(0, 255, 157, 0.12);
        }

        .sw-cloud-device.is-delivered .sw-cloud-device__icon i {
            color: rgba(0, 255, 157, 0.92);
            filter: drop-shadow(0 0 4px rgba(0, 255, 157, 0.28));
        }

        .sw-cloud-device.is-delivered .sw-cloud-device__msg {
            opacity: 1;
            transform: translateY(0);
            color: rgba(210, 255, 236, 0.95);
        }

        .sw-cloud-device.is-receiving {
            border-color: rgba(0, 243, 255, 0.42);
            box-shadow: 0 0 16px rgba(0, 243, 255, 0.14);
        }

        .sw-cloud-device.is-receiving .sw-cloud-device__msg {
            opacity: 1;
            transform: translateY(0);
        }

        .sw-cloud-device.is-receiving .sw-cloud-device__msg::after {
            content: '|';
            animation: swCaretBlink 0.8s step-end infinite;
            margin-left: 1px;
            color: rgba(0, 243, 255, 0.85);
        }

        @keyframes swCaretBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .sw-cloud-device:not(:disabled):hover {
            border-color: rgba(0, 243, 255, 0.28);
            background: rgba(0, 243, 255, 0.05);
        }

        .sw-cloud-flow__caption {
            position: relative;
            z-index: 2;
            width: 100%;
            margin-top: 2rem;
            padding: 1.25rem 1.45rem 1.35rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(6, 8, 14, 0.72);
            text-align: center;
            transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        }

        .sw-cloud-flow__steps {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            margin: 0 0 0.85rem;
            padding: 0;
            list-style: none;
        }

        .sw-cloud-flow__step-item {
            padding: 0.28rem 0.62rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.48);
            transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .sw-cloud-flow__step-item.is-current {
            border-color: rgba(0, 243, 255, 0.35);
            background: rgba(0, 243, 255, 0.08);
            color: rgba(255, 255, 255, 0.92);
        }

        .sw-cloud-flow__step-item.is-done {
            border-color: rgba(0, 255, 157, 0.28);
            background: rgba(0, 255, 157, 0.06);
            color: rgba(210, 255, 236, 0.88);
        }

        .sw-cloud-flow__actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            margin-top: 0.95rem;
        }

        .sw-cloud-flow__send,
        .sw-cloud-flow__reset {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            min-height: 40px;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .sw-cloud-flow__send {
            border: none;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.9), rgba(185, 103, 255, 0.82));
            color: #050508;
            box-shadow: 0 8px 22px rgba(0, 243, 255, 0.16);
        }

        .sw-cloud-flow__send:hover:not(:disabled) {
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(0, 243, 255, 0.22);
        }

        .sw-cloud-flow__send:disabled {
            opacity: 0.42;
            cursor: not-allowed;
            box-shadow: none;
        }

        .sw-cloud-flow__reset {
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.82);
        }

        .sw-cloud-flow__reset:hover {
            border-color: rgba(0, 243, 255, 0.35);
            color: #fff;
            background: rgba(0, 243, 255, 0.08);
        }

        .sw-cloud-flow__caption.is-active {
            border-color: rgba(185, 103, 255, 0.22);
            background: rgba(185, 103, 255, 0.05);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
        }

        .sw-cloud-flow__success {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            margin: 0 0 0.75rem;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 255, 157, 0.28);
            background: rgba(0, 255, 157, 0.08);
            color: rgba(210, 255, 236, 0.95);
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            animation: swSuccessPop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .sw-cloud-flow__success i {
            color: rgba(0, 255, 157, 0.95);
        }

        @keyframes swSuccessPop {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }

        .sw-cloud-flow.is-sending .sw-cloud-hub {
            animation: swHubSync 0.8s ease-in-out infinite;
        }

        @keyframes swHubSync {
            0%, 100% { box-shadow: 0 0 22px rgba(0, 243, 255, 0.1); }
            50% { box-shadow: 0 0 28px rgba(0, 255, 157, 0.22); }
        }

        /* Guía asistida */
        .sw-cloud-guide__launch {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.42rem 0.85rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 243, 255, 0.28);
            background: rgba(0, 243, 255, 0.08);
            color: rgba(255, 255, 255, 0.88);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }

        .sw-cloud-guide__launch:hover {
            border-color: rgba(0, 243, 255, 0.45);
            background: rgba(0, 243, 255, 0.14);
            transform: translateY(-1px);
        }

        .sw-cloud-guide {
            position: absolute;
            inset: 0;
            z-index: 60;
            pointer-events: none;
        }

        .sw-cloud-guide:not([hidden]) {
            pointer-events: none;
        }

        .sw-cloud-guide__overlay {
            display: none;
        }

        .sw-cloud-guide__spot {
            position: absolute;
            border: 2px solid rgba(0, 243, 255, 0.95);
            border-radius: 14px;
            background: transparent;
            box-shadow:
                0 0 0 9999px rgba(4, 6, 12, 0.84),
                0 0 0 4px rgba(0, 243, 255, 0.22),
                0 0 32px rgba(0, 243, 255, 0.35);
            pointer-events: none;
            z-index: 61;
            transition: top 0.35s ease, left 0.35s ease, width 0.35s ease, height 0.35s ease;
            animation: swGuideSpotPulse 1.6s ease-in-out infinite;
        }

        @keyframes swGuideSpotPulse {
            0%, 100% {
                border-color: rgba(0, 243, 255, 0.95);
                box-shadow:
                    0 0 0 9999px rgba(4, 6, 12, 0.84),
                    0 0 0 4px rgba(0, 243, 255, 0.22),
                    0 0 32px rgba(0, 243, 255, 0.35);
            }
            50% {
                border-color: #fff;
                box-shadow:
                    0 0 0 9999px rgba(4, 6, 12, 0.84),
                    0 0 0 6px rgba(0, 243, 255, 0.35),
                    0 0 44px rgba(0, 243, 255, 0.5);
            }
        }

        .sw-cloud-guide__badge {
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.38rem 0.72rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.95), rgba(185, 103, 255, 0.88));
            color: #050508;
            font-size: 0.68rem;
            font-weight: 800;
            white-space: nowrap;
            pointer-events: none;
            z-index: 62;
            box-shadow: 0 8px 24px rgba(0, 243, 255, 0.25);
            transition: top 0.32s ease, left 0.32s ease;
        }

        .sw-cloud-guide__badge i {
            font-size: 0.72rem;
        }

        .sw-cloud-guide__pointer {
            position: absolute;
            z-index: 61;
            color: #00f3ff;
            font-size: 1.35rem;
            line-height: 1;
            pointer-events: none;
            filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.55));
            animation: swGuidePointerBounce 0.9s ease-in-out infinite;
            transition: top 0.32s ease, left 0.32s ease;
        }

        @keyframes swGuidePointerBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .sw-cloud-guide__pointer.is-below {
            transform: rotate(180deg);
            animation-name: swGuidePointerBounceDown;
        }

        @keyframes swGuidePointerBounceDown {
            0%, 100% { transform: rotate(180deg) translateY(0); }
            50% { transform: rotate(180deg) translateY(-6px); }
        }

        .sw-cloud-guide__path {
            display: flex;
            gap: 0.35rem;
            margin: 0 0 0.75rem;
            padding: 0;
            list-style: none;
        }

        .sw-cloud-guide__path-item {
            flex: 1 1 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            min-width: 0;
            opacity: 0.45;
            transition: opacity 0.25s ease;
        }

        .sw-cloud-guide__path-item.is-current {
            opacity: 1;
        }

        .sw-cloud-guide__path-item.is-done {
            opacity: 0.72;
        }

        .sw-cloud-guide__path-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.35rem;
            height: 1.35rem;
            border-radius: 999px;
            font-size: 0.62rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .sw-cloud-guide__path-item.is-current .sw-cloud-guide__path-num {
            background: linear-gradient(135deg, #00f3ff, #b967ff);
            color: #050508;
            border-color: transparent;
            box-shadow: 0 0 12px rgba(0, 243, 255, 0.35);
        }

        .sw-cloud-guide__path-item.is-done .sw-cloud-guide__path-num {
            background: rgba(0, 255, 157, 0.2);
            color: #00ff9d;
            border-color: rgba(0, 255, 157, 0.35);
        }

        .sw-cloud-guide__path-label {
            font-size: 0.52rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            text-align: center;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.2;
        }

        .sw-cloud-guide__path-item.is-current .sw-cloud-guide__path-label {
            color: #fff;
        }

        .sw-cloud-guide__card {
            position: absolute;
            z-index: 63;
            width: min(calc(100% - 1.5rem), 360px);
            padding: 1rem 1.1rem 1.05rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 243, 255, 0.22);
            background: rgba(8, 10, 18, 0.98);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            pointer-events: auto;
            transition: top 0.32s ease, left 0.32s ease;
        }

        .sw-cloud-guide__controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.65rem;
        }

        .sw-cloud-guide__progress-dots {
            display: flex;
            gap: 0.35rem;
            margin-bottom: 0.65rem;
        }

        .sw-cloud-guide__dot {
            flex: 1 1 0;
            height: 3px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            transition: background 0.25s ease;
        }

        .sw-cloud-guide__dot.is-active {
            background: linear-gradient(90deg, #00f3ff, #b967ff);
        }

        .sw-cloud-guide__dot.is-done {
            background: rgba(0, 255, 157, 0.55);
        }

        .sw-cloud-guide__eyebrow {
            margin: 0 0 0.35rem;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(0, 243, 255, 0.75);
        }

        .sw-cloud-guide__title {
            margin: 0 0 0.45rem;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
        }

        .sw-cloud-guide__desc {
            margin: 0 0 0.65rem;
            font-size: 0.82rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.78);
        }

        .sw-cloud-guide__wait {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin: 0 0 0.75rem;
            padding: 0.55rem 0.7rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 157, 0.25);
            background: rgba(0, 255, 157, 0.07);
            font-size: 0.72rem;
            line-height: 1.45;
            color: rgba(0, 255, 157, 0.92);
        }

        .sw-cloud-guide__wait i {
            margin-top: 0.1rem;
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .sw-cloud-guide__controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.65rem;
        }

        .sw-cloud-guide__skip {
            border: none;
            background: none;
            color: rgba(255, 255, 255, 0.45);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 600;
            cursor: pointer;
            padding: 0.35rem 0;
        }

        .sw-cloud-guide__skip:hover {
            color: rgba(255, 255, 255, 0.75);
        }

        .sw-cloud-guide__nav {
            display: flex;
            gap: 0.45rem;
        }

        .sw-cloud-guide__prev,
        .sw-cloud-guide__next {
            min-height: 36px;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .sw-cloud-guide__prev {
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.78);
        }

        .sw-cloud-guide__next {
            border: none;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.9), rgba(185, 103, 255, 0.82));
            color: #050508;
        }

        .sw-cloud-guide__next:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none;
        }

        .sw-cloud-guide__prev:hover,
        .sw-cloud-guide__next:hover:not(:disabled) {
            transform: translateY(-1px);
        }

        .sw-cloud-flow.is-guide-active {
            position: relative;
        }

        .sw-cloud-flow.is-guide-active .sw-cloud-flow__diagram {
            position: relative;
        }

        .sw-cloud-flow.is-guide-active [data-guide-zone].is-guide-target {
            position: relative;
            z-index: 55;
        }

        .sw-cloud-flow.is-guide-active .sw-cloud-compose-wrap.is-guide-target,
        .sw-cloud-flow.is-guide-active .sw-cloud-modules.is-guide-target,
        .sw-cloud-flow.is-guide-active .sw-cloud-devices-wrap.is-guide-target {
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.35), 0 12px 40px rgba(0, 243, 255, 0.12);
            border-radius: 14px;
        }

        .sw-cloud-flow.is-guide-active .sw-cloud-flow__canvas.is-guide-target {
            border-radius: 16px;
            box-shadow: 0 0 0 3px rgba(185, 103, 255, 0.35), 0 16px 48px rgba(185, 103, 255, 0.15);
        }

        .is-guide-focus,
        .is-guide-prompt {
            position: relative;
        }

        .is-guide-focus::after,
        .is-guide-prompt::after {
            content: attr(data-guide-label);
            position: absolute;
            top: -9px;
            right: -6px;
            min-width: 1.15rem;
            height: 1.15rem;
            padding: 0 0.25rem;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.58rem;
            font-weight: 800;
            line-height: 1;
            z-index: 8;
            pointer-events: none;
        }

        .is-guide-focus::after {
            background: linear-gradient(135deg, #00f3ff, #b967ff);
            color: #050508;
            box-shadow: 0 0 12px rgba(0, 243, 255, 0.45);
            animation: swGuideFocusPulse 1.2s ease-in-out infinite;
        }

        .is-guide-prompt::after {
            background: rgba(0, 255, 157, 0.92);
            color: #050508;
            box-shadow: 0 0 10px rgba(0, 255, 157, 0.35);
        }

        .is-guide-prompt:not([data-guide-label])::after {
            content: none;
        }

        @keyframes swGuideFocusPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.12); }
        }

        .is-guide-focus.sw-cloud-compose__chip,
        .is-guide-focus.sw-cloud-compose__btn,
        .is-guide-focus.sw-cloud-mod,
        .is-guide-focus.sw-cloud-device,
        .is-guide-prompt.sw-cloud-mod,
        .is-guide-prompt.sw-cloud-device {
            animation: swGuideBtnPulse 1.4s ease-in-out infinite;
        }

        .sw-cloud-flow.is-guide-active .is-guide-target {
            position: relative;
            z-index: 56;
        }

        @keyframes swGuideBtnPulse {
            0%, 100% {
                box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.35), 0 6px 20px rgba(0, 243, 255, 0.12);
            }
            50% {
                box-shadow: 0 0 0 4px rgba(0, 243, 255, 0.55), 0 10px 28px rgba(0, 243, 255, 0.22);
            }
        }

        .is-guide-prompt.sw-cloud-mod,
        .is-guide-prompt.sw-cloud-device {
            border-color: rgba(0, 255, 157, 0.45) !important;
        }

        .is-guide-focus.sw-cloud-mod.is-active,
        .is-guide-focus.sw-cloud-device.is-selected {
            border-color: rgba(185, 103, 255, 0.65) !important;
        }

        .sw-cloud-flow__caption-route {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.35rem 0.5rem;
            margin: 0 0 0.85rem;
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: rgba(255, 255, 255, 0.58);
            line-height: 1.5;
        }

        .sw-cloud-flow__caption-route i {
            font-size: 0.48rem;
            color: rgba(255, 255, 255, 0.34);
        }

        .sw-cloud-flow__step {
            padding: 0.22rem 0.5rem;
            border-radius: 6px;
            transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }

        .sw-cloud-flow__caption.is-active .sw-cloud-flow__step--module {
            color: #fff;
            background: rgba(185, 103, 255, 0.12);
            box-shadow: 0 0 10px rgba(185, 103, 255, 0.08);
        }

        .sw-cloud-flow__caption-desc {
            margin: 0;
            font-size: 0.88rem;
            line-height: 1.62;
            color: rgba(255, 255, 255, 0.74);
            max-width: 36rem;
            margin-inline: auto;
            transition: opacity 0.3s ease;
        }

        .sw-cloud-flow__caption.is-active .sw-cloud-flow__caption-desc {
            color: rgba(255, 255, 255, 0.88);
        }

        @media (prefers-reduced-motion: reduce) {
            .sw-flow-packet,
            .sw-cloud-hub__ring {
                animation: none !important;
            }
            .sw-flow-packet {
                display: none;
            }
        }

        /* --- RESPONSIVE / MÓVILES --- */
        @media (max-width: 968px) {
            .container,
            .container--hero { grid-template-columns: 1fr; }

            .hero-intro { padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 0 0.25rem; text-align: center; }
            .visual-section {
                min-height: auto;
                order: unset;
                padding: 0.25rem clamp(0.75rem, 4vw, 1.25rem) 1.25rem;
                margin-top: 0;
            }
            .features { padding: 0; margin: 0.85rem auto 0.25rem; max-width: 100%; }
            .cta-container { max-width: 100%; margin-bottom: 2rem; }
            .sw-cloud-flow {
                max-width: 100%;
                padding-inline: 0;
            }
            .sw-cloud-flow__diagram {
                max-width: 560px;
                padding-inline: clamp(0.75rem, 4vw, 1.25rem);
            }
            .sw-cloud-flow__head.shop-demo-section__head { padding: 0.85rem 0.95rem; }
            .sw-cloud-flow__stage { min-height: auto; gap: 0.5rem; padding: 0.35rem 0 0.85rem; }
            .sw-cloud-flow__caption { margin-top: 1.5rem; padding: 1.15rem 1.2rem; }
            .sw-cloud-modules { grid-template-columns: repeat(3, 1fr); gap: 0.45rem; }
            .sw-cloud-devices { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
            .sw-cloud-flow__svg {
                display: block;
                opacity: 0.92;
            }
            .sw-cloud-flow.is-layout-mobile .sw-cloud-flow__bridge--conn {
                min-height: 1.85rem;
                padding: 0.55rem 0;
            }
            .sw-cloud-flow.is-layout-mobile .sw-cloud-flow__canvas {
                min-height: 300px;
            }
            .sw-cloud-flow.is-layout-mobile .sw-flow-path {
                stroke-width: 1.5;
            }
            .sw-cloud-flow.is-layout-mobile .sw-flow-path.is-lit {
                stroke-width: 2.1;
            }
            .sw-cloud-guide__card {
                bottom: max(10px, env(safe-area-inset-bottom));
            }
            .hero-title { font-size: 2.8rem; text-align: center; }
            .hero-subtitle { max-width: 100%; text-align: center; }
            .badge { margin: 0 auto 1.5rem; }
            .cta-container { justify-content: center; }
            .full-width-section { padding: 2rem 1.5rem; }
            .faq-section h2 { font-size: 2.2rem; }
            .sw-use-grid { grid-template-columns: 1fr 1fr; }
            .sw-process-steps { grid-template-columns: 1fr 1fr; }
            .sw-signals-list { grid-template-columns: 1fr; }
        }

        @media (max-width: 520px) {
            .sw-cloud-flow {
                max-width: 100%;
                padding-inline: 0;
                overflow-x: hidden;
            }
            .sw-cloud-flow__diagram {
                max-width: 100%;
                padding-inline: clamp(0.5rem, 3vw, 0.75rem);
            }
            .sw-cloud-flow__head.shop-demo-section__head { padding: 0.75rem 0.65rem; }
            .sw-cloud-flow__head .shop-demo-section__actions {
                flex-direction: column;
                align-items: stretch;
            }
            .sw-cloud-flow__head .shop-demo-section__pills {
                justify-content: center;
            }
            .sw-cloud-flow__head .shop-demo-section__hint { font-size: 0.76rem; }
            .sw-cloud-flow__stage { min-height: auto; gap: 0.45rem; padding: 0.3rem 0 0.75rem; }
            .sw-cloud-compose__row { flex-direction: column; }
            .sw-cloud-compose__btn { width: 100%; }
            .sw-cloud-modules { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
            .sw-cloud-devices { grid-template-columns: repeat(2, 1fr); max-width: 100%; padding-inline: 0; gap: 0.5rem; }
            .sw-cloud-mod { padding: 0.4rem 0.45rem; }
            .sw-cloud-mod span { font-size: 0.56rem; }
            .sw-cloud-device { height: 80px; min-height: 80px; max-height: 80px; }
            .sw-cloud-flow__bridge { font-size: 0.56rem; padding: 0.3rem 0; }
            .sw-cloud-flow__caption { margin-top: 1.25rem; padding: 0.95rem 0.75rem; }
            .sw-cloud-flow__caption-route { font-size: 0.58rem; gap: 0.25rem 0.35rem; margin-bottom: 0.65rem; }
            .sw-cloud-flow__caption-desc { font-size: 0.84rem; line-height: 1.58; }
            .sw-cloud-flow__svg {
                display: block;
                opacity: 0.9;
            }
            .sw-cloud-hub {
                padding: 0.5rem 0.85rem;
                max-width: 100%;
            }
            .sw-cloud-hub strong {
                white-space: normal;
                font-size: 0.84rem;
            }
            .sw-cloud-hub__sub { display: none; }
            .sw-cloud-hub__ring { inset: -6px -10px; }
            .sw-cloud-hub__ring--2 { inset: -12px -18px; }
        }

        /* --- ≤768px: tablet estrecho → colapsar grids y reducir accordion --- */
        @media (max-width: 768px) {
            .sw-use-grid,
            .sw-compare-grid,
            .sw-process-steps { grid-template-columns: 1fr; }
            .accordion-content { padding: 0 1.25rem; }
            .accordion-content.active { padding: 0.5rem 1.25rem 1.25rem; }
            .cta-button { min-height: 44px; }
            .cta-container { max-width: 100%; }
            .personal-consult-module { padding: 2rem 1.25rem; }
        }

        @media (max-width: 480px) {
            body { padding-top: 5rem; }
            .hero-intro { padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 0 0.35rem; }
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1rem; }
            .visual-section {
                padding: 0.15rem clamp(0.5rem, 3vw, 0.85rem) 1rem;
            }
            .full-width-section { padding: 2rem 1rem; }
            .faq-section h2 { font-size: 1.9rem; }
            .sw-section-title { font-size: 1.9rem; }
            .cta-button { width: 100%; max-width: 100%; }
            .sw-cloud-mod span { font-size: 0.72rem !important; }
        }

     