/* ==========================================================================
   VERIBRAND PRO — SUITE DE CLEARANCE MARCARIO Y MANUAL DE IDENTIDAD A/B
   Consultoría HOST — Departamento (O) Organizacional
   ========================================================================== */

/* --- Variables y Design Tokens --- */
.veribrand-suite {
    --vb-navy: #0F2B5B;
    --vb-navy-deep: #0B132B;
    --vb-blue: #1A56A8;
    --vb-orange: #E8621A;
    --vb-cyan: #06B6D4;
    --vb-emerald: #10B981;
    --vb-amber: #F59E0B;
    --vb-rose: #EF4444;
    --vb-bg-slate: #0F172A;
    --vb-bg-card: #1E293B;
    --vb-text-muted: #94A3B8;
    
    font-family: var(--font-body, 'Inter', system-ui, -apple-system, sans-serif);
    background-color: var(--color-bg-alt, #F8FAFC);
    color: var(--color-text-primary, #0F172A);
    min-height: 100vh;
    padding-bottom: 80px;
    overflow-y: auto !important;
    -webkit-font-smoothing: antialiased;
}

.veribrand-suite * {
    box-sizing: border-box;
}

.veribrand-suite .input-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.veribrand-suite .input-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.veribrand-suite .input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.veribrand-suite .input-container:focus-within {
    border-color: #06B6D4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.35);
}

.veribrand-suite .input-container:focus-within svg {
    color: #06B6D4;
}

.veribrand-suite .input-container svg {
    color: #94A3B8;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.veribrand-suite .input-container input,
.veribrand-suite .input-container select {
    width: 100%;
    color: #FFFFFF;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-weight: 600;
}

.veribrand-suite .input-container select option {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 0.5rem;
}

.veribrand-suite .input-container input::placeholder {
    color: #64748B;
}

/* Trust Badges Bar */
.veribrand-suite .trust-badges-bar {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center !important;
    width: 100%;
}

.veribrand-suite .trust-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-navy, #0F2B5B) !important;
    margin-bottom: 1.25rem;
    text-align: center !important;
    margin-inline: auto !important;
    display: block !important;
    width: 100% !important;
}

.veribrand-suite .trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.veribrand-suite .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-white, #FFFFFF);
    border: 1px solid var(--color-border, #E2E8F0);
    border-radius: var(--radius-xl, 12px);
    color: var(--color-navy, #0F2B5B);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: var(--shadow-card, 0 1px 3px rgba(0,0,0,0.06));
    transition: all 0.2s ease;
}

.veribrand-suite .trust-item:hover {
    background: var(--color-off-white, #F8FAFC);
    border-color: var(--color-orange, #E8621A);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
}

.veribrand-suite .trust-item-icon {
    width: 22px;
    height: 22px;
    color: var(--color-orange, #E8621A);
    flex-shrink: 0;
}

.veribrand-suite .trust-item > div > span:first-child {
    display: block;
    color: var(--color-navy, #0F2B5B);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.2;
}

.veribrand-suite .trust-scope {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary, #64748B);
    display: block;
    margin-top: 2px;
}

/* Social Proof Metrics Counters */
.veribrand-suite .hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border, #E2E8F0);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .veribrand-suite .hero-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.veribrand-suite .metric-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--color-off-white, #F8FAFC);
    border: 1px solid var(--color-border, #E2E8F0);
    border-radius: var(--radius-xl, 12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.veribrand-suite .metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.06));
}

.veribrand-suite .metric-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-navy, #0F2B5B);
    line-height: 1.1;
    font-family: var(--font-display, 'Outfit', sans-serif);
    background: none;
    -webkit-text-fill-color: initial;
    margin-bottom: 0.25rem;
}

.veribrand-suite .metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary, #64748B);
    margin-top: 0.25rem;
}

/* --- Layout Contenedor --- */
.veribrand-suite .vb-app-container {
    max-width: 1140px;
    margin: 20px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   1. SECCIÓN COMPARATIVA 3 TARJETAS: EL ABISMO ENTRE DOMINIO Y MARCA
   ========================================================================== */
.veribrand-suite .vb-ps-section {
    margin: 50px 0 60px;
}

.veribrand-suite .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-12, 3rem);
}

.veribrand-suite .section-header h2 {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: var(--text-4xl, 2.25rem);
    font-weight: var(--font-weight-bold, 700);
    line-height: var(--line-height-tight, 1.2);
    color: var(--color-text-primary, #0F172A);
    margin-bottom: var(--space-4, 1rem);
    letter-spacing: var(--letter-spacing-tight, -0.02em);
}

.veribrand-suite .section-header p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: var(--text-lg, 1.125rem);
    color: var(--color-text-secondary, #475569);
    line-height: var(--line-height-loose, 1.8);
    max-width: 68ch;
    margin-inline: auto;
}

.veribrand-suite .vb-ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .veribrand-suite .vb-ps-grid {
        grid-template-columns: 1fr;
    }
    .veribrand-suite .section-header h2 {
        font-size: var(--text-3xl, 1.875rem);
    }
}

.veribrand-suite .vb-ps-card {
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.veribrand-suite .vb-ps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.veribrand-suite .vb-ps-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.veribrand-suite .vb-ps-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.veribrand-suite .vb-ps-card-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.veribrand-suite .vb-ps-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 22px;
}

.veribrand-suite .vb-ps-desc code {
    background: rgba(0,0,0,0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
}

.veribrand-suite .vb-ps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.veribrand-suite .vb-ps-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.veribrand-suite .vb-ps-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Card 1: Danger */
.veribrand-suite .vb-ps-card--danger {
    background: #FFF5F5;
    border: 1.5px solid #FECACA;
}
.veribrand-suite .vb-ps-card--danger .vb-ps-icon {
    background: #FEE2E2;
    color: #DC2626;
}
.veribrand-suite .vb-ps-card--danger .vb-ps-eyebrow {
    color: #DC2626;
}
.veribrand-suite .vb-ps-card--danger .vb-ps-card-title {
    color: #0F172A;
}
.veribrand-suite .vb-ps-card--danger .vb-ps-desc {
    color: #64748B;
}
.veribrand-suite .vb-ps-card--danger .vb-ps-list li {
    color: #475569;
}

/* Card 2: Warning */
.veribrand-suite .vb-ps-card--warning {
    background: #FFFDF0;
    border: 1.5px solid #FDE68A;
}
.veribrand-suite .vb-ps-card--warning .vb-ps-icon {
    background: #FEF3C7;
    color: #D97706;
}
.veribrand-suite .vb-ps-card--warning .vb-ps-eyebrow {
    color: #D97706;
}
.veribrand-suite .vb-ps-card--warning .vb-ps-card-title {
    color: #0F172A;
}
.veribrand-suite .vb-ps-card--warning .vb-ps-desc {
    color: #64748B;
}
.veribrand-suite .vb-ps-card--warning .vb-ps-list li {
    color: #475569;
}
.veribrand-suite .vb-ps-card--warning .vb-ps-list li strong {
    color: #0F172A;
}

/* Card 3: Success */
.veribrand-suite .vb-ps-card--success {
    background: #0B132B;
    border: 2px solid #06B6D4;
    color: #FFFFFF;
    box-shadow: 0 12px 36px rgba(6, 182, 212, 0.2), 0 4px 12px rgba(0,0,0,0.3);
}
.veribrand-suite .vb-ps-card--success .vb-ps-icon {
    background: rgba(6, 182, 212, 0.18);
    color: #06B6D4;
}
.veribrand-suite .vb-ps-card--success .vb-ps-eyebrow {
    color: #06B6D4;
}
.veribrand-suite .vb-ps-card--success .vb-ps-card-title {
    color: #FFFFFF;
}
.veribrand-suite .vb-ps-card--success .vb-ps-desc {
    color: #94A3B8;
}
.veribrand-suite .vb-ps-card--success .vb-ps-list li {
    color: #E2E8F0;
}

/* ==========================================================================
   2. DEMOSTRACIÓN DE LAS 3 FASES INTERACTIVAS (TABS 1, 2, 3)
   ========================================================================== */
.veribrand-suite .phases-section {
    background: #FFFFFF;
}

.veribrand-suite .phase-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.veribrand-suite .phase-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.veribrand-suite .phase-tab-btn:hover {
    border-color: #06B6D4;
    color: #0F2B5B;
    transform: translateY(-2px);
}

.veribrand-suite .phase-tab-btn.active {
    background: #0F2B5B;
    color: #FFFFFF;
    border-color: #0F2B5B;
    box-shadow: 0 6px 18px rgba(15, 43, 91, 0.2);
}

.veribrand-suite .phase-tab-btn .phase-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.veribrand-suite .phase-tab-btn.active .phase-num {
    background: #06B6D4;
    color: #0F172A;
}

.veribrand-suite .phase-content-panel {
    display: none;
    animation: fadeIn 0.35s ease;
}

.veribrand-suite .phase-content-panel.active {
    display: block;
}

.veribrand-suite .phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2.5rem;
}

@media (max-width: 840px) {
    .veribrand-suite .phase-grid {
        grid-template-columns: 1fr;
    }
}

.veribrand-suite .phase-features-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.veribrand-suite .phase-feature-item {
    display: flex;
    gap: 0.85rem;
}

.veribrand-suite .phase-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.12);
    color: #0284C7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.veribrand-suite .phase-feature-item strong {
    color: #0F172A;
    display: block;
    font-size: 0.95rem;
}

.veribrand-suite .phase-feature-item span {
    font-size: 0.85rem;
    color: #64748B;
}

.veribrand-suite .phase-visual-preview {
    background: #0F172A;
    border-radius: 14px;
    padding: 1.75rem;
    color: #FFFFFF;
    border: 1px solid #334155;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.veribrand-suite .radar-simulation-card {
    text-align: center;
}

.veribrand-suite .radar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #334155;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.veribrand-suite .radar-header span {
    font-size: 0.8rem;
    color: #94A3B8;
    font-family: 'JetBrains Mono', monospace;
}

