/* Draper Digital - Hoja de Estilos de Alto Impacto */

/* 1. Variables y Configuración Base */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #121212;
    --text-primary: #ffffff;
    --text-secondary: #d4d4d4;
    --text-muted: #777777;
    
    /* Colores del Brief Visual */
    --color-neon: #bfff00; /* Amarillo Neón / Chartreuse */
    
    /* Acentos Modernos */
    --accent-glow: rgba(191, 255, 0, 0.04);
    --accent-active: #bfff00;
    
    /* Glassmorphic tokens */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-hover: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-focus: #bfff00;
    
    --font-heading: 'Anton', Impact, sans-serif;
    --font-heading-secondary: 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Global Select Options Dark Mode Contrast Fix */
select option {
    background-color: #141418 !important;
    color: #ffffff !important;
    padding: 10px;
}

/* 2. Fondo Decorativo y Orbes de Luz */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-neon) 0%, transparent 70%);
    opacity: 0.04;
    animation: float-slow 20s infinite alternate;
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    opacity: 0.02;
    animation: float-slow 25s infinite alternate-reverse;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #3a3f47 0%, transparent 60%);
    opacity: 0.08;
}

@keyframes float-slow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.1); }
}

/* 3. Layout General */
.section-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* 4. Navbar y Encabezado */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.brand-logo:hover {
    opacity: 0.9;
}

.logo-icon-wrapper {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-svg-icon {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 0.85;
    text-transform: uppercase;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-neon);
    text-transform: uppercase;
    margin-top: 3px;
}

/* Menú Escritorio */
.nav-menu {
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-neon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-neon);
    transition: var(--transition-fast);
}

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

.nav-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg-primary);
    background-color: var(--color-neon);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    transition: var(--transition-fast);
    border: 1px solid var(--color-neon);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--color-neon);
}

/* Botón Hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* 5. Menú Móvil */
.nav-menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
}

.nav-menu-mobile.open {
    transform: translateY(0);
}

.nav-menu-mobile ul {
    list-style: none;
    text-align: center;
}

.nav-menu-mobile li {
    margin: 2.5rem 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--text-primary);
}

.mobile-nav-btn {
    display: inline-block;
    border: 1px solid var(--color-neon);
    padding: 0.8rem 2.5rem;
    border-radius: 6px;
    color: var(--bg-primary);
    background-color: var(--color-neon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-btn:hover {
    background-color: transparent;
    color: var(--color-neon);
}

/* 6. Botones Genéricos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-neon);
    color: var(--bg-primary);
    border: 1px solid var(--color-neon);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-neon);
    box-shadow: 0 0 25px rgba(191, 255, 0, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--text-primary);
}

.btn-full-width {
    width: 100%;
}

/* Badges / Etiquetas */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(191, 255, 0, 0.05);
    border: 1px solid rgba(191, 255, 0, 0.15);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-neon);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(191, 255, 0, 0.05);
    border: 1px solid rgba(191, 255, 0, 0.15);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-neon);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* 7. Sección Hero */
.hero-section {
    padding-top: 11rem;
    padding-bottom: 7rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Fondo de Rejilla Técnica */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* Glows de Fondo */
.hero-glow-lime {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(191, 255, 0, 0.07) 0%, transparent 70%);
    top: 5%;
    left: -10%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-white {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #9A9A9A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    color: var(--color-neon);
    -webkit-text-fill-color: var(--color-neon);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

/* 8. Sección Datos Obsesivos (Trust Section) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: 44px;
    height: 44px;
    color: var(--color-neon);
    margin-bottom: 2rem;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* 9. Sección Servicios Apilados */
.stacked-services-section {
    border-top: 1px solid var(--glass-border);
}

.stacked-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.stacked-info .stacked-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Mini avatares en grupo */
.strategists-mini-group {
    display: flex;
    align-items: center;
    margin-top: 3.5rem;
}

.mini-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    background-size: cover;
    background-position: center;
    margin-right: -10px;
}

.mini-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: 1.5rem;
    font-weight: 600;
}

.stacked-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stacked-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.stacked-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.stacked-card.full-width {
    grid-column: span 2;
}

.stacked-card ul {
    list-style: none;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stacked-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4;
}

.stacked-card li::before {
    content: "▪";
    color: var(--color-neon);
    font-size: 0.8rem;
    line-height: 1.4;
}

.stacked-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stacked-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background-color: rgba(191, 255, 0, 0.08);
    color: var(--color-neon);
    flex-shrink: 0;
}

.stacked-card-icon svg {
    width: 20px;
    height: 20px;
}

.stacked-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.stacked-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* 10. Sección Gráficos ("No Mentimos") */
.charts-section {
    border-top: 1px solid var(--glass-border);
    background-color: var(--bg-secondary);
}

.charts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
}

.chart-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
}

.chart-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.5rem;
}

.chart-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-metric {
    font-family: var(--font-heading-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-neon);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.chart-container-svg {
    width: 100%;
}

.chart-svg {
    width: 100%;
    height: auto;
}

/* Sub-grid de casos en la sección Prueba */
.cases-subgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.case-mini-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.case-mini-card:hover {
    border-color: var(--color-neon);
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, 0.01);
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.case-card-header h4 {
    font-family: var(--font-heading-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
}

.case-card-header .case-badge {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--color-neon);
    background: rgba(191, 255, 0, 0.08);
    border: 1px solid rgba(191, 255, 0, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.case-card-header .case-badge.nda {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.case-metric-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-neon);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.case-mini-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 0;
}

/* 11. Calculadora de ROI */
.roi-section {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.roi-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.benefits-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.b-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.b-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(191, 255, 0, 0.1);
    color: var(--color-neon);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Card Calculadora */
.roi-calculator-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.calculator-header h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.input-group {
    margin-bottom: 2rem;
}

.label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.label-wrapper label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.value-display {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-neon);
}

.input-help {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* Custom sliders */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-card);
    outline: none;
    transition: var(--transition-fast);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-neon);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(191, 255, 0, 0.3);
    transition: transform 0.1s ease;
}

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

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-neon);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(191, 255, 0, 0.3);
    transition: transform 0.1s ease;
}

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

