@charset "UTF-8";

/* LOCAL FONTS - PERFORMANCE OPTIMIZATION */
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-v20-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-v20-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dancing Script';
    src: url('../assets/fonts/dancingscript-v29-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* PALETA: EJECUTIVO MODERNO (Rich Black & Enterprise Blue) */

    /* Fondos: Oscuros pero no negros puros (más elegante) */
    --bg-color: #050505;
    --card-bg: #1f2833;

    /* Textos: Claridad máxima sin deslumbrar */
    --text-color: #c5c6c7;
    --text-bright: #ffffff;
    --text-muted: #9ca3af;

    /* Acento: Azul Confianza (tipo LinkedIn/Intel) */
    --accent-color: #66fcf1;
    --accent-dark: #45a29e;

    /* Fuentes */
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;

    /* Bordes sutiles */
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(31, 40, 51, 0.8);
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 50% 0%,
            rgba(59, 130, 246, 0.15) 0%,
            transparent 50%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    /* text-shadow removido de global — solo el Hero tiene glow */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.large-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.highlight {
    color: var(--accent-color);
}

.txt-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(180deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================== NAVIGATION ==================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.glass-nav.active {
    overflow: visible;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Hamburger Button (hidden on desktop) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== BUTTONS ==================== */
.cta-btn,
.primary-btn,
.secondary-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cta-btn.small {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-btn.small:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
}

.primary-btn {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.03); /* Fondo muy sutil para dar cuerpo */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borde más visible */
    color: var(--text-bright); /* Blanco puro para legibilidad */
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 120px;
}

.hero-content {
    z-index: 2;
    max-width: 1100px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(102, 252, 241, 0.15));
    animation: floating 6s ease-in-out infinite;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}

.hero-subtext {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.dogfooding-text {
    margin-top: 1rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.pain-icon {
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(102, 252, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Shared Neural Background */
.hero-visual-bg {
    background-color: var(--bg-color); /* Fallback purely for contrast */
    position: relative;
    overflow: hidden; /* Ensure video/overlay doesn't spill */
}


.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    aspect-ratio: 16 / 9;
    opacity: 0.6; /* Sutil transparencia para mezclar con el fondo oscuro */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Forzamos que el contenido esté por encima del video y el degradado */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.9) 85%,
        var(--bg-color) 100%
    );
    z-index: 1; /* El degradado queda en la capa 1 */
}

/* Forzamos que el contenido esté por encima del degradado */
.hero-content, 
.container, 
#services .container {
    position: relative;
    z-index: 10; /* El contenido sube a la capa 10 */
}

.hero-content, 
.container, 
#services .container {
    position: relative;
    z-index: 10; /* Elevamos el contenido para que el degradado esté detrás */
}

.hero .subtitle, 
.hero-subtext, 
.pain-card p, 
.pain-card h3 {
    color: #ffffff;
}

.pain-card {
    background: rgba(31, 40, 51, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pain-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: rgba(45, 55, 70, 0.5);
}

.pain-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8;
}

.pain-card:hover .pain-icon {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 15px var(--accent-color));
    color: #fff;
}

/* --- TECH STACK SECTION --- */
.tech-stack {
    background-color: #0a0a0a; /* Fondo muy oscuro */
    padding: 80px 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
    opacity: 1; /* Eliminamos la opacidad general para que el blanco sea puro */
}

.logo-item img {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1); /* Convierte cualquier color en blanco puro */
    transition: all 0.4s ease;
}

.logo-item img:hover {
    filter: none; /* Al quitar el filtro, aparece el color del logo definido en el HTML */
    transform: scale(1.1);
}

/* --- WIDGET CHAT IA --- */
#ai-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: var(--font-main);
}

/* Botón Flotante */
.chat-fab {
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 252, 241, 0.4);
    transition: all 0.3s ease;
    font-weight: 700;
    min-width: 160px; /* Prevenir CLP reservando espacio */
    height: 48px;
}

.chat-fab:hover {
    transform: translateY(-5px) scale(1.05); /* Se eleva un poco más */
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.6);
}

.chat-fab .fab-icon svg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-fab:hover .fab-icon svg {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px #000);
}

.fab-icon {
    font-size: 1.5rem;
}

/* Ventana Chat */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 440px;
    height: 620px;
    background: rgba(10, 15, 25, 0.9);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
                inset 0 0 20px rgba(102, 252, 241, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.chat-window.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

/* Header */
.chat-header {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-info h3 {
    color: var(--text-bright);
    font-size: 1rem;
    margin: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 5px #22c55e;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Cuerpo mensajes */
.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: flex-start;
    position: relative;
    background-color: rgba(5, 8, 15, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23999' stroke-width='0.6' opacity='0.2'%3E%3Cpath d='M20 20l40 40m20 0l-20 20M100 20l-40 40M100 80l-20-20M20 100l20-20M60 10v10m0 80v10M10 60h10m80 0h10'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3Ccircle cx='100' cy='20' r='2'/%3E%3Ccircle cx='100' cy='100' r='2'/%3E%3Ccircle cx='20' cy='100' r='2'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: local;
}

.chat-body::-webkit-scrollbar {
    width: 5px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(102, 252, 241, 0.2);
    border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 252, 241, 0.5);
}

.chat-body > .message:first-child {
    margin-top: auto; /* Empuja mensajes hacia abajo si hay pocos */
}

.message {
    max-width: 85%;
    padding: 0.8rem 1.1rem;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
    animation: msgReveal 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes msgReveal {
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-bright);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Chat Options (Botones Rápidos) */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-self: flex-start;
    max-width: 90%;
}

.chat-option-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    text-align: left;
}

.chat-option-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}

.user-message {
    background: var(--accent-dark);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Input */
.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

#user-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8rem;
    color: #fff;
    outline: none;
    font-family: var(--font-main);
}

#user-input:focus {
    border-color: var(--accent-color);
}