.veribrand-suite .radar-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #10B981;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.veribrand-suite .radar-score-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #10B981;
    line-height: 1;
}

.veribrand-suite .radar-score-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #CBD5E1;
    margin-top: 0.25rem;
    font-weight: 700;
}

.veribrand-suite .radar-registry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
}

.veribrand-suite .registry-item-box {
    background: #1E293B;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}

.veribrand-suite .registry-item-box .status-pill {
    color: #10B981;
    font-weight: 700;
}

/* ==========================================================================
   3. VISOR INTERACTIVO A/B Y LOS 10 SOPORTES INDUSTRIALES
   ========================================================================== */
.veribrand-suite .variant-toggle-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.veribrand-suite .variant-radio-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.75rem;
    background: #FFFFFF;
    border: 1.5px solid var(--color-border, #E2E8F0);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.veribrand-suite .variant-radio-card:hover {
    border-color: var(--color-orange, #E8621A);
    transform: translateY(-2px);
}

.veribrand-suite .variant-radio-card.active {
    background: #FFFFFF;
    border-color: var(--color-orange, #E8621A);
    box-shadow: 0 8px 24px rgba(232, 98, 26, 0.15);
}

.veribrand-suite .variant-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.veribrand-suite .variant-radio-card.active .variant-indicator {
    border-color: var(--color-orange, #E8621A);
}

.veribrand-suite .variant-radio-card.active .variant-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-orange, #E8621A);
}

.veribrand-suite .variant-title-main {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: 700;
    font-size: var(--text-base, 1rem);
    color: var(--color-navy, #0F2B5B);
}

.veribrand-suite .variant-sub-lbl {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-text-secondary, #475569);
    margin-top: 2px;
}

/* Soportes Strip */
.veribrand-suite .supports-nav-strip {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    margin-bottom: 1.8rem;
    scrollbar-width: thin;
}

.veribrand-suite .support-chip-btn {
    padding: 0.55rem 1.1rem;
    background: #FFFFFF;
    border: 1px solid var(--color-border, #E2E8F0);
    border-radius: var(--radius-full, 999px);
    color: var(--color-text-secondary, #475569);
    font-size: var(--text-sm, 0.875rem);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.veribrand-suite .support-chip-btn:hover {
    background: rgba(232, 98, 26, 0.06);
    border-color: var(--color-orange, #E8621A);
    color: var(--color-orange, #E8621A);
}

.veribrand-suite .support-chip-btn.active {
    background: var(--color-orange, #E8621A);
    color: #FFFFFF;
    border-color: var(--color-orange, #E8621A);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232, 98, 26, 0.25);
}

/* Mockup Display Container */
.veribrand-suite .mockup-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border, #E2E8F0);
    padding-bottom: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.veribrand-suite .technical-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.veribrand-suite .mockup-canvas-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 768px) {
    .veribrand-suite .mockup-canvas-area {
        grid-template-columns: 1fr;
    }
}

.veribrand-suite .mockup-visual-render {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border-radius: var(--radius-lg, 12px);
    padding: 24px;
    border: 1px dashed #CBD5E1;
}

.veribrand-suite .mockup-details-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.veribrand-suite .spec-box {
    background: #F8FAFC;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
}

.veribrand-suite .spec-box-title {
    font-size: var(--text-xs, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-navy, #0F2B5B);
    margin-bottom: 6px;
}

.veribrand-suite .color-swatches-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.veribrand-suite .swatch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    color: #334155;
}

.veribrand-suite .swatch-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    display: inline-block;
}

.veribrand-suite .color-swatches-row {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.veribrand-suite .swatch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #E2E8F0;
}

.veribrand-suite .swatch-color {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
}

/* ==========================================================================
   4. BENCHMARKING DE MERCADO (TABLA COMPARATIVA)
   ========================================================================== */
.veribrand-suite .competitor-section {
    background: #FFFFFF;
}

.veribrand-suite .table-responsive-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 18px;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    background: #FFFFFF;
}

.veribrand-suite .comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: #FFFFFF;
    font-size: 0.88rem;
}

.veribrand-suite .comparison-table th,
.veribrand-suite .comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: middle;
}

.veribrand-suite .comparison-table th {
    background-color: #F8FAFC;
    font-weight: 800;
    color: #0F172A;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.veribrand-suite .comparison-table th.veribrand-col-header {
    background: #0B132B;
    color: #38BDF8;
    font-size: 0.95rem;
    font-weight: 800;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    text-align: center;
    letter-spacing: 0.06em;
    padding: 20px;
}

.veribrand-suite .comparison-table td.veribrand-col {
    background-color: rgba(6, 182, 212, 0.03);
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    border-left: 2px solid rgba(6, 182, 212, 0.25);
    border-right: 2px solid rgba(6, 182, 212, 0.25);
}

.veribrand-suite .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.veribrand-suite .comparison-table tbody tr:last-child td.veribrand-col {
    border-bottom: 2px solid rgba(6, 182, 212, 0.25);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.veribrand-suite .check-icon {
    color: #10B981;
    font-weight: 700;
    font-size: 0.92rem;
}

.veribrand-suite .cross-icon {
    color: #64748B;
    font-size: 0.9rem;
}

.veribrand-suite .warn-icon {
    color: #D97706;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   5. TESTIMONIOS — la sección usa las clases genéricas del sitio
   (.card, .badge, .grid) definidas en main.css, no clases propias.
   ========================================================================== */

/* ==========================================================================
   6. PLANES Y PRECIOS TRANSPARENTES (INVERSIÓN TRANSPARENTE)
   ========================================================================== */
.veribrand-suite .pricing-section {
    background: #FFFFFF;
}

.veribrand-suite .pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.veribrand-suite .billing-lbl {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    transition: color 0.2s ease;
}

.veribrand-suite .billing-lbl.active {
    color: #0F2B5B;
    font-weight: 800;
}

.veribrand-suite .switch-control {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
}

.veribrand-suite .switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.veribrand-suite .switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #CBD5E1;
    transition: .3s;
    border-radius: 34px;
}

.veribrand-suite .switch-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.veribrand-suite .switch-control input:checked + .switch-slider {
    background-color: #06B6D4;
}

.veribrand-suite .switch-control input:checked + .switch-slider:before {
    transform: translateX(24px);
}

.veribrand-suite .discount-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.veribrand-suite .pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .veribrand-suite .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
}

.veribrand-suite .price-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.veribrand-suite .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.veribrand-suite .price-card.featured {
    background: #0B132B;
    color: #FFFFFF;
    border: 2px solid #06B6D4;
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.22), 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1.03);
    z-index: 2;
}

.veribrand-suite .price-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.veribrand-suite .popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06B6D4 0%, #10B981 100%);
    color: #0F172A;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    white-space: nowrap;
}

.veribrand-suite .price-header {
    margin-bottom: 1.5rem;
}

.veribrand-suite .plan-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0F172A;
}

.veribrand-suite .price-card.featured .plan-name {
    color: #67E8F9;
}

.veribrand-suite .plan-target {
    font-size: 0.85rem;
    color: #64748B;
    min-height: 40px;
    line-height: 1.5;
}

.veribrand-suite .price-card.featured .plan-target {
    color: #94A3B8;
}

.veribrand-suite .price-block {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.veribrand-suite .price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.veribrand-suite .price-card.featured .price-amount {
    color: #FFFFFF;
}

.veribrand-suite .price-period {
    font-size: 0.88rem;
    color: #64748B;
}

.veribrand-suite .price-card.featured .price-period {
    color: #94A3B8;
}

.veribrand-suite .price-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.veribrand-suite .price-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #334155;
}

.veribrand-suite .price-card.featured .price-features-list li {
    color: #E2E8F0;
}

.veribrand-suite .price-features-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #10B981;
}

.veribrand-suite .pricing-guarantee-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 16px 20px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==========================================================================
   7. DUDAS FRECUENTES (FAQ INTERACTIVA)
   ========================================================================== */
.veribrand-suite .faq-section {
    background: #FFFFFF;
}

.veribrand-suite .faq-accordion-container {
    max-width: 860px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.veribrand-suite .faq-item {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.veribrand-suite .faq-item:hover {
    border-color: #CBD5E1;
}

.veribrand-suite .faq-item.active {
    border-color: #06B6D4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.12);
}

.veribrand-suite .faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    color: #0F172A;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.veribrand-suite .faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 800;
}

.veribrand-suite .faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #06B6D4;
    color: #0F172A;
}

.veribrand-suite .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.veribrand-suite .faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px 24px;
}