/* Resultados */
.calculator-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.result-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.highlighted-result {
    position: relative;
    background-color: rgba(191, 255, 0, 0.01);
    border-color: rgba(191, 255, 0, 0.3);
    overflow: hidden;
}

.savings-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(191, 255, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.highlighted-result .result-value {
    font-size: 2.8rem;
    color: var(--color-neon);
}

.result-sub {
    font-size: 0.8rem;
    color: var(--color-silver-medium);
    margin-top: 0.3rem;
}

.calc-action-wrapper {
    margin-top: 1rem;
}

/* 12. Sección Nosotros (Nuestros Estrategas) */
.strategists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1280px;
    margin: 4rem auto 0 auto;
}

.strategist-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.strategist-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.strategist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 65%);
}

.strategist-info {
    padding: 2rem;
}

.strategist-info h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.strategist-info .role {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-neon);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.strategist-info .bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Manifesto Row */
.manifesto-row {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.manifesto-block {
    text-align: center;
    max-width: 820px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4rem;
}

.manifesto-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.manifesto-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-neon);
    letter-spacing: 0.1em;
}

/* Realidad Section - Flowchart of weekly loop */
.realidad-section {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    background: radial-gradient(circle at 50% 50%, #0c0c0c 0%, #000000 80%) !important;
}

/* Realidad Grid (2x2 Clean Layout) */
.realidad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--glass-border);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.realidad-card {
    background-color: rgba(12, 12, 14, 0.95);
    padding: 3.2rem 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.realidad-card:hover {
    background-color: rgba(18, 18, 24, 0.98);
}

.realidad-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(191, 255, 0, 0.3);
    background-color: rgba(191, 255, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neon);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.realidad-card:hover .realidad-card-icon {
    border-color: var(--color-neon);
    background-color: rgba(191, 255, 0, 0.15);
    box-shadow: 0 0 15px rgba(191, 255, 0, 0.25);
}

.realidad-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-neon);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.realidad-card p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .realidad-grid {
        grid-template-columns: 1fr;
    }
    
    .realidad-card {
        padding: 2.2rem 1.8rem;
    }
}

/* Automated Architecture Pipeline Card */
.autonoma-architecture-card {
    background: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
}

.architecture-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.architecture-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(191, 255, 0, 0.06);
    border: 1px solid rgba(191, 255, 0, 0.2);
    border-radius: 20px;
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-neon);
    box-shadow: 0 0 10px var(--color-neon);
    animation: statusPulse 1.5s infinite alternate;
}

@keyframes statusPulse {
    0% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.status-text {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-neon);
    letter-spacing: 0.08em;
}

.architecture-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin: 0;
}

/* 4x2 Clean Grid Architecture (Zero horizontal scroll, 100% visible) */
.pipeline-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.pipeline-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
}

.pipeline-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-neon);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
}

