/* ==========================================================================
   ORBE CRM PLATFORM - ESTILOS LANDING PAGE ULTRA MODERNA
   Temática Oficial: Fondo Blanco Puro & Tipografía Azul Principal (#032867)
   Acentos: Azul Eléctrico (#1D72FE) & Cian (#0284C7)
   Tipografía: Outfit (Headings) & Plus Jakarta Sans (Body & UI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Paleta Corporativa Oficial Orbe */
    --orbe-navy: #032867;       /* Azul principal corporativo */
    --orbe-blue: #1D72FE;       /* Azul eléctrico tecnológico */
    --orbe-cyan: #0284C7;       /* Cian corporativo */
    --orbe-light-blue: #EFF6FF; /* Fondo sutil azulado */
    --orbe-indigo: #3730A3;
    
    /* Fondos Blancos y Limpios */
    --bg-main: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-glass: rgba(255, 255, 255, 0.92);
    
    /* Bordes & Sombras */
    --border-subtle: rgba(3, 40, 103, 0.08);
    --border-accent: rgba(29, 114, 254, 0.28);
    --border-cyan: rgba(2, 132, 199, 0.3);
    --shadow-subtle: 0 4px 20px rgba(3, 40, 103, 0.04);
    --shadow-card: 0 10px 30px rgba(3, 40, 103, 0.06);
    --shadow-card-hover: 0 20px 45px rgba(3, 40, 103, 0.12);
    --glow-blue: 0 8px 30px rgba(29, 114, 254, 0.2);
    --glow-cyan: 0 8px 30px rgba(2, 132, 199, 0.15);
    
    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Colores Semánticos - Azul Principal */
    --text-main: #032867;       /* Letras en azul principal */
    --text-secondary: #0F172A;  /* Texto oscuro alternativo */
    --text-muted: #475569;      /* Slate elegante para lectura descansada */
    --text-dim: #64748B;        /* Slate medio para notas y subtítulos */
    --success: #059669;
    --warning: #D97706;
    --danger: #DC2626;
    
    /* Transiciones fluidas */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s var(--ease-smooth);
}

/* Reset Global & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Fondos Dinámicos de Malla & Luces en Fondo Blanco */
.cosmic-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.interactive-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.mesh-blob-1 {
    position: absolute;
    top: -12%;
    left: 12%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(29, 114, 254, 0.08) 0%, rgba(3, 40, 103, 0.02) 45%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    animation: blobFloat 22s ease-in-out infinite alternate;
}

.mesh-blob-2 {
    position: absolute;
    top: 40%;
    right: 0;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.07) 0%, rgba(29, 114, 254, 0.02) 50%, transparent 75%);
    filter: blur(120px);
    border-radius: 50%;
    animation: blobFloat 26s ease-in-out infinite alternate-reverse;
}

.mesh-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(3, 40, 103, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(3, 40, 103, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 80%);
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6%, 8%) scale(1.08); }
    100% { transform: translate(-5%, 4%) scale(0.95); }
}

/* Tipografía de Alto Impacto - Letras en Azul Principal */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--orbe-navy);
}