.veribrand-suite .faq-answer p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
}

.veribrand-suite .faq-answer code {
    background: #F1F5F9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

/* ==========================================================================
   9. TARJETAS DE LA APLICACIÓN (MOTOR)
   ========================================================================== */
.veribrand-suite .vb-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 32px;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
}

.veribrand-suite .vb-hidden {
    display: none !important;
}

.veribrand-suite .vb-status-hidden {
    display: none;
    padding: 24px;
    border-radius: 12px;
    background: #F1F5F9;
    margin-top: 20px;
    border-left: 6px solid #CBD5E1;
}

.veribrand-suite .vb-status-hidden h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.veribrand-suite .vb-official-links {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #64748B;
}

.veribrand-suite .vb-official-links a {
    color: #1A56A8;
    text-decoration: none;
    font-weight: 700;
    margin: 0 4px;
}

.veribrand-suite .vb-official-links a:hover {
    text-decoration: underline;
}

/* Chips de Sugerencias */
.veribrand-suite .vb-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.veribrand-suite .vb-chip {
    padding: 10px 20px;
    background: #EFF6FF;
    color: #1E40AF;
    border: 1.5px solid #BFDBFE;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.veribrand-suite .vb-chip:hover {
    background: #1E40AF;
    color: #FFFFFF;
    border-color: #1E40AF;
    transform: scale(1.03);
}

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