.pipeline-step-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.node-icon-box {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.node-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.node-subtext {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Highlight Nodes */
.pipeline-card.highlight-ia {
    border-color: rgba(191, 255, 0, 0.5);
    background-color: rgba(191, 255, 0, 0.04);
}

.pipeline-card.highlight-ia .node-icon-box {
    border-color: var(--color-neon);
    background-color: rgba(191, 255, 0, 0.15);
}

.pipeline-card.highlight-ia .node-title {
    color: var(--color-neon);
}

.pipeline-card.highlight-ia .pipeline-step-badge {
    color: var(--color-neon);
}

.pipeline-card.highlight-sale {
    border-color: rgba(0, 230, 153, 0.5);
    background-color: rgba(0, 230, 153, 0.04);
}

.pipeline-card.highlight-sale .node-icon-box {
    border-color: #00e699;
    background-color: rgba(0, 230, 153, 0.15);
}

.pipeline-card.highlight-sale .node-title {
    color: #00e699;
}

.pipeline-card.highlight-sale .pipeline-step-badge {
    color: #00e699;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .pipeline-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 580px) {
    .pipeline-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

.realidad-quote {
    text-align: center;
    margin-top: 4rem;
    padding: 3.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.realidad-quote p {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-neon);
    margin-bottom: 1rem;
}

.realidad-quote span {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Enemigo Section - Opportunity and villain statement */
.enemigo-section {
    padding: 4.5rem 0;
    background-color: #020202;
    position: relative;
    overflow: hidden;
}

.enemigo-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.enemigo-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.enemigo-reveal {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.enemigo-glow-text {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-neon);
    margin-bottom: 2.5rem;
    text-shadow: 0 0 35px rgba(191, 255, 0, 0.35);
    background: linear-gradient(135deg, #bfff00 0%, #a6e600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enemigo-footer-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Resplandor radial detrás de El Enemigo */
.enemigo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* Micro CTA Link style */
.micro-cta-link {
    color: var(--color-neon);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    opacity: 0.85;
}

.micro-cta-link:hover {
    opacity: 1;
    text-decoration: none;
    color: var(--color-neon);
}

.micro-cta-link:hover .arrow {
    transform: translateX(4px);
}

.micro-cta-link .arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

/* 13. Sección Contacto */
.contact-section {
    border-top: 1px solid var(--glass-border);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    color: var(--color-neon);
}

.detail-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-item p {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Form Card */
.contact-form-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.main-contact-form {
    width: 100%;
    transition: opacity 0.3s ease;
}

.main-contact-form.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--glass-border-focus);
    box-shadow: 0 0 12px rgba(191, 255, 0, 0.15);
}

.form-group select option {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Spinner animado */
.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--bg-primary);
    border-radius: 50%;
    margin-left: 10px;
    animation: spin-anim 0.8s linear infinite;
}

@keyframes spin-anim {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message */
.form-success-message {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fade-in-up 0.5s ease forwards;
}

.form-success-message.active {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-neon);
    color: var(--bg-primary);
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(191, 255, 0, 0.2);
}

.form-success-message h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.form-success-message p {
    color: var(--text-secondary);
    max-width: 380px;
    line-height: 1.6;
}

/* 14. Footer */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 3rem 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    width: 100%;
    max-width: 340px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-svg-icon {
    width: 36px;
    height: 36px;
}

.footer-logo .brand-name {
    font-size: 1.8rem;
}

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

.footer-links-group {
    display: flex;
    flex-direction: row;
    gap: 6rem;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 15. Animaciones Scroll-Triggered (Intersection Observer) */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 16. Responsive Layouts (Desktop-First Overrides moved to the bottom of the stylesheet) */

/* ==========================================================================
   17. Tu Sistema de Adquisición Digital (Diagram Layout)
   ========================================================================== */
.system-section {
    border-top: 1px solid var(--glass-border);
}

.system-framework {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.framework-layer {
    width: 100%;
}

.layer-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.layer-card:hover {
    border-color: var(--color-neon);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

.card-instrumentation {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(191, 255, 0, 0.02) 100%);
    border-left: 4px solid var(--color-neon);
}

.card-foundation {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-left: 4px solid #ffffff;
}

.layer-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.card-instrumentation .layer-badge {
    background-color: rgba(191, 255, 0, 0.08);
    color: var(--color-neon);
    border: 1px solid rgba(191, 255, 0, 0.2);
}

.card-foundation .layer-badge {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.layer-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.layer-detail {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto;
}

/* Embudo Central de 5 Nodos */
.framework-funnel {
    display: grid;
    grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
    gap: 0.5rem;
    align-items: center;
}

.funnel-node {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.funnel-node:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.node-num {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(191, 255, 0, 0.25);
    margin-bottom: 0.25rem;
    transition: var(--transition-fast);
}

.funnel-node:hover .node-num {
    color: var(--color-neon);
}

.funnel-node h4 {
    font-family: var(--font-heading-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.node-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.funnel-node:hover .node-sub {
    color: var(--text-secondary);
}

.node-hover-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-top: 0.75rem;
    display: none;
}

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

.funnel-arrow-node {
    display: block;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    font-weight: bold;
    user-select: none;
}



.work-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 900px !important;
    margin: 3rem auto 0 auto !important;
}

/* ==========================================================================
   18. Estilos para Testimonio y Mockup del Teléfono (Sección Prueba)
   ========================================================================== */
.testi-card-lite {
    border: 1px solid var(--glass-border);
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    border-left: 4px solid var(--color-neon);
    position: relative;
    transition: var(--transition-smooth);
}

.testi-card-lite:hover {
    border-color: var(--color-neon);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

.quote-mark {
    font-size: 3rem;
    color: var(--color-neon);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.quote-author {
    font-size: 0.85rem;
    color: var(--color-neon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: normal;
    display: block;
}

.mockup-column {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Teléfono Mockup */
.phone-mockup {
    background: #1c1c1e;
    border: 12px solid #111113;
    border-radius: 36px;
    width: 280px;
    height: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(191, 255, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.phone-mockup:hover {
    border-color: #222225;
    transform: translateY(-5px) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(191, 255, 0, 0.12);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 16px;
    background-color: #111113;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.phone-screen {
    background-color: #FFFFFF;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #1a2332;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.phone-status-bar {
    height: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #8a9aac;
    background-color: #FFFFFF;
    border-bottom: 1px solid #f2f4f7;
    z-index: 5;
}

.phone-status-bar .status-icons {
    display: flex;
    gap: 4px;
}

.phone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 16px 16px 16px;
    animation: fadeInPhone 0.4s ease forwards;
}

@keyframes fadeInPhone {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dde5ee;
    padding-bottom: 8px;
}

.phone-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #0b3d6b;
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #0b3d6b;
    letter-spacing: -0.01em;
}

.phone-tag {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 700;
    color: #4a9b6e;
    background-color: #e7f5ed;
    padding: 1px 5px;
    border-radius: 3px;
    text-transform: uppercase;
}

.phone-body {
    flex: 1;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

.phone-progress {
    margin-bottom: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    font-weight: 600;
    color: #8a9aac;
    margin-bottom: 3px;
}

.progress-bar {
    height: 3px;
    background-color: #dde5ee;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #0b3d6b;
    transition: width 0.3s ease;
}

.phone-question {
    font-size: 0.8rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1a2332;
    margin: 4px 0 2px 0;
}

.phone-hint {
    font-size: 0.6rem;
    color: #8a9aac;
    margin-bottom: 8px;
}

.phone-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-option {
    border: 1px solid #dde5ee;
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f7f9fc;
}

.phone-option:hover {
    border-color: #0b3d6b;
    background-color: #e8f1fa;
}

.phone-option.selected {
    border-color: #0b3d6b;
    background-color: #e8f1fa;
}

.option-checkbox {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid #b8c6d6;
    background-color: #FFFFFF;
    position: relative;
    flex-shrink: 0;
    transition: all 0.15s;
}

.phone-option.selected .option-checkbox {
    background-color: #0b3d6b;
    border-color: #0b3d6b;
}

.phone-option.selected .option-checkbox::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0px;
    width: 2px;
    height: 6px;
    border: solid white;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.option-label {
    font-size: 0.65rem;
    color: #1a2332;
    font-weight: 500;
    user-select: none;
}

.phone-btn {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.phone-btn-primary {
    background-color: #0b3d6b;
    color: #FFFFFF;
}

.phone-btn-primary:hover {
    background-color: #0e4d85;
}

.phone-btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    gap: 4px;
}

.phone-btn-whatsapp:hover {
    background-color: #20ba59;
}

.phone-btn-link {
    background: none;
    border: none;
    color: #506070;
    margin-top: 5px;
    font-size: 0.6rem;
    padding: 2px;
}

.phone-btn-link:hover {
    color: #0b3d6b;
    text-decoration: underline;
}

.result-status-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    width: fit-content;
}

.badge-warning {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

.status-icon {
    font-size: 0.75rem;
}

.status-title {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.result-desc {
    font-size: 0.65rem;
    line-height: 1.35;
    color: #506070;
    margin-bottom: 8px;
}

.result-recommendation {
    background-color: #f7f9fc;
    border-left: 3px solid #4a9b6e;
    padding: 6px 8px;
    font-size: 0.6rem;
    line-height: 1.3;
    color: #1a2332;
    border-radius: 0 4px 4px 0;
    margin-top: auto;
    margin-bottom: 8px;
}

.phone-body-center {
    justify-content: flex-start;
}

/* Nuevos Estilos del Simulador Telefónico e Interactividad */
.case-mini-card.active {
    border-color: var(--color-neon) !important;
    background-color: rgba(191, 255, 0, 0.03) !important;
    box-shadow: 0 0 15px rgba(191, 255, 0, 0.08);
}

.option-radio {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #b8c6d6;
    background-color: #FFFFFF;
    position: relative;
    flex-shrink: 0;
    transition: all 0.15s;
}

.phone-option.selected .option-radio {
    background-color: #0b3d6b;
    border-color: #0b3d6b;
}

.phone-option.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.badge-success {
    background-color: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}

.badge-danger {
    background-color: #fef2f2;
    border: 1px solid #f87171;
    color: #991b1b;
}

/* Mockup de Calendly en simulador */
.calendly-mock {
    border: 1px solid #dde5ee;
    border-radius: 8px;
    padding: 8px;
    background-color: #FFFFFF;
    margin-top: 5px;
    width: 100%;
    box-sizing: border-box;
}

.calendly-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 6px;
    text-align: center;
}

.calendly-slots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calendly-slot {
    font-size: 0.6rem;
    font-weight: 600;
    color: #006bff;
    border: 1px solid #006bff;
    background-color: rgba(0, 107, 255, 0.03);
    padding: 4px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendly-slot:hover {
    background-color: #006bff;
    color: #FFFFFF;
}

/* Video Sales Letter mock en simulador */
.video-mock {
    width: 100%;
    height: 110px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a2332"/><path d="M40,30 L70,50 L40,70 Z" fill="%23bf500" opacity="0.3"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: opacity 0.3s ease;
}

.play-icon-vsl {
    width: 32px;
    height: 32px;
    background-color: var(--color-neon);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(191, 255, 0, 0.4);
    transition: transform 0.2s ease;
}

.video-mock:hover .play-icon-vsl {
    transform: scale(1.15);
}

.video-tag-live {
    position: absolute;
    top: 6px;
    left: 6px;
    background-color: #ef4444;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-player-ui {
    width: 100%;
    height: 100%;
    background-color: #070a13;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-waves {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    margin-bottom: 8px;
}

.wave-bar {
    width: 3px;
    background-color: var(--color-neon);
    animation: waveSound 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 20px; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 14px; animation-delay: 0.5s; }

@keyframes waveSound {
    from { transform: scaleY(0.4); }
    to { transform: scaleY(1.2); }
}

.video-timer {
    color: var(--text-secondary);
    font-size: 0.55rem;
    font-family: monospace;
}

/* ==========================================================================
   19. Estilos Adicionales Landing v2 (Cómo Entras, El Cerebro, Objeciones, FAQ)
   ========================================================================== */

/* Sección Cómo Entras */
.como-entras-section {
    border-bottom: none;
}

.motor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.motor-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.motor-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

.motor-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(191, 255, 0, 0.18);
    margin-bottom: 1.25rem;
    transition: var(--transition-fast);
}

.motor-card:hover .motor-num {
    color: var(--color-neon);
}

.motor-info h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.motor-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sección El Cerebro que no se Apaga */
.cerebro-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(191, 255, 0, 0.01) 50%, rgba(0, 0, 0, 0) 100%);
}

.cerebro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cerebro-highlight {
    border-left: 4px solid var(--color-neon);
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 0 12px 12px 0;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--color-neon);
}

/* Monitor de Salud (Electrocardiograma) */
.health-monitor-card {
    background-color: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.pulse-indicator {
    color: var(--color-neon);
    font-size: 0.8rem;
    animation: monitorBlink 1.2s infinite;
}

@keyframes monitorBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.9); }
}

.monitor-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.monitor-screen {
    background: #030304;
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor-svg {
    width: 100%;
    height: auto;
}

.pulse-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPulseLine 5s linear infinite;
}

@keyframes drawPulseLine {
    to {
        stroke-dashoffset: 0;
    }
}

.monitor-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.metric-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.6rem 0.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-box .m-label {
    font-size: 0.58rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.metric-box .m-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-box .m-value.color-neon {
    color: var(--color-neon);
}

/* Sección Objeciones */
.objeciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.objecion-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    border-top: 3px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.objecion-card:hover {
    border-color: var(--color-neon);
    border-top-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

.objecion-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.objecion-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Sección FAQ (Acordeón) */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover,
.faq-item[open] {
    border-color: var(--color-neon);
    box-shadow: 0 5px 20px rgba(191, 255, 0, 0.05);
}

summary.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading-secondary);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.2s;
    user-select: none;
}

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

summary.faq-question:hover {
    color: var(--color-neon);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 400;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--color-neon);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}


/* ==========================================================================
   20. Responsive Layouts (Desktop-First Overrides)
   ========================================================================== */
@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }
    
    .hero-container {
        align-items: center;
        text-align: center;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stacked-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stacked-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roi-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .strategists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .framework-funnel {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .funnel-arrow-node {
        display: none;
    }

    .funnel-node {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .node-hover-text {
        display: block;
    }

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

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

@media (max-width: 768px) {
    section,
    .realidad-section,
    .enemigo-section,
    .system-section,
    .soluciones-section,
    .como-entras-section,
    .cerebro-section,
    .para-quien-section,
    .faq-section,
    .contact-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .hero-section {
        padding-top: 7.5rem !important;
        padding-bottom: 4.5rem !important;
        min-height: auto !important;
    }

    .section-header {
        margin-bottom: 1.8rem !important;
    }

    .realidad-grid {
        margin-top: 1.8rem !important;
    }

    .autonoma-architecture-card {
        margin: 1.8rem 0 2.2rem 0 !important;
        padding: 1.8rem 1.2rem !important;
    }

    .enemigo-glow-text {
        font-size: 2.4rem !important;
        margin-bottom: 1.5rem !important;
    }

    .enemigo-card {
        padding: 2.5rem 1.2rem !important;
    }

    .main-header {
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle.active .bar-1 {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar-2 {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar-3 {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.4;
        letter-spacing: 0.1em;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        padding: 2rem 1.5rem;
    }
    
    .stacked-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stacked-card {
        padding: 2rem 1.25rem;
    }

    .stacked-card.full-width {
        grid-column: span 1;
    }
    
    .chart-card {
        padding: 2rem 1.25rem;
    }
    
    .chart-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .chart-metric {
        font-size: 1.1rem;
    }
    
    .manifesto-text {
        font-size: 1.6rem;
    }
    
    .roi-calculator-card {
        padding: 2rem;
    }
    
    .strategists-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .footer-brand {
        width: 100%;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 2rem;
    }

    .framework-funnel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    section,
    .realidad-section,
    .enemigo-section,
    .system-section,
    .soluciones-section,
    .como-entras-section,
    .cerebro-section,
    .para-quien-section,
    .faq-section,
    .contact-section {
        padding-top: 2.2rem !important;
        padding-bottom: 2.2rem !important;
    }

    .hero-section {
        padding-top: 6.8rem !important;
        padding-bottom: 3.8rem !important;
        min-height: auto !important;
    }

    .section-header {
        margin-bottom: 1.2rem !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
        letter-spacing: 0.04em;
        line-height: 1.3;
        margin-bottom: 1rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        line-height: 1.25;
        letter-spacing: 0.05em;
    }

    .enemigo-glow-text {
        font-size: 1.85rem !important;
        margin-bottom: 1.2rem !important;
    }

    .enemigo-card {
        padding: 2rem 1rem !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    .roi-calculator-card {
        padding: 1.25rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .highlighted-result .result-value {
        font-size: 2.2rem;
    }
}

/* Draper Stats Bar */
.draper-stats-bar {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background-color: rgba(10, 10, 12, 0.4);
    padding: 2.5rem 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 2;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-bar-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--color-neon);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(191, 255, 0, 0.15);
}

.stats-bar-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .draper-stats-bar {
        padding: 2rem 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0 1rem;
    }

    .stats-bar-item {
        padding: 1.5rem 0.8rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-bar-item:nth-child(2n) {
        border-right: none;
    }

    .stats-bar-item:nth-child(3),
    .stats-bar-item:nth-child(4) {
        border-bottom: none;
    }

    .stats-bar-number {
        font-size: 2.2rem;
        margin-bottom: 0.35rem;
    }

    .stats-bar-label {
        font-size: 0.65rem;
        letter-spacing: 0.06em;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .draper-stats-bar {
        padding: 1.2rem 0;
    }

    .stats-bar-item {
        padding: 1.1rem 0.4rem;
    }

    .stats-bar-number {
        font-size: 2rem;
    }
}

/* 20. Sección Soluciones y Servicios */
.soluciones-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.soluciones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.solucion-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.solucion-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

/* Card especial destacada (Sitios IA) con borde degradado neón */
.solucion-card.solucion-card\.featured {
    background: rgba(191, 255, 0, 0.01);
    position: relative;
}

.solucion-card.solucion-card\.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(191, 255, 0, 0.4), transparent 50%, rgba(191, 255, 0, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.solucion-number {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    padding: 4px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.8rem;
    width: fit-content;
}

.solucion-card.solucion-card\.featured .solucion-number {
    border-color: rgba(191, 255, 0, 0.3);
    color: var(--color-neon);
}

.solucion-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solucion-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.solucion-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-neon);
    margin-top: 1.5rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.solucion-link:hover {
    color: var(--accent-active);
}

.solucion-link span {
    transition: transform 0.2s ease;
    display: inline-block;
}

.solucion-link:hover span {
    transform: translateX(4px);
}

/* Draper Dashboard Banner (SaaS - Tarjeta Destacada Neón con Texto Negro) */
.dashboard-card {
    background-color: var(--color-neon);
    color: #000000;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-top: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(191, 255, 0, 0.25);
}

.dashboard-card:hover {
    box-shadow: 0 20px 50px rgba(191, 255, 0, 0.4);
    transform: translateY(-2px);
}

.dashboard-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.dashboard-info .dashboard-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-info .dashboard-tag::before {
    content: '';
    width: 16px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.4);
}

.dashboard-info h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #000000;
}

.dashboard-info p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
    max-width: 720px;
    font-weight: 500;
}

.btn-dark-outline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #000000;
    color: var(--color-neon);
    border: 1px solid #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark-outline:hover {
    background: #141414;
    color: #ffffff;
    border-color: #141414;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-dark-outline span {
    transition: transform 0.2s;
    display: inline-block;
}

.btn-dark-outline:hover span {
    transform: translateX(4px);
}

/* Extra Soluciones (Fila de 2 tarjetas inferiores) */
.extra-soluciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.extra-solucion-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.extra-solucion-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

.extra-solucion-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.extra-solucion-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive para la sección Soluciones */
@media (max-width: 1024px) {
    .soluciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .btn-dark-outline {
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .soluciones-grid {
        grid-template-columns: 1fr;
    }
    .extra-soluciones {
        grid-template-columns: 1fr;
    }
    .dashboard-card {
        padding: 2rem;
    }
    .soluciones-section {
        padding: 6rem 0;
    }
}

/* Ocultar marca de agua y branding de Cal.com de forma agresiva */
[data-cal-namespace] a[href*="cal.com"],
a[href*="cal.com"],
a[href*="cal.com/signup"],
.cal-embed-branding,
a.cal-branding,
div[class*="branding"],
div[class*="cal-branding"],
div[id*="cal-"] a[href*="cal.com"],
div[style*="z-index"] a[href*="cal.com"],
div[style*="position: fixed"] a[href*="cal.com"],
footer[class*="cal"],
div[class*="footer"] a[href*="cal.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Deliverables Grid (Bloque 4: Qué incluye) */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 1240px;
    margin: 0 auto;
}

.deliverable-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.deliverable-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 255, 0, 0.08);
}

.deliverable-card-wide {
    grid-column: span 2;
}

.deliverable-check {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(191, 255, 0, 0.1);
    border: 1px solid var(--color-neon);
    color: var(--color-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.deliverable-text {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    .deliverable-card-wide {
        grid-column: span 1;
    }
}

/* Estilos para la Página Método y Filtro (/metodo) */
.metodo-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 3rem auto;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at center, rgba(191, 255, 0, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%), #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.metodo-video-wrapper:hover {
    border-color: var(--color-neon);
    box-shadow: 0 25px 60px rgba(191, 255, 0, 0.15);
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(191, 255, 0, 0.12);
    border: 2px solid var(--color-neon);
    color: var(--color-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 0 30px rgba(191, 255, 0, 0.3);
}

.metodo-video-wrapper:hover .video-play-btn {
    transform: scale(1.12);
    background-color: var(--color-neon);
    color: #000000;
    box-shadow: 0 0 45px rgba(191, 255, 0, 0.6);
}

.metodo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
}

.metodo-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
}

.metodo-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.08);
}

.metodo-card-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-neon);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.metodo-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.metodo-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.warning-box {
    background-color: rgba(255, 170, 0, 0.05);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    max-width: 920px;
    margin: 2.5rem auto 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.warning-box-icon {
    font-size: 1.4rem;
    color: #ffaa00;
    flex-shrink: 0;
    line-height: 1;
}

.warning-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffe6b3;
    margin: 0;
}

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

/* Estilos para la Página de Confirmación Gracias (/gracias) */
.gracias-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
}

.gracias-step-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: var(--transition-smooth);
}

.gracias-step-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(191, 255, 0, 0.08);
}

.gracias-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(191, 255, 0, 0.08);
    border: 1px solid rgba(191, 255, 0, 0.25);
    color: var(--color-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.1);
}

.gracias-step-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.gracias-step-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

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

/* Estilos para la Página de Kickoff y Bóveda (/bienvenido) */
.vault-embed-wrapper {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    background-color: #0a0a0a;
    border: 1px solid rgba(191, 255, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(191, 255, 0, 0.08);
    position: relative;
}

.vault-embed-wrapper iframe {
    width: 100%;
    min-height: 850px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #ffffff;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1240px;
    margin: 2.5rem auto 0 auto;
}

.timeline-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-card.active {
    border-color: var(--color-neon);
    background: linear-gradient(180deg, rgba(191, 255, 0, 0.05) 0%, rgba(10, 10, 10, 0.95) 100%);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.12);
}

.timeline-phase-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.timeline-card.active .timeline-phase-tag {
    color: var(--color-neon);
}

.timeline-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--color-neon);
    color: #000000;
    margin-left: 6px;
}