.send-btn {
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #000;
}

.send-btn:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 15px var(--accent-color);
}

.send-btn svg {
    transform: translateX(2px) translateY(1px) rotate(-10deg); /* Ajuste visual para el icono de avión */
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 100px;
}

.section.tight-top {
    padding-top: 2rem;
}

.dark-bg {
    background: rgba(10, 10, 10, 0.4);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    padding-bottom: 1rem;
}

/* Línea decorativa bajo section titles */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: -2rem auto 3rem;
    color: var(--text-muted);
}

/* ==================== PAIN POINTS (Hero Grid) ==================== */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    text-align: left;
}

.pain-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pain-card h3 {
    color: var(--text-bright);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pain-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Punchline */
.punchline-container {
    text-align: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.punchline-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}

/* ==================== HOW IT WORKS ==================== */
#how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.how-it-works-title {
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-bright);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.step-card .icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.step-card .icon svg {
    stroke: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-color));
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .icon svg {
    filter: drop-shadow(0 0 15px var(--accent-color));
    transform: scale(1.1) rotate(5deg);
    stroke: #fff;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== FEATURES / BENEFITS GRID ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(31, 40, 51, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(102, 252, 241, 0.15);
    background: rgba(45, 55, 70, 0.5) !important; /* Ligeramente más claro al hover */
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    height: 50px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px var(--accent-color));
    color: var(--accent-color);
}

.feature-card .icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-color);
    stroke-width: 1.8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .icon svg {
    filter: drop-shadow(0 0 15px var(--accent-color));
    transform: scale(1.1) rotate(5deg);
    stroke: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Tech Badge */
.tech-card-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.tech-badge {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    border-color: #fff;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-icon svg {
    stroke: var(--accent-color);
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 2px var(--accent-color));
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== SHOWCASE (Casos de Éxito) ==================== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-item {
    background: rgba(31, 40, 51, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-item:hover {
    border-color: var(--text-muted);
}

.showcase-item.premium-card {
    transition: all 0.4s ease;
}

.showcase-item.premium-card:hover {
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.15);
    transform: translateY(-5px);
}

.browser-mockup {
    background: #1a1a1a;
    height: 250px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
}

.mockup-header {
    height: 30px;
    background: #252525;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 6px;
}

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

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.mockup-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.mockup-content span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.nexus-preview {
    background: linear-gradient(135deg, #1a3a1a 0%, #0d2b0d 40%, #2d5a2d 100%);
}

.nexus-preview::before {
    content: '🍎🍊🫐';
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    top: 20%;
    left: 10%;
    filter: blur(1px);
}

.nexus-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(39, 201, 63, 0.2), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(100, 200, 100, 0.15), transparent 50%);
}

.melros-preview {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2b 40%, #2d4a5a 100%);
}

.melros-preview::before {
    content: '💆‍♂️🏥📅';
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    top: 20%;
    right: 10%;
    filter: blur(1px);
}

.melros-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(100, 180, 255, 0.2), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.15), transparent 50%);
}

.galiciana-preview {
    background: linear-gradient(135deg, #3a2a1a 0%, #2b1b0d 40%, #5a4a2d 100%);
}

.galiciana-preview::before {
    content: '🏛️🍷🍽️';
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    top: 20%;
    left: 10%;
    filter: blur(1px);
}

.galiciana-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.2), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(200, 100, 50, 0.15), transparent 50%);
}

.inmobiliaria-preview {
    background: linear-gradient(135deg, #3a3a1a 0%, #2b2b0d 40%, #5a5a2d 100%);
}

.inmobiliaria-preview::before {
    content: '🏠🔑🏗️';
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    top: 20%;
    right: 10%;
    filter: blur(1px);
}

.inmobiliaria-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(100, 200, 255, 0.2), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 150, 255, 0.15), transparent 50%);
}

.showcase-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.metric-badge {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 240, 255, 0.02));
    border: 1px solid var(--accent-color);
    color: var(--text-bright);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.demo-link {
    margin-top: auto;
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    transition: transform 0.2s;
}

.demo-link:hover .arrow {
    transform: translateX(5px);
}

