/* ==========================================================================
           REDISEÑO VISUAL Y OPTIMIZACIÓN DEL HOOK (HARDATA SECURITY)
           ================================================================---------- */
        :root {
            --primary-glow: rgba(37, 99, 235, 0.15);
            --accent-blue: #60a5fa;
            --dark-bg: #030508;
            --panel-bg: rgba(10, 14, 23, 0.75);
            --border-color: rgba(96, 165, 250, 0.2);
        }

        body {
            background-color: var(--dark-bg);
            color: #e2e8f0;
            font-family: 'Inter', sans-serif;
        }

        /* Ajuste para dar mayor anchura general a los contenedores principales y aprovechar mejor la pantalla */
        .wrap {
            max-width: 1400px !important;
        }

        /* Ajuste de Grid para posicionar el texto y la consola con mejor balance visual */
        .hh-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
        }

        /* Estilos del texto de presentación a la izquierda (Mejora de tipografía y espaciado) */
        .hh-brand-bio {
            color: #fff;
            position: relative;
            z-index: 2;
        }
        
        .hh-brand-bio .breadcrumb {
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'JetBrains Mono', monospace;
        }

        .hh-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(96, 165, 250, 0.1);
            border: 1px solid var(--border-color);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--accent-blue);
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }

        .hh-brand-bio h2 {
            font-family: 'Sora', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffffff;
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .hh-brand-bio h2 span {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hh-brand-bio p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #94a3b8;
            text-align: left;
        }

        /* Botón CTA principal mejorado con efectos hover */
        .hh-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hh-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        /* Panel de Consola Interactiva Rediseñado (Efecto Glassmorphism avanzado) */
        .hh-panel {
            background: var(--panel-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(37, 99, 235, 0.1);
            backdrop-filter: blur(12px);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .hh-panel:hover {
            border-color: rgba(96, 165, 250, 0.4);
        }

        .hh-panel-head {
            background: rgba(3, 5, 8, 0.8);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-color);
        }

        .hh-dots {
            display: flex;
            gap: 6px;
        }

        .hh-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .hh-dots span:nth-child(1) { background: #3b82f6; }
        .hh-dots span:nth-child(2) { background: #60a5fa; }
        .hh-dots span:nth-child(3) { background: #93c5fd; }

        .hh-panel-file {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: #64748b;
        }

        .hh-live {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-family: 'JetBrains Mono', monospace;
            color: #60a5fa;
        }

        .hh-live-dot {
            width: 6px;
            height: 6px;
            background: #60a5fa;
            border-radius: 50%;
            box-shadow: 0 0 8px #60a5fa;
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.2); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Estilos optimizados para la consola interactiva en el Hero */
        #hhLog {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            padding: 20px;
            background: rgba(3, 5, 8, 0.6);
            min-height: 240px;
            color: #cbd5e1;
        }

        .hh-line {
            margin: 12px 0;
            border-left: 3px solid transparent;
            padding-left: 12px;
            opacity: 0;
            animation: fadeInTerminal 0.4s forwards;
            line-height: 1.5;
        }

        .hh-line[data-sev="ok"] { border-color: #60a5fa; color: #93c5fd; background: rgba(96, 165, 250, 0.03); }
        .hh-line[data-sev="med"] { border-color: #3b82f6; color: #60a5fa; background: rgba(59, 130, 246, 0.03); }
        .hh-line[data-sev="high"] { border-color: #1d4ed8; color: #93c5fd; background: rgba(29, 78, 216, 0.03); }
        .hh-line[data-sev="info"] { border-color: #3b82f6; color: #60a5fa; background: rgba(59, 130, 246, 0.03); }
        
        .hh-tag { 
            font-weight: 700; 
            padding: 2px 6px; 
            border-radius: 4px; 
            font-size: 0.75rem;
        }

        @keyframes fadeInTerminal { 
            to { opacity: 1; transform: translateY(0); } 
            from { opacity: 0; transform: translateY(5px); }
        }

        .hh-panel-foot {
            background: rgba(3, 5, 8, 0.8);
            padding: 15px 20px;
            border-top: 1px solid var(--border-color);
        }

        .hh-gauge-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            font-family: 'JetBrains Mono', monospace;
            color: #94a3b8;
            margin-bottom: 8px;
        }

        .hh-gauge-row strong {
            color: #60a5fa;
        }

        .hh-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
            overflow: hidden;
        }

        .hh-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #2563eb, #60a5fa);
            border-radius: 3px;
        }

        .hh-disclaimer {
            font-size: 0.75rem;
            color: #64748b;
            margin-top: 10px;
            text-align: center;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Estilos para las secciones robustecidas (Estadísticas y otros elementos generales) */
        .hardata-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .hardata-stat-card {
            background: var(--panel-bg);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }
        .hardata-stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-blue);
        }
        .hardata-stat-number {
            font-family: 'Sora', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-blue);
            margin-bottom: 10px;
        }

        /* ==========================================================================
           REDISEÑO TOTAL: SECCIÓN RIGOR METODOLÓGICO (ESTILO CYBER TIMELINE CARDS - 4 PASOS ESTRATÉGICOS)
           ========================================================================== */
        .hardata-metodologia-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
            position: relative;
        }

        .hardata-metodologia-card {
            background: linear-gradient(145deg, rgba(10, 14, 23, 0.85) 0%, rgba(5, 8, 15, 0.95) 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 30px 24px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(16px);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hardata-metodologia-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2563eb, #60a5fa);
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .hardata-metodologia-card:hover {
            transform: translateY(-8px);
            border-color: rgba(96, 165, 250, 0.5);
            box-shadow: 0 30px 60px -20px rgba(37, 99, 235, 0.3);
        }

        .hardata-metodologia-card:hover::before {
            opacity: 1;
        }

        .metodologia-header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .metodologia-phase-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            color: #60a5fa;
            background: rgba(96, 165, 250, 0.1);
            border: 1px solid rgba(96, 165, 250, 0.25);
            padding: 5px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        .metodologia-icon-box {
            width: 44px;
            height: 44px;
            background: rgba(37, 99, 235, 0.12);
            border: 1px solid rgba(96, 165, 250, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .hardata-metodologia-card:hover .metodologia-icon-box {
            background: var(--accent-blue);
            color: #030508;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
        }

        .hardata-metodologia-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .hardata-metodologia-card p {
            font-size: 0.9rem;
            color: #94a3b8;
            line-height: 1.65;
            text-align: justify;
            margin-bottom: 20px;
        }

        .metodologia-footer-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: #60a5fa;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 1200px) {
            .hardata-metodologia-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .hardata-metodologia-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 900px) {
            .hh-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hh-brand-bio h2 {
                font-size: 2.2rem;
            }
        }

        /*==========================
            LOGO (MANIFIESTO)
    ==========================*/

    .about-company .about-container {
        display: flex;
        align-items: center;
        justify-content: center; /* Centrado para acercar el texto y el logo */
        gap: 60px; /* Espacio equilibrado entre contenido y logo */
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-content {
        flex: 1;
        max-width: 600px; /* Controla el ancho del texto para evitar que se extienda demasiado */
    }

    .about-image{
        flex: 0 0 320px;
        display: flex;
        justify-content: center; 
        align-items: center;
        position: relative;
        right: 0; /* Eliminado el desplazamiento excesivo hacia la derecha */
    }

    /* Propuesta de animación mejorada: Giro orbital tridimensional suave con destello de brillo cibernético */
    @keyframes cyberHologramFloat {
        0% {
            transform: perspective(1000px) rotateY(0deg) translateY(0) scale(1);
            filter: drop-shadow(0 0 10px rgba(96,165,250,0.3)) brightness(1);
        }
        50% {
            transform: perspective(1000px) rotateY(12deg) translateY(-12px) scale(1.04);
            filter: drop-shadow(0 0 25px rgba(59,130,246,0.7)) brightness(1.15);
        }
        100% {
            transform: perspective(1000px) rotateY(0deg) translateY(0) scale(1);
            filter: drop-shadow(0 0 10px rgba(96,165,250,0.3)) brightness(1);
        }
    }

    .about-image img{
        width: 100%;
        max-width: 280px; /* Ajuste proporcional para mejor sintonía visual con el texto */
        height: auto;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        left: 0;
        animation: cyberHologramFloat 6s ease-in-out infinite;
    }

    .about-image img:hover{
        transform: perspective(1000px) rotateY(0deg) scale(1.08);
        animation-play-state: paused;
        filter: drop-shadow(0 0 35px rgba(96,165,250,0.95)) brightness(1.2);
    }

    @media (max-width: 900px) {
        .about-company .about-container {
            flex-direction: column;
            gap: 30px;
        }
        .about-image {
            right: 0;
            margin-top: 10px;
        }
    }

    .qs-section {
            position: relative;
            padding: 110px 0;
            background: radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
                        radial-gradient(circle at 85% 90%, rgba(96, 165, 250, 0.08) 0%, transparent 45%),
                        var(--dark-bg);
            overflow: hidden;
        }

        .qs-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(96, 165, 250, 0.02) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(96, 165, 250, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
            pointer-events: none;
        }

        .qs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .qs-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 65px auto;
        }

        .qs-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(37, 99, 235, 0.12);
            border: 1px solid rgba(96, 165, 250, 0.3);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.82rem;
            color: var(--accent-blue);
            font-family: 'JetBrains Mono', monospace;
            margin-bottom: 22px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
        }

        .qs-title {
            font-family: 'Sora', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1.5px;
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .qs-title span {
            background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .qs-subtitle-lead {
            font-size: 1.1rem;
            color: #94a3b8;
            line-height: 1.6;
        }

        .qs-bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }

        .qs-bento-card {
            background: var(--panel-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px;
            backdrop-filter: blur(16px);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .qs-bento-card:hover {
            transform: translateY(-6px);
            border-color: rgba(96, 165, 250, 0.5);
            box-shadow: 0 30px 60px -20px rgba(37, 99, 235, 0.25);
        }

        .qs-bento-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(96, 165, 250, 0.06), transparent 40%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .qs-bento-card:hover::after {
            opacity: 1;
        }

        .qs-card-main {
            grid-column: span 7;
        }

        .qs-card-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #60a5fa, #2563eb);
        }

        .qs-main-text {
            font-size: 1.12rem;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 22px;
        }

        .qs-main-text:last-child {
            margin-bottom: 0;
        }

        .qs-main-text strong {
            color: #ffffff;
            font-weight: 600;
        }

        .qs-card-highlight {
            grid-column: span 5;
            background: linear-gradient(135deg, rgba(10, 14, 23, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
        }

        .qs-highlight-icon {
            width: 56px;
            height: 56px;
            background: rgba(37, 99, 235, 0.15);
            border: 1px solid rgba(96, 165, 250, 0.35);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
            font-size: 1.4rem;
            margin-bottom: 24px;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .qs-bento-card:hover .qs-highlight-icon {
            transform: scale(1.1) rotate(6deg);
            background: rgba(37, 99, 235, 0.28);
            color: #ffffff;
        }

        .qs-card-highlight h3, .qs-mini-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 1.25rem;
            color: #ffffff;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .qs-card-highlight p, .qs-mini-card p {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.65;
            margin: 0;
        }

        .qs-mini-card {
            grid-column: span 4;
            padding: 30px;
        }

        .qs-mini-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .qs-mini-icon {
            width: 44px;
            height: 44px;
            background: rgba(96, 165, 250, 0.1);
            border: 1px solid rgba(96, 165, 250, 0.25);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .qs-mini-card:hover .qs-mini-icon {
            background: var(--accent-blue);
            color: #030508;
            transform: scale(1.08);
        }

        .qs-mini-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: #60a5fa;
            background: rgba(96, 165, 250, 0.08);
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid rgba(96, 165, 250, 0.15);
        }

        @media (max-width: 1024px) {
            .qs-card-main {
                grid-column: span 12;
            }
            .qs-card-highlight {
                grid-column: span 12;
            }
            .qs-mini-card {
                grid-column: span 6;
            }
        }

        @media (max-width: 768px) {
            .qs-title {
                font-size: 2.2rem;
            }
            .qs-mini-card {
                grid-column: span 12;
            }
            .qs-bento-card {
                padding: 25px;
            }
        }

        .hardata-ticker-section {
            position: relative;
            background: var(--dark-bg);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 16px 0;
            overflow: hidden;
            z-index: 3;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
        }

        .hardata-ticker-wrap {
            display: flex;
            width: max-content;
            animation: tickerScroll 35s linear infinite;
        }

        .hardata-ticker-wrap:hover {
            animation-play-state: paused;
        }

        .hardata-ticker-track {
            display: flex;
            align-items: center;
            gap: 30px;
            padding-right: 30px;
        }

        .hardata-ticker-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #94a3b8;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .hardata-ticker-item:hover {
            color: #60a5fa;
        }

        .hardata-ticker-item i {
            color: #3b82f6;
            font-size: 0.6rem;
        }

        .hardata-ticker-item strong {
            color: #ffffff;
            font-weight: 600;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .logo img {
      height: 38px;
      width: auto;
      object-fit: contain;
    }
    .webinar-badge { 
      background: #2563eb; 
      color: #fff; 
      padding: 4px 10px; 
      border-radius: 4px; 
      font-size: 0.75rem; 
      font-weight: 700; 
      text-transform: uppercase; 
      display: inline-block; 
      font-family: 'JetBrains Mono', monospace; 
    }
    .webinar-badge-ondemand { background: #5b8cff; color: #fff; }
    
    .unified-hero {
      position: relative;
      padding: 8rem 0 7rem 0 !important;
      background: linear-gradient(135deg, rgba(3,5,8,0.92) 0%, rgba(10,25,50,0.80) 100%), url('../img/fongo_good.png') no-repeat center center;
      background-size: cover;
      overflow: hidden;
    }
    #netCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }
    .unified-hero .wrap.hh-grid {
      position: relative;
      z-index: 2;
    }

    /* MODIFICACIÓN CLAVE: Forzar 4 columnas proporcionales en una sola fila con mayor amplitud y espacio interno */
    .feature .testi-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 28px;
    }
    .feature .testi-card {
        padding: 35px 28px !important; /* Mayor anchura visual y espacio interior */
    }
    @media (max-width: 1300px) {
        .feature .testi-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }
    @media (max-width: 768px) {
        .feature .testi-grid {
            grid-template-columns: 1fr !important;
        }
    }