.timeline-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.timeline-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Estilos para el Widget Scorecard de Calificación (/metodo) */
.scorecard-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 960px;
    margin: 3rem auto 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.score-question-block {
    margin-bottom: 2.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.score-question-block:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.score-question-title {
    font-family: var(--font-heading-secondary);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.35;
}

.score-question-num {
    font-family: var(--font-mono);
    color: var(--color-neon);
    font-weight: 700;
    font-size: 1rem;
}

.score-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.score-option-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
    user-select: none;
}

.score-option-card:hover {
    border-color: rgba(191, 255, 0, 0.4);
    background-color: rgba(191, 255, 0, 0.02);
}

.score-option-card.selected {
    border-color: var(--color-neon);
    background-color: rgba(191, 255, 0, 0.06);
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.12);
}

.score-radio-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.score-option-card.selected .score-radio-indicator {
    border-color: var(--color-neon);
    background-color: var(--color-neon);
}

.score-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000000;
    opacity: 0;
    transition: var(--transition-fast);
}

.score-option-card.selected .score-radio-dot {
    opacity: 1;
}

.score-option-text {
    font-size: 1.02rem;
    color: var(--text-primary);
    line-height: 1.45;
}

.score-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: var(--transition-fast);
}

.score-textarea:focus {
    outline: none;
    border-color: var(--color-neon);
    box-shadow: 0 0 15px rgba(191, 255, 0, 0.15);
    background-color: rgba(191, 255, 0, 0.02);
}