/* ==========================================================================
   10. HUB DE NAVEGACIÓN Y ENLAZADO INTERNO (SEO & INTEROPERABILIDAD)
   ========================================================================== */
.veribrand-suite .vb-hub-footer {
    background: #0B132B;
    border: 1.5px solid #1E293B;
    border-radius: 20px;
    padding: 44px 36px 30px;
    margin: 40px 0 20px;
    color: #FFFFFF;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.veribrand-suite .vb-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 960px) {
    .veribrand-suite .vb-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .veribrand-suite .vb-hub-grid {
        grid-template-columns: 1fr;
    }
}

.veribrand-suite .vb-hub-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #67E8F9;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.veribrand-suite .vb-hub-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.veribrand-suite .vb-hub-links li a {
    color: #94A3B8;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.veribrand-suite .vb-hub-links li a:hover {
    color: #38BDF8;
    transform: translateX(3px);
}

.veribrand-suite .vb-hub-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(6, 182, 212, 0.18);
    color: #67E8F9;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.veribrand-suite .vb-hub-badge--green {
    background: rgba(16, 185, 129, 0.18);
    color: #34D399;
    border-color: rgba(16, 185, 129, 0.3);
}

.veribrand-suite .vb-hub-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #64748B;
    flex-wrap: wrap;
    gap: 12px;
}

.veribrand-suite .vb-hub-bottom-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.veribrand-suite .vb-hub-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #94A3B8;
}

/* Estilos de Impresión @media print */
@media print {
    body * {
        visibility: hidden;
    }
    .veribrand-suite, .veribrand-suite * {
        visibility: visible;
    }
    .veribrand-suite {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white;
    }
    .veribrand-suite .vb-ps-section,
    .veribrand-suite .phases-section,
    .veribrand-suite .vb-lead-card,
    .veribrand-suite .btn,
    .veribrand-suite .variant-toggle-bar,
    .veribrand-suite .supports-nav-strip {
        display: none !important;
    }
    .veribrand-suite #manual-ab {
        background: white !important;
        color: black !important;
        border: none !important;
    }
}
