        /* 1. Design Tokens y Sistema Visual */
        :root {
            --bg-dark: #0A0A0A;
            --bg-darker: #121212;
            --primary-accent: #0F427F;
            /* Azul Índigo */
            --secondary-accent: #79D551;
            /* Green Lizard */
            --tertiary-support: #5280E2;
            /* Azul Aciano */

            --text-light: #FFFFFF;
            --text-dimmed: #A1A1AA;

            --font-display: 'Instrument Sans', sans-serif;
            --font-data: 'JetBrains Mono', monospace;
        }

        /* Reset Básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: var(--font-display);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Fondo Mesh Gradient Estricto (Azul Índigo difuminado) */
        .mesh-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background:
                radial-gradient(circle at 15% 50%, rgba(15, 66, 127, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(15, 66, 127, 0.1) 0%, transparent 40%);
            z-index: -1;
            pointer-events: none;
        }

        /* Tipografía Display */
        h1,
        h2,
        h3 {
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        h1 {
            font-size: clamp(3.5rem, 6vw, 5rem);
            /* Enorme, pero adaptado a una sola columna centrada */
            max-width: 1000px;
            letter-spacing: -0.05em;
            line-height: 1.05;
            /* Aún más apretado verticalmente */
            margin-bottom: 2rem;
            text-wrap: balance;
            /* Balanceo OpenAI */
        }

        h2 {
            font-size: clamp(2.5rem, 4.5vw, 3.5rem);
            letter-spacing: -0.03em;
            max-width: 800px;
            line-height: 1.1;
            text-wrap: balance;
            margin-bottom: 2rem;
            /* FORZAR margen inferior */
        }

        p {
            color: var(--text-dimmed);
            font-size: clamp(1.125rem, 1.5vw, 1.25rem);
            /* Texto de párrafo más legible y grande */
            max-width: 650px;
            line-height: 1.6;
            text-wrap: pretty;
        }

        /* Utility Classes */
        .data-mono {
            font-family: var(--font-code);
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* Layout & Container */
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 4vw;
            /* Responsive padding */
        }

        section {
            position: relative;
            padding: 8rem 0;
            /* Padding global abundante para separar secciones */
            scroll-margin-top: 120px;
            /* Prevenir que el header tape el contenido */
        }

        /* Ocultar iconos de scroll conflictivos detectados en QA */
        .scroll-indicator,
        .mouse-icon,
        .scroll-icon {
            display: none !important;
        }

        /* Botones */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.125rem;
            /* Botones ligeramente más grandes */
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--secondary-accent);
            color: var(--bg-dark);
            box-shadow: 0 0 20px rgba(121, 213, 81, 0.2);
        }

        .btn-primary:hover {
            box-shadow: 0 0 35px rgba(121, 213, 81, 0.5);
            transform: translateY(-2px);
            background-color: #88ed5b;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            border-color: var(--tertiary-support);
            background: rgba(82, 128, 226, 0.1);
        }

        /* Header Sticky Glassmorphism */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 80px;
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(82, 128, 226, 0.15);
            /* Tertiary Support border */
            z-index: 100;
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo-placeholder {
            font-family: var(--font-code);
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.05em;
        }

        /* Menú Desplegable "Soluciones" (Split Header EliseAI Style) */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-btn {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .dropdown-btn:hover {
            color: var(--secondary-accent);
        }

        .dropdown-content {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(10, 10, 10, 0.95);
            min-width: 280px;
            border: 1px solid rgba(82, 128, 226, 0.2);
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            padding: 1rem;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(20px);
            z-index: 200;
        }

        .dropdown:hover .dropdown-content {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 1rem;
            color: var(--text-light);
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .dropdown-item strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 0.25rem;
            color: #fff;
        }

        .dropdown-item:hover strong {
            color: var(--secondary-accent);
        }

        .dropdown-item span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-dimmed);
            line-height: 1.4;
        }

        /* SECCIÓN 1: HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-top: 0;
            padding-bottom: 0;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1100px;
        }

        .hero-content p {
            margin: 0 auto;
            /* Centrar perfectamente el subtítulo */
            font-size: 1.35rem;
            /* Ligeramente más grande para lectura B2B */
            max-width: 750px;
        }

        .system-status {
            display: inline-block;
            font-size: 0.85rem;
            margin-bottom: 2rem;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(121, 213, 81, 0.3);
            border-radius: 4px;
            background: rgba(121, 213, 81, 0.05);
            color: var(--secondary-accent);
            /* Apply color from token */
            text-shadow: 0 0 12px rgba(121, 213, 81, 0.4);
            /* Apply shadow from token */
        }

        .hero-actions {
            margin-top: 3.5rem;
        }

        /* Mockup Light Mode (Para contraste) */
        .hero-visual {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1200px;
        }

        /* Custom Accent para Smart Supply (Diferenciación Visual sutil) */
        .mesh-bg {
            background:
                radial-gradient(circle at 15% 50%, rgba(15, 66, 127, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 30%, rgba(82, 128, 226, 0.1) 0%, transparent 40%);
            /* Toque Cian/Aciano */
        }

        .ui-mockup-light {
            background-color: #F8FAFC;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 40px 80px -20px rgba(15, 66, 127, 0.9);
            transform: rotateY(0deg) rotateX(2deg) translateY(0);
            transition: transform 0.6s ease, box-shadow 0.6s ease;
            position: relative;
        }

        .ui-mockup-light:hover {
            transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
            box-shadow: 0 50px 100px -20px rgba(15, 66, 127, 1);
        }

        .mockup-header {
            background: #E2E8F0;
            padding: 10px 16px;
            display: flex;
            gap: 8px;
        }

        .mac-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .mac-dot.r {
            background: #FF5F56;
        }

        .mac-dot.y {
            background: #FFBD2E;
        }

        .mac-dot.g {
            background: #27C93F;
        }

        .mockup-body {
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #475569;
            font-family: var(--font-code);
            font-size: 0.85rem;
            background:
                linear-gradient(90deg, #F1F5F9 2px, transparent 1px) 0 0 / 40px 40px,
                linear-gradient(#F1F5F9 1px, transparent 1px) 0 0 / 40px 40px;
        }

        .mockup-tag {
            background: var(--bg-dark);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            border: 1px solid var(--tertiary-support);
        }

        /* SECCIÓN 2: BENTO GRID */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            /* Aumentado drásticamente para evitar sentirse apretado */
            margin-top: 4rem;
        }

        .bento-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(82, 128, 226, 0.2);
            border-radius: 32px;
            padding: clamp(2.5rem, 4vw, 4rem);
            /* Uso de clamp para padding fluido */
            backdrop-filter: blur(12px);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: border-color 0.3s, transform 0.3s;
        }

        .bento-item:hover {
            border-color: rgba(82, 128, 226, 0.6);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.03);
        }

        .bento-large {
            grid-column: span 3;
            flex-direction: row;
            align-items: center;
            gap: 3rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(15, 66, 127, 0.15) 100%);
        }

        .bento-value {
            font-family: var(--font-display);
            font-size: clamp(4rem, 6vw, 5.5rem);
            font-weight: 500;
            line-height: 1;
            letter-spacing: -0.05em;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .bento-large h3 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            /* Reducir ligeramente para evitar colisión */
            margin-bottom: 1.5rem;
            /* Aumentar margen inferior */
            letter-spacing: -0.03em;
            line-height: 1.2;
            /* Aumentar line-height */
            text-wrap: balance;
        }

        /* SECCIÓN 3: LA SOLUCIÓN */
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .feature-list {
            list-style: none;
            margin-top: 3rem;
        }

        .feature-item {
            margin-bottom: 2.5rem;
            display: flex;
            gap: 1.5rem;
        }

        .feature-item::before {
            content: "✦";
            font-family: var(--font-code);
            color: var(--secondary-accent);
            font-size: 1.5rem;
            text-shadow: 0 0 10px rgba(121, 213, 81, 0.5);
        }

        .feature-text strong {
            display: block;
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        .cube-placeholder {
            width: 100%;
            height: 500px;
            border: 1px dashed rgba(82, 128, 226, 0.4);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 66, 127, 0.05);
            /* fondo sutil primario */
            position: relative;
        }

        /* SECCIÓN 4: ÉXITO (Métricas Gigantes) */
        .metrics-container {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(82, 128, 226, 0.2);
            border-bottom: 1px solid rgba(82, 128, 226, 0.2);
            padding: 4rem 0;
            margin-top: 4rem;
        }

        .metric-col {
            text-align: center;
            flex: 1;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }

        .metric-col:last-child {
            border-right: none;
        }

        .metric-label {
            font-family: var(--font-code);
            font-size: 0.85rem;
            color: var(--text-dimmed);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .metric-data {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .metric-old {
            font-family: var(--font-code);
            color: #52525B;
            text-decoration: line-through;
            font-size: 1rem;
        }

        .metric-new {
            font-family: var(--font-code);
            font-size: clamp(2.5rem, 4vw, 4rem);
            /* Métricas gigantes */
            color: #fff;
            letter-spacing: -0.05em;
        }

        .metric-highlight {
            color: var(--secondary-accent);
            text-shadow: 0 0 20px rgba(121, 213, 81, 0.3);
        }

        /* CTA FINAL & FOOTER */
        .cta-final {
            text-align: center;
            padding: 8rem 0;
            background: radial-gradient(circle at 50% 100%, rgba(15, 66, 127, 0.2) 0%, transparent 60%);
        }

        .cta-final h2 {
            margin-bottom: 3rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 0;
            background: var(--bg-darker);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-brand p {
            margin: 1rem 0 2rem;
            font-size: 0.95rem;
        }

        .cloud-badge {
            display: inline-block;
            font-family: var(--font-code);
            font-size: 0.75rem;
            padding: 0.5rem 1rem;
            border: 1px solid var(--tertiary-support);
            border-radius: 4px;
            color: var(--tertiary-support);
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-family: var(--font-display);
        }

        .footer-links a,
        .footer-links p {
            color: var(--text-dimmed);
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        /* Controles Top */
        .top-controls {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        /* Globe Language Dropdown (Stripe/Flexport Pattern) */
        .lang-dropdown {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-family: var(--font-data);
            font-size: 0.8rem;
            cursor: pointer;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .lang-toggle:hover {
            color: var(--text-light);
            background: rgba(255, 255, 255, 0.05);
        }

        .lang-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: rgba(18, 18, 18, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0.5rem;
            min-width: 160px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
            z-index: 300;
        }

        .lang-dropdown.open .lang-menu {
            display: block;
        }

        .lang-option {
            display: block;
            width: 100%;
            padding: 0.6rem 1rem;
            background: none;
            border: none;
            color: var(--text-dimmed);
            font-family: var(--font-display);
            font-size: 0.9rem;
            text-align: left;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
        }

        .lang-option.active {
            color: var(--secondary-accent);
        }

        .btn-login {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-data);
            font-size: 0.8rem;
            letter-spacing: 0.05em;
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            transition: all 0.3s;
        }

        .btn-login:hover {
            border-color: var(--secondary-accent);
            color: var(--secondary-accent);
            background: rgba(121, 213, 81, 0.05);
        }

        /* Door Cards Enhanced */
        .door-card {
            flex: 1;
            text-decoration: none;
            text-align: left;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .door-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .door-card:hover {
            transform: translateY(-6px);
        }

        .door-card.tms {
            border-color: rgba(121, 213, 81, 0.25);
        }

        .door-card.tms:hover {
            border-color: rgba(121, 213, 81, 0.5);
            box-shadow: 0 20px 60px -12px rgba(121, 213, 81, 0.15);
            background: rgba(121, 213, 81, 0.03);
        }

        .door-card.ss {
            border-color: rgba(82, 128, 226, 0.25);
        }

        .door-card.ss:hover {
            border-color: rgba(82, 128, 226, 0.5);
            box-shadow: 0 20px 60px -12px rgba(82, 128, 226, 0.15);
            background: rgba(82, 128, 226, 0.03);
        }

        .door-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .door-card.tms .door-icon {
            background: rgba(121, 213, 81, 0.1);
            border: 1px solid rgba(121, 213, 81, 0.2);
        }

        .door-card.ss .door-icon {
            background: rgba(82, 128, 226, 0.1);
            border: 1px solid rgba(82, 128, 226, 0.2);
        }

        .door-title {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .door-desc {
            font-size: 1rem;
            margin: 0 0 1.25rem;
            line-height: 1.5;
            color: var(--text-dimmed);
            max-width: none;
        }

        .door-metric {
            font-family: var(--font-data);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .door-card.tms .door-metric {
            color: var(--secondary-accent);
        }

        .door-card.ss .door-metric {
            color: var(--tertiary-support);
        }

        /* Platform Metrics Strip */
        .metrics-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 5rem 0 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .strip-metric {
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .strip-metric.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .strip-value {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            letter-spacing: -0.04em;
            color: #fff;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .strip-value.green {
            color: var(--secondary-accent);
        }

        .strip-value.blue {
            color: var(--tertiary-support);
        }

        .strip-label {
            font-family: var(--font-data);
            font-size: 0.75rem;
            color: var(--text-dimmed);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Google Cloud Badge (prominent) */
        .cloud-badge-hub {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 2rem 0 4rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.6s;
        }

        .cloud-badge-hub.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cloud-badge-hub span {
            font-family: var(--font-data);
            font-size: 0.75rem;
            color: var(--text-dimmed);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* "Por qué Tet4D" Values Grid */
        .values-section {
            padding: 6rem 0 4rem;
        }

        .values-section h2 {
            text-align: center;
            margin-bottom: 0.75rem;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
        }

        .values-subtitle {
            text-align: center;
            color: var(--text-dimmed);
            font-size: 1.1rem;
            margin-bottom: 3.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .value-card:hover {
            border-color: rgba(121, 213, 81, 0.3);
            background: rgba(255, 255, 255, 0.03);
            transform: translateY(-4px);
        }

        .value-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(121, 213, 81, 0.08);
            border: 1px solid rgba(121, 213, 81, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
        }

        .value-title {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.6rem;
            letter-spacing: -0.02em;
        }

        .value-desc {
            font-size: 0.9rem;
            color: var(--text-dimmed);
            line-height: 1.5;
            max-width: none;
        }

        /* Recognition Strip */
        .recognition-section {
            padding: 3rem 0 5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .recognition-title {
            text-align: center;
            font-family: var(--font-data);
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-dimmed);
            margin-bottom: 2.5rem;
        }

        .recognition-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .recognition-logo {
            height: 90px;
            width: auto;
            max-width: 250px;
            object-fit: contain;
            padding: 1.5rem 2rem;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .recognition-logo:hover {
            transform: translateY(-6px) scale(1.04);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        }

        /* BETA Badge */
        .badge-beta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.15rem 0.5rem;
            margin-left: 0.5rem;
            font-family: var(--font-data);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: var(--tertiary-support);
            background: rgba(121, 194, 255, 0.1);
            border: 1px solid rgba(121, 194, 255, 0.2);
            border-radius: 4px;
            vertical-align: middle;
        }

        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(4, 9, 20, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            width: 100%;
            max-width: 800px;
            max-height: 85vh;
            background: #0a1122;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.6);
            transform: translateY(20px) scale(0.98);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .modal-overlay.open .modal-container {
            transform: translateY(0) scale(1);
        }

        .modal-header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.02);
        }

        .modal-header h3 {
            font-size: 1.2rem;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-dimmed);
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .modal-close:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .modal-body {
            padding: 2rem;
            overflow-y: auto;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .modal-body h4 {
            color: #fff;
            margin: 2rem 0 0.5rem;
            font-size: 1.1rem;
        }

        .modal-body h4:first-child {
            margin-top: 0;
        }

        .modal-body p {
            margin-bottom: 1rem;
        }

        .modal-body ul {
            margin-bottom: 1.5rem;
            padding-left: 1.2rem;
        }

        .modal-body li {
            margin-bottom: 0.5rem;
        }

        /* Video Section */
        .video-section {
            padding: 0 0 4rem;
            text-align: center;
        }

        .video-wrapper {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.5);
        }

        .video-wrapper video {
            width: 100%;
            display: block;
        }

        .video-caption {
            margin-top: 1rem;
            font-family: var(--font-data);
            font-size: 0.75rem;
            color: var(--text-dimmed);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* SECCIÓN 6: FORMULARIO DE CONTACTO */
        .form-input,
        .form-select {
            width: 100%;
            background: rgba(10, 10, 10, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-size: 1rem;
            transition: border-color 0.3s, background 0.3s;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--secondary-accent);
            background: rgba(255, 255, 255, 0.05);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1.2rem center;
            background-size: 1.2em;
            cursor: pointer;
        }

        .form-select option {
            background: var(--bg-dark);
            color: #fff;
        }

        /* Responsive Hub */
        @media(max-width: 1024px) {
            h1 {
                font-size: 3rem;
                line-height: 1.1;
            }

            .hero {
                padding-top: 120px;
                gap: 2rem;
            }

            .hub-doors {
                flex-direction: column;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .contact-form-wrapper {
                padding: 2rem !important;
            }

            .contact-grid>div>div {
                grid-template-columns: 1fr !important;
            }

            .metrics-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .door-card {
                padding: 2rem;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .recognition-grid {
                gap: 1.5rem;
            }

            .recognition-logo {
                height: 70px;
                padding: 1rem 1.5rem;
            }
        }

        @media(max-width: 600px) {
            .metrics-strip {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .solution-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .recognition-grid {
                gap: 1rem;
            }

            .recognition-logo {
                height: 55px;
                padding: 0.75rem 1rem;
            }
        }