.gradient-text {
    background: linear-gradient(135deg, #032867 0%, #1D72FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #1D72FE 0%, #0284C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Barra de Navegación Blanca & Nítida (Header) */
.orbe-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 5%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
    box-shadow: 0 4px 20px rgba(3, 40, 103, 0.04);
    transition: var(--transition);
}

.orbe-navbar.scrolled {
    background: #FFFFFF;
    padding: 0.75rem 5%;
    box-shadow: 0 8px 30px rgba(3, 40, 103, 0.08);
    border-bottom: 1px solid rgba(3, 40, 103, 0.12);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-logo {
    display: inline-block;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
    background: rgba(3, 40, 103, 0.035);
    padding: 0.45rem 1.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(3, 40, 103, 0.07);
}

.nav-link {
    color: #032867; /* Azul Principal Corporativo */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #1D72FE; /* Azul Eléctrico en hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: linear-gradient(90deg, #032867, #1D72FE);
    transition: width 0.3s var(--ease-smooth);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* ==========================================================================
   DROPDOWNS & SUBMENÚS DE NAVEGACIÓN
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
    list-style: none;
}

.nav-link-dropdown {
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #032867;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.nav-link-dropdown:hover,
.nav-item-dropdown:hover .nav-link-dropdown {
    color: #1D72FE;
}

.nav-link-dropdown .ph-caret-down {
    font-size: 0.8rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dropdown:hover .nav-link-dropdown .ph-caret-down {
    transform: rotate(180deg);
}

/* Menú Flotante Desplegable */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    box-shadow: 0 20px 45px rgba(3, 40, 103, 0.12), 0 4px 15px rgba(3, 40, 103, 0.04);
    border-radius: 18px;
    padding: 10px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
    z-index: 1000;
}

.nav-dropdown-menu-sm {
    min-width: 285px;
}

/* Puente invisible para mantener el hover */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-item:hover {
    background: #F8FAFC;
    transform: translateX(4px);
}

.nav-dropdown-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.nav-dropdown-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.nav-dropdown-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #032867;
    line-height: 1.25;
}

.nav-dropdown-desc {
    font-size: 0.74rem;
    color: #64748B;
    line-height: 1.25;
    margin-top: 2px;
}

.nav-dropdown-item:hover .nav-dropdown-title {
    color: #1D72FE;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn-ghost {
    background: transparent;
    color: #032867; /* Azul Principal Corporativo */
    border: 1.5px solid rgba(3, 40, 103, 0.25);
    font-weight: 700;
}

.nav-actions .btn-ghost:hover {
    background: rgba(3, 40, 103, 0.06);
    color: #032867;
    border-color: #032867;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #032867;
    font-size: 1.7rem;
    cursor: pointer;
}

.mobile-nav-actions {
    display: none;
}

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

/* Botones con Estética WOW */
.btn {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.72rem 1.45rem;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    max-width: 100%;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

.btn-lg {
    padding: 0.88rem 1.75rem;
    font-size: 1.02rem;
    border-radius: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #032867 0%, #1D72FE 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 18px rgba(29, 114, 254, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 114, 254, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #05368a 0%, #2b7bff 100%);
    color: #FFFFFF;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-glow:hover::after {
    left: 100%;
}

.btn-secondary {
    background: #FFFFFF;
    color: #032867;
    border: 1.5px solid rgba(3, 40, 103, 0.18);
    box-shadow: 0 2px 8px rgba(3, 40, 103, 0.04);
}

.btn-secondary:hover {
    background: rgba(3, 40, 103, 0.04);
    border-color: #032867;
    color: #032867;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 40, 103, 0.08);
}

.btn-ghost {
    background: transparent;
    color: #032867;
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: #032867;
    background: rgba(3, 40, 103, 0.05);
    border-color: var(--border-subtle);
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 9rem 5% 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-wrap {
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.1rem;
    background: rgba(3, 40, 103, 0.06);
    border: 1px solid rgba(3, 40, 103, 0.15);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #032867;
    box-shadow: 0 2px 10px rgba(3, 40, 103, 0.04);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1D72FE;
    box-shadow: 0 0 10px #1D72FE;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.6; }
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #032867;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 580px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(3, 40, 103, 0.1);
}

.hero-metric-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #032867;
}

.hero-metric-item span {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SIMULADOR INTERACTIVO DEL SOFTPHONE (HERO WIDGET)
   ========================================================================== */
.hero-interactive-demo {
    position: relative;
    z-index: 2;
}

.demo-phone-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.12);
    border-radius: 28px;
    padding: 1.8rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 25px 60px -15px rgba(3, 40, 103, 0.12), 0 0 30px rgba(29, 114, 254, 0.08);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.demo-phone-card:hover {
    border-color: #1D72FE;
    box-shadow: 0 30px 70px -15px rgba(3, 40, 103, 0.18), 0 0 35px rgba(29, 114, 254, 0.14);
}

.demo-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
}

.demo-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #032867;
}

.mysip-header-logo {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.demo-badge-carrier {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #059669;
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
}

.demo-screen {
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-screen-status {
    font-size: 0.75rem;
    color: #1D72FE;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.demo-phone-display {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #032867;
    letter-spacing: 0.04em;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-screen-timer {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-family: monospace;
}

/* Vúmetro de Audio Animado en el Softphone */
.demo-audio-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 18px;
    margin-top: 0.6rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.demo-audio-wave.active {
    opacity: 1;
}

.wave-bar {
    width: 3px;
    height: 6px;
    background: linear-gradient(180deg, #1D72FE, #032867);
    border-radius: 3px;
    transition: height 0.1s ease;
}

.demo-audio-wave.active .wave-bar:nth-child(1) { animation: wavePulse 0.7s infinite alternate 0.1s; }
.demo-audio-wave.active .wave-bar:nth-child(2) { animation: wavePulse 0.5s infinite alternate 0.2s; }
.demo-audio-wave.active .wave-bar:nth-child(3) { animation: wavePulse 0.8s infinite alternate 0.0s; }
.demo-audio-wave.active .wave-bar:nth-child(4) { animation: wavePulse 0.6s infinite alternate 0.3s; }
.demo-audio-wave.active .wave-bar:nth-child(5) { animation: wavePulse 0.7s infinite alternate 0.15s; }
.demo-audio-wave.active .wave-bar:nth-child(6) { animation: wavePulse 0.55s infinite alternate 0.25s; }
.demo-audio-wave.active .wave-bar:nth-child(7) { animation: wavePulse 0.85s infinite alternate 0.05s; }

@keyframes wavePulse {
    0% { height: 4px; }
    100% { height: 18px; }
}

/* Teclado numérico táctil interactivo */
.demo-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.2rem;
}

.key-btn {
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.09);
    border-radius: 12px;
    color: #032867;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.65rem 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.key-btn span {
    font-size: 0.58rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-top: 2px;
}

.key-btn:hover {
    background: rgba(29, 114, 254, 0.1);
    border-color: var(--orbe-blue);
    transform: scale(1.05);
    color: #032867;
}

.key-btn:active {
    transform: scale(0.95);
    background: var(--orbe-blue);
    color: #FFFFFF;
}

/* Acciones del Softphone */
.demo-phone-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-dial {
    flex: 1;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.btn-dial:hover {
    background: #10B981;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-hangup {
    flex: 1;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
}

.btn-hangup:hover {
    background: #EF4444;
    transform: translateY(-2px);
}

.btn-key-clear {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.1);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-key-clear:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Tarjeta flotante simulada de Cliente CRM */
.floating-lead-card {
    position: absolute;
    top: -25px;
    right: -35px;
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.12);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(3, 40, 103, 0.12), 0 0 20px rgba(29, 114, 254, 0.08);
    z-index: 3;
    width: 250px;
    animation: floatSlow 6s ease-in-out infinite alternate;
}

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

.lead-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.lead-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orbe-navy), var(--orbe-blue));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.lead-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #032867;
}