/* ==================== SOCIAL PROOF SECTION ==================== */
.metrics-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.metric-item {
    text-align: center;
    min-width: 150px;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-unit {
    font-size: 1.2rem;
    color: var(--text-bright);
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 768px) {
    .metric-divider {
        display: block;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(31, 40, 51, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.quote-icon {
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(102, 252, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-bright);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==================== ROI SECTION ==================== */
.roi-quote {
    margin-top: 2rem;
    color: var(--text-bright);
}

/* ==================== FAQ ACCORDION ==================== */
.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    animation: slide-down 0.3s ease-out;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== MANIFESTO ==================== */
.manifesto-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

.manifesto-card::before {
    content: '"';
    font-family: serif;
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.manifesto-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: var(--accent-color);
    border-radius: 0 4px 4px 0;
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.manifesto-content p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.signature {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.sign-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--accent-color);
    transform: rotate(-5deg);
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.sign-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== AUDIT FORM ==================== */
.audit-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    animation: data-load-fade 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes data-load-fade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        border-color: rgba(0, 240, 255, 0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        border-color: var(--border-color);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    animation: field-slide 0.5s ease-out forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.4s;
}

.form-group:nth-child(3) {
    animation-delay: 0.6s;
}

.form-group:nth-child(4) {
    animation-delay: 0.8s;
}

.form-group:nth-child(5) {
    animation-delay: 1.0s;
}

@keyframes field-slide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group.full-width {
    grid-column: span 2;
}

.audit-form label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    background: rgba(0, 240, 255, 0.02);
}

.audit-form .primary-btn {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    min-width: 300px;
    margin-top: 1rem;
}

.audit-form button {
    display: block;
    margin: 2rem auto 0;
    width: auto;
    max-width: 400px;
}

/* Form disclaimer (moved from inline) */
.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0.2rem;
    text-align: center;
    opacity: 0.8;
    width: 100%;
    grid-column: 1 / -1;
}

/* ==================== PARTNERS PROGRAM ==================== */
#partners-program {
    background: linear-gradient(to bottom, var(--bg-color), #1a1500);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.partners-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
}

.partners-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00f0ff, #7000ff);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.program-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.program-text strong {
    color: #fff;
    font-weight: 700;
}

.availability-counter {
    font-family: monospace;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 2rem;
    background: rgba(255, 215, 0, 0.05);
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.counter-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.counter-text>span {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.count-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffbd2e;
    border-radius: 50%;
    margin-right: 0.6rem;
    box-shadow: 0 0 8px #ffbd2e;
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.partners-btn {
    background: #ffd700;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partners-btn:hover {
    background: #ffed4a;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
.main-footer {
    padding: 5rem 2rem 2rem;
    background: #050505;
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-top: 0;
}

.footer-title {
    color: var(--text-bright);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(31, 40, 51, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(102, 252, 241, 0.1);
    background: rgba(45, 55, 70, 0.5) !important;
}

/* Servicio estrella (WhatsApp) */
.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(145deg, rgba(102, 252, 241, 0.1) 0%, rgba(31, 40, 51, 0.4) 100%) !important;
    box-shadow: 0 10px 30px rgba(102, 252, 241, 0.08);
}

.service-card.featured::before {
    content: 'MÁS DEMANDADO';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    color: var(--text-bright);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px var(--accent-color));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-bright);
}

.service-card>p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-list li strong {
    color: var(--text-bright);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .how-it-works-title {
        font-size: 2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        width: 100%;
    }

    .testimonial-card, .showcase-item, .feature-card, .pain-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Performance: Disable video on mobile, use background image */
    .hero-video.v-desktop {
        display: none !important;
    }
    .hero.hero-visual-bg {
        background-image: url('../assets/images/hero-bg.webp') !important;
        background-size: cover;
        background-position: center;
    }

    /* Nav */
    .glass-nav {
        padding: 1rem 1rem;
        width: 100%;
        overflow-x: hidden;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 12, 16, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .nav-links a {
        font-size: 1.4rem;
        color: var(--text-bright);
    }

    .nav-links a:hover {
        color: var(--accent-color);
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .primary-btn,
    .hero-actions .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Pain points */
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Sections */
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* How it works */
    #how-it-works {
        padding: 4rem 1.5rem;
    }

    .how-it-works-title {
        font-size: 1.8rem;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-card {
        min-width: auto;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .showcase-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(102, 252, 241, 0.1);
}

.mockup-content svg {
    width: 50px !important;
    height: 50px !important;
    stroke-width: 1.8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-item:hover .mockup-content svg {
    transform: scale(1.25);
    filter: drop-shadow(0 0 15px var(--accent-color));
    stroke: #fff;
}
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Manifesto */
    .manifesto-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .manifesto-title {
        font-size: 1.4rem;
    }

    .sign-text {
        font-size: 2rem;
    }

    /* Form */
    .audit-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 2rem auto 0;
    }

    .form-group {
        width: 100% !important;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
    }

    .audit-form .primary-btn {
        min-width: auto;
        width: 100%;
    }

    /* Hamburger Menu Visibility */
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        animation: slideInDown 0.4s ease forwards;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-links .cta-btn.small {
        width: 100%;
        margin-top: 1rem;
    }

    /* Animation for logo item */
    .partners-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    /* Chat Interface / FAB */
    #ai-widget-container {
        bottom: 20px;
        right: 15px;
        z-index: 9998;
    }

    .chat-fab {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 30px !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .chat-fab .fab-text,
    .chat-fab span:not(.fab-icon) {
        display: inline-block !important;
        visibility: visible !important;
        width: auto !important;
        height: auto !important;
        position: static !important;
    }

    .chat-window {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic Viewport Height */
        max-width: 100vw !important;
        bottom: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .chat-input-area {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom)); /* Soporte iOS notch */
    }

    /* Footer */
    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    /* Punchline */
    .punchline-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .how-it-works-title {
        font-size: 1.4rem;
    }

    .feature-card h3,
    .step-card h3 {
        font-size: 1.15rem;
    }

    .metric-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .partners-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */

/* Base state: hidden before reveal */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Direction variants */
[data-reveal="up"] {
    transform: translateY(60px);
}

[data-reveal="left"] {
    transform: translateX(-60px);
}

[data-reveal="right"] {
    transform: translateX(60px);
}

[data-reveal="scale"] {
    transform: scale(0.85);
}

[data-reveal="fade"] {
    transform: none;
}

/* Revealed state */
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for sequential reveals (cards, grid items) */
[data-reveal-delay="1"] {
    transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.35s;
}

[data-reveal-delay="4"] {
    transition-delay: 0.5s;
}

[data-reveal-delay="5"] {
    transition-delay: 0.65s;
}

[data-reveal-delay="6"] {
    transition-delay: 0.8s;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==================== HERO ASYMMETRIC GRID & VISUAL HOOK ==================== */
.hero-asymmetric-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding-top: 140px;
    padding-bottom: 60px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero-asymmetric-grid {
        padding-top: 120px;
    }
}

/* Pain points list compact */
.pain-points-list {
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    text-align: left;
}

.pain-points-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-points-list li .icon {
    font-size: 1.4rem;
}

/* Mockup Window - Hook Visual */
.hero-visual-hook {
    perspective: 1000px;
    width: 100%;
}

.mockup-window {
    background: rgba(15, 20, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(102, 252, 241, 0.05);
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.mockup-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #27c93f;
}

.mockup-title {
    margin-left: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 380px;
}

.chat-msg {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    animation: slideInUp 0.5s ease backwards;
    font-family: var(--font-main);
}

.chat-msg.bot {
    background: rgba(102, 252, 241, 0.08);
    border: 1px solid rgba(102, 252, 241, 0.15);
    color: var(--text-bright);
}

.chat-msg.user {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-bright);
    animation-delay: 2s;
}

.chat-msg.bot:nth-child(3) {
    animation-delay: 2s;
    /* Reducido para que la alerta salga antes */
}

.chat-msg:nth-child(4) {
    animation-delay: 4s;
    /* Mensaje de éxito saldrá después */
}

.scan-badge {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: center;
    animation: slideInUp 0.5s ease backwards;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.chat-msg.alert-msg {
    background: rgba(255, 95, 86, 0.08);
    border: 1px solid rgba(255, 95, 86, 0.15);
    color: #ffb3b0;
}

.chat-msg.alert-msg strong {
    color: #ff5f56;
}

.chat-msg.success-msg {
    background: rgba(39, 201, 63, 0.08);
    border: 1px solid rgba(39, 201, 63, 0.15);
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 4px;
    color: #e2e8f0;
    white-space: pre-wrap;
    /* Para respetar los saltos de línea de Gemini */
}

.chat-msg.success-msg strong {
    color: #27c93f;
}

.chat-typing {
    background: rgba(102, 252, 241, 0.05);
    border: 1px solid rgba(102, 252, 241, 0.1);
    align-self: flex-start;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    padding: 12px 20px;
    display: flex;
    gap: 5px;
    animation: slideInUp 0.5s ease backwards 5.5s;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.chat-typing span:nth-child(1) {
    animation-delay: -0.32s;
}

.chat-typing span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* -----------------------------------------
   Caza Proactiva - Indicador de Urgencia Crítica (Fase 6)
   ----------------------------------------- */
.urgent-blink {
    animation: urgentPulse 2s infinite ease-in-out;
    border-color: rgba(255, 51, 102, 0.4) !important;
}

@keyframes urgentPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 15px 5px rgba(255, 51, 102, 0.15);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

/* ==================== HERO ANIMATIONS (AgenciAlquimia) ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(102, 252, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 252, 241, 0.6); }
    100% { box-shadow: 0 0 20px rgba(102, 252, 241, 0.3); }
}

/* Aplicar pulso a botones principales */
.primary-btn {
    animation: glowPulse 3s infinite ease-in-out;
}
/* ==================== MEDIA QUERIES (MOBILE FIX) ==================== */
@media screen and (max-width: 768px) {
    .hero-title, .section-title {
        font-size: 2.2rem !important;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Grids a 1 columna */
    .pain-points-grid, 
    .services-grid, 
    .showcase-grid, 
    .features-grid, 
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .pain-card, .service-card {
        padding: 2rem 1.5rem;
    }

    /* Navigation Mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--glass-bg);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    /* Chat Window Mobile */
    .chat-window {
        width: 90vw;
        right: 5vw;
        left: 5vw;
        height: 70vh;
        bottom: 80px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions button, .hero-actions a {
        width: 100%;
        text-align: center;
    }
}

/* --- VERTICAL SOLUTIONS (STITCH DESIGN REDUX) --- */
.vertical-solutions {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vertical-solutions .max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.vertical-solutions .text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.vertical-solutions .sol-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.vertical-solutions .sol-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-bright);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

@media (min-width: 768px) {
    .vertical-solutions .sol-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.vertical-solutions .solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .vertical-solutions .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vertical-solutions .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.v-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 4/5;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    cursor: pointer;
}

.v-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) brightness(1.2);
    opacity: 0.6;
    transition: transform 0.7s ease;
}

.v-card:hover img {
    transform: scale(1.05);
}

.v-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
}

.v-card-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
}

.v-card-content .v-sector {
    color: var(--accent-color);
    font-family: monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.v-card-content .v-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

/* --- BENTO GRID ROI SECTION (STITCH REDUX) --- */
.bento-roi-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background: radial-gradient(circle at 50% -20%, #1e2021 0%, #0d0e0f 100%);
    overflow: hidden;
}

.bento-roi-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .bento-roi-title {
        font-size: 4.5rem;
    }
}

.bento-roi-subtitle {
    color: var(--text-muted);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .bento-roi-subtitle {
        font-size: 1.25rem;
    }
}

.bento-grid {
    max-width: 80rem;
    margin: 0 auto 8rem auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bento-card {
    background: rgba(24, 26, 27, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(102, 252, 241, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.5s ease;
}

.bento-card:hover {
    border-color: rgba(102, 252, 241, 0.5);
}

.bento-icon-wrapper {
    margin-bottom: 2rem;
    padding: 0.75rem;
    background-color: rgba(102, 252, 241, 0.1);
    border-radius: 0.5rem;
    display: inline-flex;
}

.bento-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(102, 252, 241, 0.4));
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    color: var(--text-bright);
    font-family: var(--font-heading);
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.625;
}

.bento-testimonial-container {
    max-width: 56rem;
    margin: 0 auto;
}

.bento-testimonial-inner {
    position: relative;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.bento-quote-mark {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-color);
    padding: 0 1rem;
    color: var(--accent-color);
}

.bento-quote-mark svg {
    width: 32px;
    height: 32px;
}

.bento-testimonial-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-bright);
    line-height: 1.375;
}

@media (min-width: 768px) {
    .bento-testimonial-text {
        font-size: 1.875rem;
    }
}

.bento-protocol {
    margin-top: 2rem;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* --- PREMIUM REDESIGN SECTIONS (SERVICES & BENEFITS) --- */
.premium-section {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
    background-color: #0d0e0f;
    color: #ffffff;
}

@media (min-width: 768px) {
    .premium-section {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.mesh-gradient-bg {
    background: radial-gradient(circle at 50% -20%, rgba(95, 255, 247, 0.08) 0%, rgba(13, 14, 15, 0) 50%);
}

.glass-panel {
    background: rgba(24, 26, 27, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(95, 255, 247, 0.15);
    border-radius: 0.75rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.glass-panel:hover {
    border-color: rgba(95, 255, 247, 0.4);
    box-shadow: 0 0 30px rgba(95, 255, 247, 0.1);
    transform: translateY(-0.25rem);
}

.glass-panel-tertiary:hover {
    border-color: rgba(94, 191, 255, 0.4);
    box-shadow: 0 0 30px rgba(94, 191, 255, 0.1);
}

.glass-panel-secondary:hover {
    border-color: rgba(40, 244, 254, 0.4);
    box-shadow: 0 0 30px rgba(40, 244, 254, 0.1);
}

.icon-glow-primary { filter: drop-shadow(0 0 8px rgba(95, 255, 247, 0.5)); }
.icon-glow-secondary { filter: drop-shadow(0 0 8px rgba(40, 244, 254, 0.5)); }
.icon-glow-tertiary { filter: drop-shadow(0 0 8px rgba(94, 191, 255, 0.5)); }
.text-glow-primary { filter: drop-shadow(0 0 12px rgba(95, 255, 247, 0.4)); }

.premium-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 768px) {
    .premium-title { font-size: 4.5rem; }
}

.premium-label {
    display: inline-block;
    font-family: monospace;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.premium-label.primary { color: var(--accent-color); background: rgba(95, 255, 247, 0.1); border: 1px solid rgba(95, 255, 247, 0.2); }
.premium-label.secondary { color: #28f4fe; background: rgba(40, 244, 254, 0.1); border: 1px solid rgba(40, 244, 254, 0.2); }
.premium-label.tertiary { color: #5ebfff; background: rgba(94, 191, 255, 0.1); border: 1px solid rgba(94, 191, 255, 0.2); }

.premium-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #1e2021;
}

.premium-icon-wrapper svg { width: 32px; height: 32px; }
.premium-icon-wrapper.primary svg { color: var(--accent-color); }
.premium-icon-wrapper.secondary svg { color: #28f4fe; }
.premium-icon-wrapper.tertiary svg { color: #5ebfff; }

.premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 8rem;
}

@media (min-width: 768px) {
    .premium-grid { grid-template-columns: repeat(3, 1fr); }
}

.premium-visual-box {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(117, 117, 118, 0.1);
    max-width: 80rem;
    margin: 0 auto 8rem;
    aspect-ratio: 21/9;
}

.premium-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

.premium-visual-box:hover img {
    filter: grayscale(0%);
    opacity: 0.6;
}

.premium-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0d0e0f 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.premium-quote {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 5rem 0;
}

.premium-quote-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.05;
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.premium-quote p {
    font-size: 1.875rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-bright);
    line-height: 1.625;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .premium-quote p { font-size: 2.5rem; }
}

.premium-manifesto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.premium-manifesto-line {
    width: 3rem;
    height: 1px;
    background-color: var(--text-muted);
}

/* --- ENGINEERING SERVICES (v2 PIXEL PERFECT) --- */
.eng-v2-section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 1.5rem;
    overflow: hidden;
    background-color: #0d0e0f;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
    .eng-v2-section {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.eng-v2-header {
    max-width: 80rem;
    margin: 0 auto 5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .eng-v2-header { text-align: left; }
}

.eng-v2-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6875rem; /* 11px */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    color: #5ffff7;
    background-color: rgba(95, 255, 247, 0.1);
    border: 1px solid rgba(95, 255, 247, 0.2);
    border-radius: 9999px;
}

.eng-v2-title {
    font-size: 2.25rem; /* 4xl */
    font-weight: 900; /* black */
    letter-spacing: -0.05em; /* tracking-tighter */
    line-height: 1.1;
    max-width: 56rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .eng-v2-title { font-size: 3.75rem; } /* 6xl */
}

.eng-v2-title span {
    color: #5ffff7;
    filter: drop-shadow(0 0 12px rgba(95, 255, 247, 0.4));
}

.eng-v2-subtitle {
    font-size: 1.125rem; /* lg */
    color: #ababac; /* surface-variant */
    max-width: 42rem;
    line-height: 1.625;
}

.eng-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.eng-v2-card {
    background: rgba(24, 26, 27, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 72, 73, 0.15);
    border-radius: 0.75rem; /* xl */
    padding: 2rem; /* p-8 */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.eng-v2-card:hover {
    transform: translateY(-0.5rem);
}

.eng-v2-card.card-1:hover { border-color: rgba(95, 255, 247, 0.4); }
.eng-v2-card.card-2:hover { border-color: rgba(94, 191, 255, 0.4); }
.eng-v2-card.card-3:hover { border-color: rgba(40, 244, 254, 0.4); }

.eng-v2-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.625rem; /* 10px */
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: #5ffff7;
    background-color: rgba(95, 255, 247, 0.1);
    border: 1px solid rgba(95, 255, 247, 0.3);
}

.eng-v2-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.eng-v2-icon.icon-1 { background-color: rgba(95, 255, 247, 0.1); box-shadow: 0 0 15px rgba(95, 255, 247, 0.15); }
.eng-v2-icon.icon-2 { background-color: rgba(94, 191, 255, 0.1); }
.eng-v2-icon.icon-3 { background-color: rgba(40, 244, 254, 0.1); }

.eng-v2-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

.eng-v2-label {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.6875rem; /* 11px */
    color: #ababac;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.eng-v2-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    min-height: 11rem;
}

.eng-v2-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.eng-v2-list span {
    font-size: 0.875rem;
    color: #ababac;
    font-weight: 500;
}

.eng-v2-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem; /* lg */
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.025em; /* tracking-tight */
    transition: transform 0.15s ease, background-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.eng-v2-btn:active { transform: scale(0.95); }

.eng-v2-btn.btn-1 {
    background-color: #00F2EA;
    color: #00605c;
    box-shadow: 0 0 15px rgba(95, 255, 247, 0.15);
}

.eng-v2-btn.btn-2 {
    background-color: transparent;
    border: 1px solid rgba(94, 191, 255, 0.2);
    color: #5ebfff;
}
.eng-v2-btn.btn-2:hover { background-color: rgba(94, 191, 255, 0.05); }

.eng-v2-btn.btn-3 {
    background-color: transparent;
    border: 1px solid rgba(40, 244, 254, 0.2);
    color: #28f4fe;
}
.eng-v2-btn.btn-3:hover { background-color: rgba(40, 244, 254, 0.05); }

/* Decorative Orbs */
.eng-v2-orb-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(95, 255, 247, 0.05);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.eng-v2-orb-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(94, 191, 255, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Visualization Container */
.eng-v2-viz {
    max-width: 80rem;
    margin: 6rem auto 0;
}
.eng-v2-viz-inner {
    position: relative;
    border-radius: 1rem; /* 2xl */
    overflow: hidden;
    background: rgba(24, 26, 27, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 72, 73, 0.15);
}
.eng-v2-viz-img {
    aspect-ratio: 21/9;
    width: 100%;
    position: relative;
    display: block;
}
.eng-v2-viz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}
.eng-v2-viz-inner:hover .eng-v2-viz-img img { filter: grayscale(0%); }

.eng-v2-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
}
.eng-v2-viz-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    background: linear-gradient(to top, #0d0e0f 0%, transparent 100%);
}
.eng-v2-viz-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .eng-v2-viz-row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.eng-v2-viz-text { max-width: 36rem; }
.eng-v2-viz-text h4 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.eng-v2-viz-text p { font-size: 0.875rem; color: #ababac; font-weight: 500; }
.eng-v2-viz-stats { display: flex; gap: 1rem; }
.eng-v2-viz-stat { padding: 1rem 1.5rem; border-radius: 0.75rem; background: rgba(24, 26, 27, 0.8); backdrop-filter: blur(12px); border-left: 4px solid; }
.eng-v2-viz-stat.stat-1 { border-left-color: #5ffff7; }
.eng-v2-viz-stat.stat-2 { border-left-color: #5ebfff; }
.eng-v2-viz-stat span.label { display: block; font-family: 'Space Grotesk', monospace; font-size: 0.625rem; margin-bottom: 0.25rem; }
.eng-v2-viz-stat.stat-1 span.label { color: #5ffff7; }
.eng-v2-viz-stat.stat-2 span.label { color: #5ebfff; }
.eng-v2-viz-stat span.value { font-size: 1.25rem; font-weight: 900; letter-spacing: 0.1em; color: #fff; }

/* Status Bar */
.eng-v2-status {
    max-width: 80rem;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid rgba(71, 72, 73, 0.1);
    padding-top: 2rem;
}
.eng-v2-status-left { display: flex; align-items: center; gap: 0.5rem; }
.eng-v2-status-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #5ffff7; animation: pulse 2s infinite; }
.eng-v2-status-label { font-family: 'Space Grotesk', monospace; font-size: 0.625rem; text-transform: uppercase; letter-spacing: -0.05em; color: #ababac; }
.eng-v2-status-list { display: flex; gap: 2rem; overflow-x: auto; padding-bottom: 0.5rem; }
.eng-v2-status-item { display: flex; flex-direction: column; }
.eng-v2-status-item .label { font-family: 'Space Grotesk', monospace; font-size: 0.5625rem; color: rgba(171, 171, 172, 0.6); text-transform: uppercase; }
.eng-v2-status-item .value { font-weight: 700; font-size: 0.875rem; color: #fff; }
.eng-v2-status-right { display: flex; align-items: center; gap: 1rem; }
.eng-v2-status-ref { font-family: 'Space Grotesk', monospace; font-size: 0.6875rem; color: #ababac; font-style: italic; }
.eng-v2-term-btn { padding: 0.5rem; border-radius: 9999px; background: transparent; border: none; color: #ababac; cursor: pointer; transition: background-color 0.2s ease; }
.eng-v2-term-btn:hover { background-color: rgba(255, 255, 255, 0.05); }
.eng-v2-desc {
    font-size: 0.9375rem; /* 15px */
    color: #ababac;
    line-height: 1.6;
    margin-bottom: 2rem;
}
/* Potencia tu Vision Section */
.vision-section {
    padding: 8rem 1.5rem;
    min-height: 100vh;
    background: radial-gradient(circle at 50% -20%, #1e2021 0%, #0d0e0f 100%);
    overflow: hidden;
    position: relative;
}

.vision-hero {
    max-width: 80rem; /* 7xl */
    margin: 0 auto 8rem;
    text-align: center;
}

.vision-hero h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
}

.vision-hero h2 span {
    color: #00F2EA;
    filter: drop-shadow(0 0 20px rgba(0,242,234,0.3));
}

.vision-hero-desc {
    color: #ababac;
    max-width: 42rem; /* 2xl */
    margin: 0 auto;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.625;
    letter-spacing: 0.025em;
    opacity: 0.8;
}

.vision-grid {
    max-width: 80rem;
    margin: 0 auto 10rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .vision-grid { grid-template-columns: repeat(3, 1fr); }
}

.vision-card {
    background: rgba(13, 14, 15, 0.6);
    backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border-radius: 0.75rem; /* xl */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(0, 242, 234, 0.15);
    transition: all 0.5s ease;
}
.vision-card:hover {
    border-color: rgba(0, 242, 234, 0.4);
}

.vision-card-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(0, 242, 234, 0.4);
}

.vision-card-dots {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.25rem;
}
.vision-card-dots span {
    width: 0.25rem; height: 0.25rem; border-radius: 50%;
}
.vision-card-dots span:nth-child(1) { background-color: rgba(0, 242, 234, 0.4); }
.vision-card-dots span:nth-child(2) { background-color: rgba(0, 242, 234, 0.2); }

.vision-icon-wrap {
    margin-bottom: 2.5rem;
    padding: 1rem;
    background-color: #161a1d;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 242, 234, 0.15);
    box-shadow: 0 0 25px rgba(0, 242, 234, 0.15), inset 0 0 8px rgba(0, 242, 234, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.vision-card:hover .vision-icon-wrap {
    background-color: #1a1e22;
    border-color: rgba(0, 242, 234, 0.4);
    box-shadow: 0 0 35px rgba(0, 242, 234, 0.3), inset 0 0 15px rgba(0, 242, 234, 0.1);
}
.vision-icon-wrap span {
    color: #00F2EA;
    font-size: 2.25rem; /* 4xl */
    filter: drop-shadow(0 0 12px rgba(0, 242, 234, 0.6));
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.025em;
    color: #ffffff;
    transition: color 0.3s ease;
}
.vision-card:hover h3 { color: #00F2EA; }

.vision-card p {
    color: #ababac;
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 300;
}

.vision-manifesto {
    max-width: 64rem; /* 5xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}
.vision-manifesto-inner {
    position: relative;
    padding: 5rem 0;
    border-top: 1px solid rgba(71, 72, 73, 0.1);
}
.vision-manifesto-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(0, 242, 234, 0.6), transparent);
}
.vision-manifesto-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.vision-manifesto-content > span {
    color: rgba(0, 242, 234, 0.4);
    font-size: 2.25rem;
    margin-bottom: 2rem;
}
.vision-manifesto-quote {
    font-size: clamp(1.875rem, 4vw, 2.25rem); /* 3xl md:4xl */
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    max-width: 56rem;
    letter-spacing: -0.025em;
}
.vision-manifesto-quote span {
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
}
.vision-manifesto-footer {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.vision-manifesto-footer-line { height: 1px; width: 2rem; background-color: rgba(0, 242, 234, 0.3); }
.vision-manifesto-footer-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(0, 242, 234, 0.6);
    font-weight: 500;
}
/* Resultados y Testimonios Section */
.results-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.results-ambient-1 {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(95, 255, 247, 0.05); /* primary/5 */
    border-radius: 50%;
    filter: blur(120px);
}
.results-ambient-2 {
    position: absolute;
    top: 50%;
    right: -6rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(40, 244, 254, 0.05); /* secondary/5 */
    border-radius: 50%;
    filter: blur(100px);
}

.results-header {
    margin-bottom: 5rem;
}
.results-header-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.results-pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #5ffff7;
    border-radius: 50%;
    box-shadow: 0 0 8px #5ffff7;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.results-header-eyebrow p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem; /* 10px */
    letter-spacing: 0.3em;
    color: #5ffff7;
    text-transform: uppercase;
    margin: 0;
}
.results-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    max-width: 48rem;
    line-height: 1;
    color: #ffffff;
}

.results-metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 8rem;
}
@media (min-width: 768px) { .results-metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .results-metrics-grid { grid-template-columns: repeat(4, 1fr); } }

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #121315;
    border-radius: 0.75rem;
    border-left: 1px solid rgba(95, 255, 247, 0.2);
}
.metric-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #ababac;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.metric-value {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #5ffff7;
    text-shadow: 0 0 12px rgba(95, 255, 247, 0.5);
}
.progress-line {
    height: 2px;
    background: linear-gradient(90deg, #5ffff7 0%, transparent 100%);
    box-shadow: 0 0 8px #5ffff7;
    margin-top: 1rem;
}
.metric-footer {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem;
    color: rgba(95, 255, 247, 0.4);
    margin-top: auto;
}

.testim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}
.testim-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
}
.testim-title span { color: #28f4fe; text-shadow: 0 0 12px rgba(95, 255, 247, 0.3); }
.testim-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    color: #ababac;
    max-width: 200px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 1024px) { .testim-grid { grid-template-columns: repeat(3, 1fr); } }

.testim-card {
    background: rgba(24, 26, 27, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 72, 73, 0.15);
    padding: 2.5rem;
    border-radius: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}
.testim-card:hover {
    background: rgba(30, 32, 33, 0.9);
    box-shadow: 0 0 15px rgba(95, 255, 247, 0.1), inset 0 0 5px rgba(95, 255, 247, 0.05);
    border-color: rgba(95, 255, 247, 0.3);
}

.testim-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
}

.testim-icon-wrap { margin-bottom: 2rem; }
.testim-card q {
    font-size: 1.125rem;
    line-height: 1.625;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-style: italic;
    display: block;
}
.testim-card q::before { content: '"'; }
.testim-card q::after { content: '"'; }

.testim-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(71, 72, 73, 0.1);
    padding-top: 1.5rem;
}
.testim-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #2b2c2e;
    padding: 1px;
}
.testim-avatar img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    filter: grayscale(100%); transition: filter 0.3s ease;
}
.testim-card:hover .testim-avatar img { filter: grayscale(0%); }

.testim-author h4 {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}
.testim-author p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem;
    color: #ababac;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.testim-link-wrap { margin-top: 6rem; text-align: center; }
.testim-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: #ababac;
    text-transform: uppercase;
    transition: color 0.3s;
    text-decoration: none;
}
.testim-link:hover { color: #5ffff7; }
.testim-link:hover span.material-symbols-outlined { transform: translateX(8px); }
.testim-link span.material-symbols-outlined {
    color: #5ffff7; transition: transform 0.3s;
}

/* Background Overlay */
.results-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, #474849 1px, transparent 0);
    background-size: 40px 40px;
}
/* Operativa Digital Section */
.ops-section {
    position: relative;
    padding: 6rem 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
    overflow: hidden;
}
@media (min-width: 768px) { .ops-section { padding: 6rem 5rem; } }
@media (min-width: 1024px) { .ops-section { padding: 6rem 8rem; } }

.ops-ambient-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background-color: rgba(95, 255, 247, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.ops-ambient-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background-color: rgba(0, 105, 110, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ops-header {
    position: relative;
    z-index: 10;
    margin-bottom: 5rem;
}
.ops-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.ops-eyebrow-line { height: 1px; width: 3rem; background-color: #5ffff7; }
.ops-eyebrow-text { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; letter-spacing: 0.3em; color: #5ffff7; text-transform: uppercase; }

.ops-title {
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 2rem;
    max-width: 56rem;
    color: #ffffff;
}
.ops-title span { background: linear-gradient(to right, #5ffff7, #28f4fe); -webkit-background-clip: text; color: transparent; }

.ops-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #ababac;
    max-width: 42rem;
    line-height: 1.625;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.ops-card {
    background: rgba(24, 26, 27, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 72, 73, 0.15);
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    transition: all 0.5s ease;
}
@media (min-width: 1024px) { .ops-card { padding: 3rem; } }

.ops-card:hover { border-color: rgba(95, 255, 247, 0.4); }

.ops-card-1 { grid-column: span 12; }
@media (min-width: 1024px) { .ops-card-1 { grid-column: span 7; } }

.ops-card-2 { grid-column: span 12; border-left: 2px solid rgba(40, 244, 254, 0.5); }
@media (min-width: 768px) { .ops-card-2 { grid-column: span 6; } }
@media (min-width: 1024px) { .ops-card-2 { grid-column: span 5; } }
.ops-card-2:hover { transform: translateY(-4px); }

.ops-card-3 { grid-column: span 12; display: flex; flex-direction: column; gap: 2rem; border-top: 2px solid rgba(95, 255, 247, 0.3); }
@media (min-width: 1024px) { .ops-card-3 { flex-direction: row; align-items: center; } }

.ops-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; }
.ops-icon-wrap { padding: 1rem; background-color: #1e2021; border-radius: 0.75rem; border: 1px solid rgba(71, 72, 73, 0.2); transition: all 0.3s; display: inline-flex; }
.ops-card:hover .ops-icon-wrap { box-shadow: 0 0 30px rgba(95, 255, 247, 0.2); }

.ops-badge { font-family: 'Space Grotesk', sans-serif; font-size: 0.625rem; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; border-radius: 9999px; text-transform: uppercase; }
.ops-badge.primary { background-color: rgba(95, 255, 247, 0.1); color: #5ffff7; border: 1px solid rgba(95, 255, 247, 0.2); }
.ops-badge.secondary { background-color: rgba(40, 244, 254, 0.1); color: #28f4fe; border: 1px solid rgba(40, 244, 254, 0.2); }
.ops-badge.neutral { background-color: rgba(43, 44, 46, 0.2); color: #ababac; border: 1px solid rgba(71, 72, 73, 0.2); }

.ops-card-title { font-size: 1.5rem; font-weight: 700; color: #ffffff; margin-bottom: 1rem; }
.ops-card-desc { font-size: 1.125rem; color: #ababac; line-height: 1.625; max-width: 36rem; }
.ops-card-1 .ops-card-desc { margin-bottom: 2rem; }

.ops-status-line { display: flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.625rem; color: rgba(95, 255, 247, 0.6); text-transform: uppercase; letter-spacing: -0.05em; }
.ops-status-dot { width: 4px; height: 4px; background-color: rgba(95, 255, 247, 0.4); border-radius: 50%; }

.ops-card-3-left { width: 100%; }
@media (min-width: 1024px) { .ops-card-3-left { width: 33.333%; } }
.ops-card-3-right { width: 100%; }
@media (min-width: 1024px) { .ops-card-3-right { width: 66.666%; padding-left: 3rem; border-left: 1px solid rgba(71, 72, 73, 0.2); } }

.ops-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.ops-tag { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background-color: #000000; border-radius: 0.5rem; border: 1px solid rgba(71, 72, 73, 0.1); }
.ops-tag span.label { font-family: 'Space Grotesk', sans-serif; font-size: 0.625rem; text-transform: uppercase; color: #ffffff; }

.ops-separator { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(71, 72, 73, 0.3), transparent); margin-bottom: 4rem; }

.ops-footer { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .ops-footer { grid-template-columns: repeat(12, 1fr); } }

.ops-footer-img-wrap { grid-column: span 12; display: flex; justify-content: center; }
@media (min-width: 1024px) { .ops-footer-img-wrap { grid-column: span 4; justify-content: flex-start; } }

.ops-cyber-circle { position: relative; width: 12rem; height: 12rem; }
.ops-cyber-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px dashed rgba(95, 255, 247, 0.2); animation: spin 20s linear infinite; }
.ops-cyber-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; padding: 1rem; filter: grayscale(100%); opacity: 0.6; transition: all 0.7s; }
.ops-cyber-circle:hover .ops-cyber-img { filter: grayscale(0%); opacity: 1; }

.ops-footer-content { grid-column: span 12; text-align: center; }
@media (min-width: 1024px) { .ops-footer-content { grid-column: span 8; text-align: left; } }

.ops-footer-text { font-size: clamp(1.25rem, 2vw, 1.5rem); color: #ffffff; line-height: 1.25; font-weight: 300; margin-bottom: 1rem; }
.ops-footer-text span { color: #5ffff7; font-weight: 700; }

.ops-sys-state { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; opacity: 0.4; }
@media (min-width: 1024px) { .ops-sys-state { justify-content: flex-start; } }
.ops-sys-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; }

.ops-static-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; opacity: 0.2; }
.ops-vertical-text { font-family: 'Space Grotesk', sans-serif; font-size: 0.5rem; letter-spacing: 1em; color: #757576; text-transform: uppercase; position: absolute; }
.ops-v-text-1 { top: 5rem; right: 2rem; transform: rotate(90deg); transform-origin: top right; }
.ops-v-text-2 { bottom: 5rem; left: 2rem; transform: rotate(-90deg); transform-origin: bottom left; }