.score-result-container {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.score-result-success {
    background-color: rgba(191, 255, 0, 0.03);
    border: 1px solid var(--color-neon);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 0 40px rgba(191, 255, 0, 0.15);
    text-align: center;
}

.score-result-rejection {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
}

.score-error-msg {
    color: #ff5555;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1rem;
    display: none;
    text-align: center;
}

/* Estilos para The Vault (Lead Magnet Hub - /vault) */
.vault-hero-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(191, 255, 0, 0.25);
    border-radius: 24px;
    padding: 3rem;
    max-width: 1040px;
    margin: 2rem auto 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(191, 255, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vault-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3.5rem auto 2.5rem auto;
}

.vault-filter-tag {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.vault-filter-tag:hover {
    border-color: var(--color-neon);
    color: var(--text-primary);
}

.vault-filter-tag.active {
    background-color: var(--color-neon);
    color: #000000;
    border-color: var(--color-neon);
    font-weight: 800;
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.3);
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1240px;
    margin: 0 auto;
}

.vault-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-smooth);
}

.vault-card:hover {
    border-color: var(--color-neon);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(191, 255, 0, 0.1);
}

.vault-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.vault-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(191, 255, 0, 0.08);
    border: 1px solid rgba(191, 255, 0, 0.25);
    color: var(--color-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.vault-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--color-neon);
    color: #000000;
}