.lead-badge-hot {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #D97706;
    font-size: 0.68rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
}

.lead-stage {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   SECCIÓN: SHOWCASE INTERACTIVO (TABS DINÁMICAS)
   ========================================================================== */
.section-wrapper {
    padding: 6.5rem 5%;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1D72FE;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #032867;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 680px;
    margin-bottom: 3.5rem;
}

.showcase-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
    scrollbar-width: none;
}

.showcase-tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-trigger {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1.4rem;
    color: #032867;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(3, 40, 103, 0.03);
}

.tab-trigger:hover {
    background: rgba(3, 40, 103, 0.04);
    color: #1D72FE;
    border-color: #1D72FE;
}

.tab-trigger.active {
    background: linear-gradient(135deg, var(--orbe-navy) 0%, var(--orbe-blue) 100%);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 18px rgba(29, 114, 254, 0.35);
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.4s var(--ease-smooth);
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.showcase-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
    box-shadow: 0 20px 50px rgba(3, 40, 103, 0.07);
}

.showcase-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #032867;
}

.showcase-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.feature-check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: #334155;
}

.feature-check-list li i {
    color: #1D72FE;
    font-size: 1.15rem;
}

/* Visualizaciones interactivas de cada Tab */
.showcase-visual {
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: inset 0 2px 8px rgba(3, 40, 103, 0.03);
    position: relative;
    overflow: hidden;
}

/* Simulador de Voice AI (Tab 2) */
.ai-voice-player {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.12);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 4px 20px rgba(3, 40, 103, 0.05);
}

.ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #7C3AED;
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-weight: 700;
}

.ai-dialog-box {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    max-height: 200px;
    overflow-y: auto;
}

.dialog-bubble {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.dialog-ai {
    background: rgba(29, 114, 254, 0.08);
    border: 1px solid rgba(29, 114, 254, 0.2);
    color: #032867;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.dialog-client {
    background: #F1F5F9;
    border: 1px solid rgba(3, 40, 103, 0.08);
    color: #334155;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ai-player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(3, 40, 103, 0.08);
}

.ai-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orbe-blue);
    border: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(29, 114, 254, 0.35);
    transition: var(--transition);
}

.ai-play-btn:hover {
    transform: scale(1.08);
    background: #032867;
    color: #FFFFFF;
}

/* Simulador de Mini-Kanban (Tab 3) */
.mini-kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.kanban-col {
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.08);
    border-radius: 14px;
    padding: 0.85rem;
}

.kanban-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-card-item {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.6rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(3, 40, 103, 0.03);
}

.kanban-card-item:hover {
    border-color: var(--orbe-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(3, 40, 103, 0.08);
}

.kanban-lead-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #032867;
    margin-bottom: 0.3rem;
}

.kanban-lead-val {
    font-size: 0.72rem;
    color: var(--success);
    font-weight: 600;
}

/* Simulador de Seguridad / Enmascaramiento (Tab 5) */
.security-demo-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(3, 40, 103, 0.1);
}

.security-toggle-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    background: #F8FAFC;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(3, 40, 103, 0.06);
}