.vault-badge.badge-prompt {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vault-card h3 {
    font-family: var(--font-heading-secondary);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.vault-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.vault-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.vault-modal {
    background-color: #0a0a0a;
    border: 1px solid var(--color-neon);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 25px 70px rgba(191, 255, 0, 0.2);
    transform: scale(0.92);
    transition: var(--transition-smooth);
}

.vault-modal-overlay.active .vault-modal {
    transform: scale(1);
}

.vault-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.vault-modal-close:hover {
    color: var(--color-neon);
}

@media (max-width: 992px) {
    .vault-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .vault-grid {
        grid-template-columns: 1fr;
    }
    .vault-hero-card {
        padding: 1.8rem 1.2rem;
    }
}

/* Estilos para Plantilla de Consumo de Recursos (/recurso-template) */
.resource-page-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 6rem 1.5rem;
}

.resource-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.resource-back-link:hover {
    color: var(--color-neon);
}

.code-terminal-box {
    background-color: #000000;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 2.5rem 0 1.5rem 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(191, 255, 0, 0.05);
}

.code-terminal-header {
    background-color: #0d0d0d;
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-terminal-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.btn-copy-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-copy-code:hover {
    border-color: var(--color-neon);
    color: var(--color-neon);
    background: rgba(191, 255, 0, 0.06);
}

.code-terminal-content {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-neon);
}

.step-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin-top: 1.8rem;
}