.security-client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem;
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
    font-size: 0.9rem;
    color: #1E293B;
}

.masked-badge {
    font-family: monospace;
    font-weight: 700;
    color: #1D72FE;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   SECCIÓN: GABY IA (COPILOTO DE INTELIGENCIA ARTIFICIAL)
   ========================================================================== */
/* Prevenir desborde en tracks de cuadrículas */
.hero-grid > *,
.showcase-card > *,
.gaby-showcase-box > *,
.calculator-box > *,
.plan-horizontal-card > *,
.bento-grid > *,
.testimonials-grid > *,
.footer-grid > * {
    min-width: 0;
    max-width: 100%;
}

.gaby-showcase-box {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.12);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(3, 40, 103, 0.08), 0 0 40px rgba(29, 114, 254, 0.06);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.gaby-profile-card {
    text-align: center;
    position: relative;
    min-width: 0;
    max-width: 100%;
}

.gaby-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.gaby-avatar-img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFFFFF;
    box-shadow: 0 15px 45px rgba(3, 40, 103, 0.15), 0 0 35px rgba(29, 114, 254, 0.25);
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.4s var(--ease-smooth);
}

.gaby-avatar-img:hover {
    transform: scale(1.04);
}

.gaby-avatar-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #1D72FE, #00D2FF, #10B981, #1D72FE);
    filter: blur(12px);
    opacity: 0.45;
    z-index: 1;
    animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gaby-floating-badge {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    box-shadow: 0 8px 25px rgba(3, 40, 103, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    z-index: 3;
    white-space: nowrap;
    animation: floatSlow 6s ease-in-out infinite alternate;
}

.gaby-badge-1 {
    top: 5px;
    right: -25px;
    color: #D97706;
}

.gaby-badge-2 {
    bottom: 15px;
    left: -25px;
    color: #059669;
    animation-delay: 1.5s;
}

.gaby-name-tag {
    font-size: 1.65rem;
    font-weight: 800;
    color: #032867;
    margin-bottom: 0.25rem;
}

.gaby-role-tag {
    color: #1D72FE;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    display: block;
}

.gaby-quote {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
}

/* Visor Interactivo de Demostración de Gaby */
.gaby-interactive-viewer {
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(3, 40, 103, 0.04);
}

.gaby-actions-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
    scrollbar-width: none;
}

.gaby-actions-nav::-webkit-scrollbar {
    display: none;
}

.btn-gaby-action {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    color: #032867;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-gaby-action:hover {
    border-color: #1D72FE;
    color: #1D72FE;
}

.btn-gaby-action.active {
    background: linear-gradient(135deg, #032867 0%, #1D72FE 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(29, 114, 254, 0.3);
}

.gaby-demo-panel {
    display: none;
    animation: fadeInTab 0.3s ease;
}

.gaby-demo-panel.active {
    display: block;
}

.gaby-demo-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.08);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 4px 15px rgba(3, 40, 103, 0.03);
}

.gaby-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.gaby-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(3, 40, 103, 0.04);
}

.gaby-feature-card:hover {
    border-color: #1D72FE;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(3, 40, 103, 0.1);
}

.gaby-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(29, 114, 254, 0.08);
    border: 1px solid rgba(29, 114, 254, 0.18);
    color: #1D72FE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.gaby-feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: #032867;
}

.gaby-feature-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* ==========================================================================
   SECCIÓN: CALCULADORA INTERACTIVA DE ROI
   ========================================================================== */
.calculator-box {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.12);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(3, 40, 103, 0.08), 0 0 35px rgba(29, 114, 254, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calc-control-group {
    margin-bottom: 2rem;
}

.calc-label-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.calc-label-wrap span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #032867;
}

.calc-val-badge {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #032867;
    background: rgba(3, 40, 103, 0.06);
    padding: 0.2rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(3, 40, 103, 0.15);
}

.range-slider {
    width: 100%;
    height: 8px;
    border-radius: 6px;
    background: #E2E8F0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orbe-blue);
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(29, 114, 254, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results-card {
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(3, 40, 103, 0.04);
}

.calc-stat-block {
    margin-bottom: 1.8rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
}

.calc-stat-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.calc-stat-block small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.calc-stat-block .stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #032867;
}

.calc-stat-block .stat-highlight {
    color: #059669;
}

/* ==========================================================================
   BENTO GRID DE CARACTERÍSTICAS (SPOTLIGHT EFFECT)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bento-col-span-2 {
    grid-column: span 2;
}

.bento-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 24px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 30px rgba(3, 40, 103, 0.04);
}

/* Spotlight de ratón dinámico en Bento Cards */
.bento-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -1000px);
    left: var(--mouse-x, -1000px);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 114, 254, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: #1D72FE;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(3, 40, 103, 0.12);
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(3, 40, 103, 0.06);
    border: 1px solid rgba(3, 40, 103, 0.12);
    color: #032867;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
}

.bento-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #032867;
}

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

/* ==========================================================================
   TABLA DE PRECIOS CONMUTABLE
   ========================================================================== */
.pricing-switch-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.pricing-switch-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dim);
    cursor: pointer;
}

.pricing-switch-label.active {
    color: #032867;
}

.switch-pill {
    width: 54px;
    height: 28px;
    background: #E2E8F0;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.switch-pill::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.switch-pill.checked {
    background: var(--orbe-blue);
}

.switch-pill.checked::after {
    transform: translateX(24px);
}

.discount-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #059669;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
}

/* ==========================================================================
   FORMATO HORIZONTAL UNIFICADO PARA TODOS LOS PLANES (ALTA ORGANIZACIÓN)
   ========================================================================== */
.plans-horizontal-stack {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-horizontal-card {
    background: linear-gradient(135deg, #02122B 0%, #032867 50%, #061838 100%);
    border-radius: 28px;
    padding: 3rem 3.5rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 3.5rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 20px 50px rgba(3, 40, 103, 0.22);
}

.plan-horizontal-card:hover {
    transform: translateY(-4px);
}

/* 1. Starter Theme */
.plan-horizontal-card.theme-starter {
    border: 1.5px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 20px 50px rgba(3, 40, 103, 0.2), 0 0 30px rgba(56, 189, 248, 0.08);
}
.plan-horizontal-card.theme-starter:hover {
    border-color: #38BDF8;
    box-shadow: 0 25px 60px rgba(3, 40, 103, 0.3), 0 0 35px rgba(56, 189, 248, 0.18);
}

/* 2. Pro Theme (Más Popular) */
.plan-horizontal-card.theme-pro {
    border: 2px solid #1D72FE;
    box-shadow: 0 25px 65px rgba(3, 40, 103, 0.3), 0 0 45px rgba(29, 114, 254, 0.25);
}
.plan-horizontal-card.theme-pro:hover {
    border-color: #60A5FA;
    box-shadow: 0 30px 75px rgba(3, 40, 103, 0.35), 0 0 55px rgba(29, 114, 254, 0.38);
}

/* 3. Enterprise Theme */
.plan-horizontal-card.theme-enterprise {
    border: 2px solid #818CF8;
    box-shadow: 0 25px 65px rgba(3, 40, 103, 0.28), 0 0 40px rgba(129, 140, 248, 0.2);
}
.plan-horizontal-card.theme-enterprise:hover {
    border-color: #A5B4FC;
    box-shadow: 0 30px 75px rgba(3, 40, 103, 0.35), 0 0 50px rgba(129, 140, 248, 0.32);
}

/* 4. Lifetime Theme (Oro Fundador) */
.plan-horizontal-card.theme-lifetime {
    border: 2px solid #F59E0B;
    box-shadow: 0 25px 65px rgba(3, 40, 103, 0.28), 0 0 45px rgba(245, 158, 11, 0.22);
}
.plan-horizontal-card.theme-lifetime:hover {
    border-color: #FBBF24;
    box-shadow: 0 30px 75px rgba(3, 40, 103, 0.35), 0 0 55px rgba(245, 158, 11, 0.35);
}

.plan-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 5px 14px;
    border-radius: 9999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.badge-starter { background: rgba(56, 189, 248, 0.15); color: #38BDF8; border: 1px solid rgba(56, 189, 248, 0.4); }
.badge-pro { background: linear-gradient(90deg, #1D72FE, #38BDF8); color: #FFFFFF; box-shadow: 0 4px 15px rgba(29, 114, 254, 0.35); }
.badge-enterprise { background: linear-gradient(90deg, #4F46E5, #818CF8); color: #FFFFFF; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35); }
.badge-lifetime { background: linear-gradient(90deg, #D97706, #F59E0B); color: #02122B; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35); }

.plan-title-row {
    font-size: 2.1rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.plan-desc-text {
    color: #CBD5E1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.plan-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.95rem 1.6rem;
}

.plan-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #E2E8F0;
    line-height: 1.45;
}

.plan-perk-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.theme-starter .plan-perk-item i { color: #38BDF8; }
.theme-pro .plan-perk-item i { color: #60A5FA; }
.theme-enterprise .plan-perk-item i { color: #A5B4FC; }
.theme-lifetime .plan-perk-item i { color: #FBBF24; }

/* Price Box a la derecha */
.plan-price-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 2.4rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.theme-starter .plan-price-box { border: 1px solid rgba(56, 189, 248, 0.35); }
.theme-pro .plan-price-box { border: 1px solid rgba(29, 114, 254, 0.45); }
.theme-enterprise .plan-price-box { border: 1px solid rgba(129, 140, 248, 0.4); }
.theme-lifetime .plan-price-box { border: 1px solid rgba(245, 158, 11, 0.4); }

.plan-price-tag {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.theme-starter .plan-price-tag { color: #38BDF8; }
.theme-pro .plan-price-tag { color: #60A5FA; }
.theme-enterprise .plan-price-tag { color: #A5B4FC; }
.theme-lifetime .plan-price-tag { color: #FBBF24; }

.plan-price-val {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.plan-price-val span.currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 2px;
}

.theme-starter .plan-price-val span.currency { color: #38BDF8; }
.theme-pro .plan-price-val span.currency { color: #60A5FA; }
.theme-enterprise .plan-price-val span.currency { color: #A5B4FC; }
.theme-lifetime .plan-price-val span.currency { color: #FBBF24; }

.plan-price-sub {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
}

.btn-plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-plan-action:hover {
    transform: translateY(-2px);
}

.btn-action-starter {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}
.btn-action-starter:hover {
    background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.6);
    color: #FFFFFF !important;
}

.btn-action-pro {
    background: linear-gradient(135deg, #1D72FE 0%, #032867 100%);
    color: #FFFFFF !important;
    box-shadow: 0 6px 22px rgba(29, 114, 254, 0.45);
}
.btn-action-pro:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D72FE 100%);
    box-shadow: 0 8px 28px rgba(29, 114, 254, 0.65);
    color: #FFFFFF !important;
}

.btn-action-enterprise {
    background: linear-gradient(135deg, #4F46E5 0%, #312E81 100%);
    color: #FFFFFF !important;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.45);
}
.btn-action-enterprise:hover {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.65);
    color: #FFFFFF !important;
}

.btn-action-lifetime {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #02122B !important;
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
}
.btn-action-lifetime:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.65);
    color: #000000 !important;
}

.plan-guarantee-note {
    font-size: 0.76rem;
    color: #94A3B8;
    margin-top: 0.9rem;
}

@media (max-width: 992px) {
    .plan-horizontal-card {
        grid-template-columns: 1fr;
        padding: 2.2rem 1.8rem;
        gap: 2rem;
    }
    .plan-perks-grid {
        grid-template-columns: 1fr;
    }
}



.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #032867, #1D72FE);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-tier {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #032867;
}

.pricing-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    min-height: 2.7rem;
}

.price-box {
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.4rem;
    vertical-align: top;
    font-weight: 700;
    color: #032867;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    color: #032867;
}

.price-period {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    font-size: 0.92rem;
    color: #334155;
}

.pricing-features li i {
    color: #1D72FE;
    font-size: 1.15rem;
}

/* ==========================================================================
   TESTIMONIALS & MÉTRICAS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 20px;
    padding: 2.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(3, 40, 103, 0.05);
}

.testimonial-card:hover {
    border-color: #1D72FE;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(3, 40, 103, 0.1);
}

.stars-rating {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 3px;
}

.testimonial-quote {
    font-size: 0.98rem;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 1.8rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orbe-navy), var(--orbe-blue));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #032867;
}

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

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ ACORDEÓN)
   ========================================================================== */
.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(3, 40, 103, 0.03);
}

.faq-item.active {
    border-color: #1D72FE;
    background: #FFFFFF;
    box-shadow: 0 8px 25px rgba(29, 114, 254, 0.1);
}

.faq-question {
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #032867;
}

.faq-icon {
    font-size: 1.2rem;
    color: #1D72FE;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInTab 0.3s ease;
}

/* ==========================================================================
   BANNER FINAL CTA & FOOTER
   ========================================================================== */
.cta-banner-box {
    background: #FFFFFF;
    border: 1.5px solid rgba(3, 40, 103, 0.12);
    border-radius: 32px;
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(3, 40, 103, 0.08), 0 0 40px rgba(29, 114, 254, 0.06);
    margin-bottom: 6rem;
    color: var(--text-main);
}

.cta-banner-box h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    color: #032867;
}

.cta-banner-box p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.footer-section {
    border-top: 1px solid rgba(3, 40, 103, 0.08);
    padding: 4.5rem 5% 2.5rem;
    background: #F8FAFC;
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1320px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin: 1.2rem 0 1.5rem;
    max-width: 320px;
}

.system-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.footer-col h5 {
    font-size: 1rem;
    margin-bottom: 1.4rem;
    color: #032867;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #1D72FE;
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(3, 40, 103, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & SMARTPHONES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .showcase-card {
        grid-template-columns: 1fr;
        padding: 2.2rem;
        gap: 2.5rem;
    }
    
    .gaby-showcase-box {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    
    .gaby-feature-grid {
        grid-template-columns: 1fr;
    }

    .calculator-box {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2.5rem;
    }
    
    .bento-grid, .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-col-span-2 {
        grid-column: span 1;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    /* 1. Esconder botones de la barra superior en pantallas táctiles/móviles para evitar apiñamiento */
    .nav-actions .btn {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
        border-radius: 12px;
        background: rgba(3, 40, 103, 0.05);
        color: #032867;
        border: 1px solid rgba(3, 40, 103, 0.1);
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .mobile-toggle:hover, .mobile-toggle:active {
        background: rgba(3, 40, 103, 0.1);
        color: #1D72FE;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 4%;
        width: 92%;
        background: rgba(255, 255, 255, 0.98);
        padding: 1.4rem;
        border-radius: 20px;
        border: 1px solid rgba(3, 40, 103, 0.12);
        box-shadow: 0 16px 45px rgba(3, 40, 103, 0.16);
        gap: 0.85rem;
        z-index: 1000;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        max-height: calc(100vh - 85px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex !important;
        animation: mobileMenuFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .mobile-nav-actions {
        display: flex !important;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-top: 0.6rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(3, 40, 103, 0.1);
        list-style: none;
    }

    .mobile-nav-actions .btn {
        width: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }

    .nav-item-dropdown {
        width: 100%;
    }
    
    .nav-link-dropdown {
        width: 100%;
        justify-content: space-between;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: 1px solid rgba(3, 40, 103, 0.08);
        background: #F8FAFC;
        border-radius: 14px;
        margin-top: 6px;
        margin-bottom: 8px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: 100%;
    }
    
    .nav-item-dropdown.open-mobile .nav-dropdown-menu {
        display: block;
    }
    
    .nav-item-dropdown.open-mobile .ph-caret-down {
        transform: rotate(180deg);
    }

    /* Ocultar badges flotantes que provocan desborde horizontal en tablets y móviles */
    .mysip-floating-tag,
    .gaby-floating-badge {
        display: none !important;
    }

    .gaby-showcase-box {
        grid-template-columns: 1fr;
        padding: 2rem 1.2rem;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .gaby-profile-card {
        width: 100%;
        max-width: 100%;
    }

    .gaby-interactive-viewer {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    /* Permitir que los textos largos en botones hagan wrap y no expandan la pantalla horizontalmente */
    .btn {
        white-space: normal !important;
        text-align: center;
        max-width: 100%;
        word-break: break-word;
        line-height: 1.35;
    }

    .brand-logo-img {
        height: 36px;
    }
    
    .section-wrapper {
        padding: 3.8rem 1.2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-section {
        padding-top: 6.5rem;
        padding-bottom: 3.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .floating-lead-card {
        display: none;
    }

    .showcase-card {
        padding: 1.6rem 1.2rem;
        gap: 1.8rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }

    .showcase-tabs-nav {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.85rem;
    }

    .demo-phone-card {
        padding: 1.4rem 1rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }

    .plans-horizontal-stack {
        width: 100%;
        max-width: 100%;
        gap: 1.5rem;
    }

    .plan-horizontal-card {
        padding: 2rem 1.2rem;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
    }

    .plan-price-box {
        padding: 1.8rem 1.2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .floating-whatsapp-btn {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP (VENTAS DIRECTAS)
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: #FFFFFF !important;
}

.whatsapp-pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: #032867;
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-body);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(3, 40, 103, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #032867;
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 76px;
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   SECCIÓN: SISTEMA DE ORGANIZACIÓN CROMÁTICA DE CLIENTES (TABLA)
   ========================================================================== */
.clients-system-box {
    background: #FFFFFF;
    border-radius: 28px;
    border: 1px solid rgba(3, 40, 103, 0.1);
    box-shadow: 0 20px 60px rgba(3, 40, 103, 0.06);
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}

.browser-mockup-frame {
    background: #F1F5F9;
    border-radius: 18px;
    border: 1px solid rgba(3, 40, 103, 0.12);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(3, 40, 103, 0.08);
    margin-bottom: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.browser-mockup-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(3, 40, 103, 0.13);
}

.browser-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(3, 40, 103, 0.08);
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.browser-url-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    border: 1px solid rgba(3, 40, 103, 0.08);
    border-radius: 30px;
    padding: 5px 16px;
    font-size: 0.82rem;
    color: #032867;
    font-weight: 600;
    max-width: 500px;
    width: 100%;
    margin: 0 1rem;
}

.browser-url-bar i {
    color: #10B981;
    font-size: 0.9rem;
}

.browser-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.browser-image-wrapper {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
    line-height: 0;
}

.browser-table-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.browser-mockup-frame:hover .browser-table-img {
    transform: scale(1.008);
}

/* Badges flotantes interactivos sobre la imagen */
.table-floating-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(3, 40, 103, 0.14);
    box-shadow: 0 8px 24px rgba(3, 40, 103, 0.12);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #032867;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    pointer-events: none;
    animation: floatTag 3s infinite ease-in-out;
}

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

.tag-cromatico {
    top: 14%;
    left: 2%;
    animation-delay: 0s;
}

.tag-antifuga {
    top: 36%;
    left: 28%;
    animation-delay: 1.5s;
}

.tag-clickcall {
    bottom: 16%;
    left: 22%;
    animation-delay: 0.8s;
}

/* Cuadrícula de Ventajas del Sistema */
.table-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.table-benefit-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.08);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 4px 20px rgba(3, 40, 103, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.table-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(3, 40, 103, 0.09);
    border-color: rgba(29, 114, 254, 0.25);
}

.table-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(29, 114, 254, 0.08);
    color: var(--orbe-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
    transition: var(--transition);
}

.table-benefit-card:hover .table-benefit-icon {
    background: var(--orbe-blue);
    color: #FFFFFF;
    transform: scale(1.08);
}

.table-benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.table-benefit-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.color-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.8rem;
}

.color-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.pill-potencial { background: #FED7D7; color: #9B1C1C; }
.pill-seguimiento { background: #FEF08A; color: #854D0E; }
.pill-convertido { background: #D1FAE5; color: #065F46; }
.pill-renew { background: #E9D5FF; color: #6B21A8; }
.pill-recall { background: #DCFCE7; color: #166534; }

@media (max-width: 992px) {
    .table-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .table-floating-tag {
        display: none;
    }
}

@media (max-width: 640px) {
    .clients-system-box {
        padding: 1.5rem;
    }
    .table-benefits-grid {
        grid-template-columns: 1fr;
    }
    .browser-url-bar {
        display: none;
    }
}

/* ==========================================================================
   SECCIÓN MY SIP PRO REAL SHOWCASE & CARACTERÍSTICAS
   ========================================================================== */
.mysip-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.25);
    color: #0284C7;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mysip-real-window {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.14);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(3, 40, 103, 0.1), 0 0 0 1px rgba(29, 114, 254, 0.08);
    overflow: hidden;
    position: relative;
    max-width: 390px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mysip-real-window:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 55px rgba(3, 40, 103, 0.15), 0 0 0 1px rgba(29, 114, 254, 0.2);
}

.mysip-window-header {
    background: #032867;
    color: #FFFFFF;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mysip-window-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #E2E8F0;
}

.mysip-window-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.mysip-real-img-container {
    position: relative;
    background: #091326;
    padding: 0;
    line-height: 0;
}

.mysip-real-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Callouts flotantes sobre la imagen */
.mysip-floating-tag {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(29, 114, 254, 0.25);
    padding: 6px 12px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 700;
    color: #032867;
    box-shadow: 0 8px 24px rgba(3, 40, 103, 0.16);
    pointer-events: none;
    animation: floatTag 3s ease-in-out infinite alternate;
}

.tag-top-carrier {
    top: 14px;
    right: 14px;
}

.tag-middle-did {
    top: 38%;
    left: -12px;
    animation-delay: 1.2s;
}

.tag-bottom-audio {
    bottom: 16px;
    right: -12px;
    animation-delay: 2s;
}

@keyframes floatTag {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

/* Grid de Características de MySIP PRO */
.mysip-features-section {
    margin-top: 2.8rem;
    padding-top: 2.2rem;
    border-top: 1px dashed rgba(3, 40, 103, 0.12);
}

.mysip-features-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.mysip-features-header h4 {
    font-size: 1.6rem;
    color: #032867;
    margin-bottom: 0.5rem;
}

.mysip-features-header p {
    font-size: 0.95rem;
    color: #64748B;
    margin: 0;
}

.mysip-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.mysip-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(3, 40, 103, 0.08);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 4px 18px rgba(3, 40, 103, 0.04);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mysip-feature-card:hover {
    border-color: #1D72FE;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 114, 254, 0.1);
}

.mysip-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(29, 114, 254, 0.08);
    color: #1D72FE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mysip-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #032867;
    margin-bottom: 0.45rem;
}

.mysip-feature-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

.mysip-feature-pill {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.85rem;
    background: #F1F5F9;
    color: #032867;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(3, 40, 103, 0.08);
}

@media (max-width: 992px) {
    .mysip-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tag-middle-did, .tag-bottom-audio {
        position: static;
        margin: 6px 0;
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .mysip-features-grid {
        grid-template-columns: 1fr;
    }
    .mysip-real-window {
        max-width: 100%;
    }
}