.step-item-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-fast);
}

.step-item-card:hover {
    border-color: rgba(191, 255, 0, 0.3);
}

.step-number-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(191, 255, 0, 0.08);
    border: 1px solid var(--color-neon);
    color: var(--color-neon);
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.upsell-card-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--color-neon);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 0 45px rgba(191, 255, 0, 0.12);
    margin-top: 3.5rem;
}

/* ==========================================================================
   REGLAS GLOBALES DE RESPONSIVIDAD Y FIX MÓVIL (DRAPER SYSTEMS)
   ========================================================================== */

/* Prevenir desbordamiento horizontal global */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Ajuste de palabra para evitar desbordes de texto largo */
h1, h2, h3, h4, h5, h6, p, span, a, label {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

/* Reglas específicas para pantallas móviles (≤ 768px) */
@media (max-width: 768px) {

    /* 1. HEADER Y LOGO */
    .main-header {
        height: auto !important;
        min-height: 60px !important;
        padding: 10px 0 !important;
    }

    .header-container {
        padding: 0 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .brand-logo img {
        height: 26px !important;
        max-height: 26px !important;
        width: auto !important;
    }

    .header-container .nav-btn,
    .main-header .nav-btn {
        font-size: 0.72rem !important;
        padding: 6px 12px !important;
        border-radius: 6px !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        text-align: center !important;
        max-width: 150px !important;
        box-shadow: none !important;
    }

    /* 2. TITULARES RESPONSIVOS */
    h1, .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        letter-spacing: 0.02em !important;
    }

    h2, .section-title {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        letter-spacing: 0.02em !important;
    }

    h3 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .section-container,
    .resource-page-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 3. HERO MASTERCLASS CARD (VAULT) EN 1 SOLA COLUMNA */
    .vault-hero-card {
        padding: 1.5rem 1.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .vault-hero-card > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .vault-hero-card .btn-primary,
    .vault-hero-card a.btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 1rem !important;
        font-size: 0.85rem !important;
        box-sizing: border-box !important;
    }

    /* 4. BARRA DE FILTROS DEL VAULT EN SCROLL HORIZONTAL SUAVE */
    .vault-filter-bar {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 10px !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-bottom: 1.5rem !important;
    }

    .vault-filter-tag {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.78rem !important;
        padding: 6px 12px !important;
    }

    /* 5. GRID DE RECURSOS EN 1 SOLA COLUMNA */
    .vault-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        width: 100% !important;
    }

    .vault-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem 1.2rem !important;
    }

    .vault-card a.btn {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* 6. CONSOLA DE CÓDIGO TERMINAL */
    .code-terminal-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 1.5rem 0 !important;
    }

    .code-terminal-header {
        padding: 0.7rem 1rem !important;
    }

    .code-terminal-content {
        padding: 1rem !important;
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        white-space: pre-wrap !important;
        word-break: break-all !important;
        overflow-x: auto !important;
    }

    /* 7. TARJETA DE UPSELL */
    .upsell-card-container {
        padding: 1.8rem 1.2rem !important;
        margin-top: 2.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .upsell-card-container h3 {
        font-size: 1.4rem !important;
        line-height: 1.25 !important;
    }

    .upsell-card-container a.btn {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem !important;
        font-size: 0.9rem !important;
        box-sizing: border-box !important;
    }

    /* 8. SCORECARD WIDGET EN MÉTODO.HTML */
    .scorecard-wrapper {
        padding: 1.5rem 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .scorecard-wrapper h2 {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
    }

    .score-option-card {
        padding: 0.9rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .score-result-success,
    .score-result-rejection {
        padding: 1.5rem 1.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .score-result-rejection a.btn,
    .score-result-success a.btn {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* 9. PASOS DE CONFIGURACIÓN */
    .step-item-card {
        padding: 1.1rem 1.2rem !important;
        gap: 12px !important;
    }

    .step-number-badge {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }

    /* 10. BOTÓN FLOTANTE MÓVIL ESTILO APP FOOTER (FULL WIDTH STICKY BAR) */
    body {
        padding-bottom: 75px !important;
    }

    .floating-metodo-btn {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        border-radius: 16px 16px 0 0 !important;
        padding: 16px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.05em !important;
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.95), 0 0 30px rgba(191, 255, 0, 0.45) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
        z-index: 99999 !important;
    }

    /* DESPLEGABLE MÓVIL EN VAULT */
    .vault-filter-bar {
        display: none !important;
    }

    .vault-filter-select-wrapper {
        display: block !important;
    }

    /* FIX MÓVIL BANNER DRAPER DASHBOARD */
    .dashboard-card {
        padding: 1.8rem 1.2rem !important;
        margin: 2rem 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .dashboard-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }

    .dashboard-info {
        width: 100% !important;
        max-width: 100% !important;
    }

    .dashboard-info h3 {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
    }

    .dashboard-info p {
        font-size: 0.98rem !important;
        line-height: 1.55 !important;
        width: 100% !important;
    }

    .dashboard-inner a.btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 1rem !important;
        white-space: normal !important;
        box-sizing: border-box !important;
    }

    /* FORZAR ESTRICTAMENTE 1 SOLA COLUMNA EN MÓVIL PARA LAS GRILLAS PRINCIPALES */
    .extra-soluciones,
    .realidad-grid,
    .soluciones-grid,
    .strategists-grid,
    .trust-grid,
    .deliverables-grid,
    .gracias-steps-grid,
    .vault-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        width: 100% !important;
    }

    .extra-solucion-card,
    .realidad-card,
    .solucion-card,
    .trust-card,
    .deliverable-card,
    .gracias-step-card,
    .vault-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem 1.2rem !important;
    }

    .footer-container {
        flex-direction: column !important;
        gap: 2.5rem !important;
    }

    .footer-links-group {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   ESTILOS DE FOOTER GLOBAL (DRAPER SYSTEMS)
   ========================================================================== */
.main-footer {
    background-color: #050505;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 3rem 0;
    color: var(--text-primary);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 380px;
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-links h4 {
    font-family: var(--font-heading-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-neon);
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

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

.footer-links a:hover {
    color: #ffffff;
}

/* ESTILOS DEL DROPDOWN DESPLEGABLE DE CATEGORÍAS */
.vault-filter-select-wrapper {
    display: none;
    margin-bottom: 1.5rem;
    width: 100%;
}

.vault-category-select {
    width: 100%;
    background-color: #0d0d0d;
    border: 1px solid var(--color-neon);
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.15);
    transition: var(--transition-fast);
}

.vault-category-select option {
    background-color: #111111;
    color: #ffffff;
    padding: 10px;
}

.vault-category-select:focus {
    border-color: var(--color-neon);
    box-shadow: 0 0 25px rgba(191, 255, 0, 0.35);
}

/* ==========================================================================
   MODAL DE DESBLOQUEO DE LA BÓVEDA (VAULT LEAD CAPTURE)
   ========================================================================== */
.vault-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem;
    box-sizing: border-box;
}

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

.vault-modal {
    background-color: #0d0d0d;
    border: 1px solid rgba(191, 255, 0, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(191, 255, 0, 0.18);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}

.vault-modal-overlay.active .vault-modal {
    transform: scale(1);
}

.vault-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.vault-modal-close:hover {
    color: #ffffff;
}






