/* Estilos generales */
#garoce-diagnostic-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.garoce-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--garoce-primary, #3b82f6);
    color: white;
    border-radius: 8px;
}

.garoce-brand {
    flex: 1 1 30%;
}

.garoce-logo {
    max-width: 100%;
    height: auto;
}

.garoce-title {
    flex: 1 1 70%;
}

.garoce-header h1 {
    margin: 0;
    font-size: 24px;
}

/* Formulario */
.garoce-form-group {
    margin-bottom: 20px;
}

.garoce-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--garoce-text, #1f2937);
}

.garoce-form-group input,
.garoce-form-group select,
.garoce-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
}

/* Forzar estilos en Nice Select */
.nice-select {
    background: #fff !important;
    border: 1px solid #000 !important;
    color: #000 !important;
}
.nice-select .current {
    color: #000 !important;
}
.nice-select .list {
    background: #fff !important;
    border: 1px solid #000 !important;
}
.nice-select .option {
    color: #000 !important;
    background: #fff !important;
}
.nice-select .option.selected,
.nice-select .option.focus,
.nice-select .option:hover {
    background: #f2f2f2 !important;
    color: #000 !important;
}

.garoce-form-group input:focus,
.garoce-form-group select:focus,
.garoce-form-group textarea:focus {
    outline: none;
    border-color: var(--garoce-primary, #3b82f6);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.garoce-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Botones */
.garoce-btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.garoce-btn-primary {
    background: var(--garoce-primary, #3b82f6);
    color: white;
}

.garoce-btn-primary:hover {
    background: #2563eb;
}

.garoce-btn-secondary {
    background: #6b7280;
    color: white;
}

.garoce-btn-secondary:hover {
    background: #4b5563;
}

.garoce-btn-success {
    background: var(--garoce-secondary, #10b981);
    color: white;
}

.garoce-btn-success:hover {
    background: #059669;
}

.garoce-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* Resultados */
.garoce-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--garoce-background, #f8fafc);
    border-radius: 8px;
}

.garoce-result-header h2 {
    margin: 0;
    color: var(--garoce-primary, #3b82f6);
}

.garoce-result-section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.garoce-result-section h3 {
    color: var(--garoce-primary, #3b82f6);
    border-bottom: 2px solid var(--garoce-primary, #3b82f6);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.garoce-result-section h4 {
    color: var(--garoce-secondary, #10b981);
    margin-top: 20px;
    margin-bottom: 10px;
}

.garoce-result-section ul {
    list-style: none;
    padding: 0;
}

.garoce-result-section li {
    background: #f8f9fa;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 4px solid var(--garoce-primary, #3b82f6);
    border-radius: 4px;
}

.garoce-smart-recommendation {
    background: #e8f5e8;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--garoce-secondary, #10b981);
}

.garoce-smart-recommendation h4 {
    margin-top: 0;
    color: var(--garoce-text, #1f2937);
}

.garoce-smart-details {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.garoce-smart-details p {
    margin: 5px 0;
}

/* Estados de carga */
.garoce-btn-loading {
    display: none;
}

.garoce-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Errores */
.garoce-form-group input.error,
.garoce-form-group select.error,
.garoce-form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    #garoce-diagnostic-container {
        padding: 10px;
    }
    
    .garoce-header {
        flex-direction: column;
        padding: 15px;
        align-items: flex-start;
    }
    
    .garoce-logo {
        max-width: 150px;
    }
    
    .garoce-header h1 {
        font-size: 20px;
    }
    
    .garoce-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .garoce-btn {
        width: 100%;
        margin-right: 0;
    }
    
    .garoce-result-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .garoce-result-header h2 {
        text-align: center;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.garoce-step {
    animation: fadeIn 0.5s ease-in-out;
}

.garoce-result-section {
    animation: fadeIn 0.5s ease-in-out;
}

/* Personalización de colores */
:root {
    --garoce-primary: #3b82f6;
    --garoce-secondary: #10b981;
    --garoce-background: #f8fafc;
    --garoce-text: #1f2937;
}
/* ==========================================================================
   Landing post-diagnóstico (sales hook)
   ========================================================================== */

.garoce-rl {
    --rl-bg: #ffffff;
    --rl-fg: #0f172a;
    --rl-muted: #475569;
    --rl-border: #e5e7eb;
    --rl-accent: #E6C72F;
    --rl-saas: #6366f1;
    --rl-book: #E53935;
    margin: 0 auto;
    max-width: 1100px;
    color: var(--rl-fg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.garoce-rl .garoce-rl-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rl-accent);
    background: rgba(230,199,47,.12);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.garoce-rl .garoce-rl-h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--rl-fg);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

/* ----- HERO ----- */
.garoce-rl-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 56px 32px 48px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.35);
}

.garoce-rl-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(230,199,47,.18) 0%, transparent 60%);
    pointer-events: none;
}

.garoce-rl-hero-inner { position: relative; z-index: 2; }

.garoce-rl-hero .garoce-rl-eyebrow {
    background: rgba(255,255,255,.1);
    color: var(--rl-accent);
}

.garoce-rl-stage-badge {
    width: 140px; height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 40px -8px rgba(0,0,0,.5), inset 0 -4px 16px rgba(0,0,0,.2);
    background: linear-gradient(135deg, #f97316 0%, #f97316CC 100%);
}

.garoce-rl-stage-num {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
    letter-spacing: -0.02em;
}

.garoce-rl-stage-name {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.garoce-rl-stage-tag {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    margin: 0 auto 32px;
    max-width: 600px;
    line-height: 1.5;
}

.garoce-rl-hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center;
}

.garoce-rl-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 0;
    font-family: inherit;
}

.garoce-rl-btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
}
.garoce-rl-btn-ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

.garoce-rl-btn-link {
    background: transparent;
    color: rgba(255,255,255,.7);
}
.garoce-rl-btn-link:hover { color: #fff; }

/* ----- PAINS ----- */
.garoce-rl-pains {
    background: #fef3c7;
    border-left: 4px solid var(--rl-accent);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 32px;
}
.garoce-rl-pains-list {
    margin: 0; padding-left: 22px;
    list-style: none;
}
.garoce-rl-pains-list li {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 15px;
    line-height: 1.55;
    color: #422006;
}
.garoce-rl-pains-list li::before {
    content: '⚠'; position: absolute; left: 0; top: 8px;
    color: #b45309;
}

/* ----- ANALYSIS ----- */
.garoce-rl-analysis {
    background: #fff;
    border: 1px solid var(--rl-border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
}
.garoce-rl-analysis-body { font-size: 15px; line-height: 1.7; color: #1f2937; }
.garoce-rl-analysis-body h1,
.garoce-rl-analysis-body h2,
.garoce-rl-analysis-body h3 { font-weight: 800; margin: 24px 0 10px; line-height: 1.25; }
.garoce-rl-analysis-body h2 { font-size: 22px; }
.garoce-rl-analysis-body h3 { font-size: 18px; }
.garoce-rl-analysis-body strong { color: #0f172a; }
.garoce-rl-analysis-body ul, .garoce-rl-analysis-body ol { padding-left: 24px; }
.garoce-rl-analysis-body li { margin: 6px 0; }
.garoce-rl-analysis-body p { margin: 10px 0; }

/* ----- PRODUCT SHOWCASE ----- */
.garoce-rl-products {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 48px 32px;
    margin-bottom: 40px;
    text-align: center;
}
.garoce-rl-products-header { margin-bottom: 36px; }
.garoce-rl-products-sub {
    color: var(--rl-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.garoce-rl-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.garoce-rl-product {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.garoce-rl-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,.15);
}

.garoce-rl-product.is-highlighted {
    border-color: var(--rl-accent);
    background: linear-gradient(180deg, #fffdf5 0%, #ffffff 60%);
    box-shadow: 0 12px 36px -8px rgba(230,199,47,.4);
}

.garoce-rl-product-ribbon {
    position: absolute;
    top: -14px; left: 24px;
    background: var(--rl-accent);
    color: #1f2937;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    box-shadow: 0 4px 14px rgba(230,199,47,.4);
    display: none; /* JS muestra solo el correcto */
}

.garoce-rl-product-icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.garoce-rl-product-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--rl-muted);
    margin-bottom: 10px;
}

.garoce-rl-product-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.garoce-rl-product-sub {
    color: var(--rl-muted);
    font-size: 15px;
    margin: 0 0 18px;
    line-height: 1.45;
}

.garoce-rl-product-price {
    margin: 0 0 18px;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.garoce-rl-price {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}
.garoce-rl-price-note {
    display: block;
    color: var(--rl-muted);
    font-size: 13px;
    margin-top: 4px;
}

.garoce-rl-product-feats {
    list-style: none;
    padding: 0; margin: 0 0 20px;
    flex: 1;
}
.garoce-rl-product-feats li {
    position: relative;
    padding: 6px 0 6px 26px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.garoce-rl-product-feats li::before {
    content: '✓';
    position: absolute; left: 0; top: 6px;
    color: #16a34a;
    font-weight: 800;
}

.garoce-rl-cta {
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}
.garoce-rl-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,0,0,.25); color: #fff; }

.garoce-rl-cta-book {
    background: linear-gradient(135deg, #E53935 0%, #b91c1c 100%);
}
.garoce-rl-cta-saas {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.garoce-rl-product-foot {
    text-align: center;
    color: var(--rl-muted);
    font-size: 12px;
    font-style: italic;
}

.garoce-rl-products-or {
    color: var(--rl-muted);
    font-size: 14px;
    margin-top: 16px;
}
.garoce-rl-link {
    color: var(--rl-accent);
    text-decoration: none;
    font-weight: 700;
}
.garoce-rl-link:hover { text-decoration: underline; }

/* ----- TRUST BAR ----- */
.garoce-rl-trust {
    background: #0f172a;
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 24px;
}
.garoce-rl-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}
.garoce-rl-trust-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--rl-accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.garoce-rl-trust-label {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 8px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .garoce-rl { padding: 0 12px; }
    .garoce-rl-hero { padding: 40px 20px 36px; border-radius: 16px; }
    .garoce-rl-stage-badge { width: 110px; height: 110px; }
    .garoce-rl-stage-num { font-size: 32px; }
    .garoce-rl-stage-name { font-size: 24px; }
    .garoce-rl-stage-tag { font-size: 15px; }
    .garoce-rl-products { padding: 32px 16px; }
    .garoce-rl-products-grid { grid-template-columns: 1fr; gap: 32px; }
    .garoce-rl-product { padding: 28px 22px; }
    .garoce-rl-product-title { font-size: 24px; }
    .garoce-rl-h2 { font-size: 22px; }
    .garoce-rl-trust-grid { grid-template-columns: 1fr; gap: 24px; }
    .garoce-rl-trust-num { font-size: 28px; }
    .garoce-rl-analysis { padding: 22px 18px; }
}

/* ==========================================================================
   Scale 1-10 picker (cuestionario v2.3)
   ========================================================================== */
.garoce-scale {
    margin-top: 12px;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.garoce-scale.garoce-scale-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.garoce-scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.garoce-scale-low  { color: #16a34a; }
.garoce-scale-high { color: #dc2626; }
.garoce-scale-buttons {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 6px;
}
.garoce-scale-btn {
    aspect-ratio: 1 / 1;
    min-height: 40px;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    color: #334155;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}
.garoce-scale-btn:hover {
    border-color: var(--garoce-primary, #E6C72F);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px -2px rgba(0,0,0,0.12);
}
.garoce-scale-btn.is-selected {
    background: linear-gradient(135deg, #E6C72F 0%, #d4ad17 100%);
    border-color: #d4ad17;
    color: #1f2937;
    box-shadow: 0 6px 14px -4px rgba(230,199,47,0.6);
    transform: translateY(-2px);
}
/* Gradiente de color por valor (verde→amarillo→rojo) */
.garoce-scale-btn[data-value="1"].is-selected,
.garoce-scale-btn[data-value="2"].is-selected,
.garoce-scale-btn[data-value="3"].is-selected {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-color: #15803d;
    color: #fff;
    box-shadow: 0 6px 14px -4px rgba(22,163,74,0.5);
}
.garoce-scale-btn[data-value="8"].is-selected,
.garoce-scale-btn[data-value="9"].is-selected,
.garoce-scale-btn[data-value="10"].is-selected {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #b91c1c;
    color: #fff;
    box-shadow: 0 6px 14px -4px rgba(220,38,38,0.5);
}
.garoce-scale-hint {
    margin-top: 12px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    font-weight: 500;
}
@media (max-width: 640px) {
    .garoce-scale-buttons {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    .garoce-scale-btn { font-size: 14px; min-height: 44px; }
}

/* ==========================================================================
   Plan de transformación HoshinUP (módulos por dolor) — v2.7
   ========================================================================== */
.garoce-rl-plan {
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    border: 1px solid #bae6fd;
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 32px;
}
.garoce-rl-plan-head { text-align: center; margin-bottom: 28px; }
.garoce-rl-plan-sub { color: #475569; font-size: 15px; max-width: 580px; margin: 0 auto; }
.garoce-rl-plan-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px; margin-bottom: 24px;
}
.garoce-rl-plan-card {
    background: #fff; border: 2px solid #e0f2fe; border-radius: 16px;
    padding: 22px 20px; transition: all 0.25s ease;
    animation: garocePlanIn 0.5s cubic-bezier(.16,1.05,.32,1) backwards;
}
@keyframes garocePlanIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.garoce-rl-plan-card:hover { border-color: #38bdf8; transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(56,189,248,0.3); }
.garoce-rl-plan-card.is-urg-high   { border-color: #ef4444; background: linear-gradient(180deg, #fef2f2 0%, #ffffff 50%); }
.garoce-rl-plan-card.is-urg-medium { border-color: #f59e0b; }
.garoce-rl-plan-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.garoce-rl-plan-icon { font-size: 32px; line-height: 1; }
.garoce-rl-plan-urg {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
    background: #f1f5f9; color: #475569;
}
.garoce-rl-plan-card.is-urg-high  .garoce-rl-plan-urg { background: #fee2e2; color: #b91c1c; }
.garoce-rl-plan-card.is-urg-medium .garoce-rl-plan-urg { background: #fef3c7; color: #92400e; }
.garoce-rl-plan-title { font-size: 18px; font-weight: 800; color: #0f172a; margin: 0 0 6px; }
.garoce-rl-plan-desc { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0 0 12px; }
.garoce-rl-plan-reason {
    background: #f8fafc; padding: 10px 12px; border-radius: 10px;
    font-size: 12.5px; color: #334155; line-height: 1.45; border-left: 3px solid #38bdf8;
}
.garoce-rl-plan-reason-label { font-weight: 700; color: #0369a1; }
.garoce-rl-plan-cta {
    display: block; text-align: center; margin: 0 auto;
    padding: 16px 28px; background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #fff; font-weight: 700; font-size: 16px; border-radius: 12px;
    text-decoration: none; max-width: 480px; transition: all 0.2s ease;
}
.garoce-rl-plan-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(99,102,241,0.5); color: #fff; }

/* ==========================================================================
   Costo del caos (banner)
   ========================================================================== */
.garoce-rl-cost {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border: 2px solid #fecaca;
    border-left: 6px solid #dc2626;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
    text-align: center;
}
.garoce-rl-cost-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: #b91c1c; margin-bottom: 8px;
}
.garoce-rl-cost-amount {
    font-size: 48px; font-weight: 900; color: #dc2626;
    line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.garoce-rl-cost-sub { font-size: 14px; color: #7f1d1d; }

/* ==========================================================================
   Quick wins (acciones 30 días)
   ========================================================================== */
.garoce-rl-wins {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
}
.garoce-rl-wins-list {
    counter-reset: wins;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.garoce-rl-wins-list li {
    counter-increment: wins;
    position: relative;
    padding: 16px 16px 16px 56px;
    background: #fff;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #166534;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.garoce-rl-wins-list li::before {
    content: counter(wins);
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
}

/* ==========================================================================
   HOOK DE ENTRADA v2.7 — landing pre-diagnóstico optimizada para conversión
   ========================================================================== */
.gx-hook { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #0f172a; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.gx-hook * { box-sizing: border-box; }

/* HERO */
.gx-hero {
    position: relative; overflow: hidden;
    background: radial-gradient(circle at 20% 0%, rgba(230,199,47,0.18) 0%, transparent 50%),
                radial-gradient(circle at 80% 100%, rgba(99,102,241,0.15) 0%, transparent 50%),
                linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: 28px;
    padding: 64px 40px 56px;
    margin: 16px 0 32px;
    text-align: center;
    box-shadow: 0 30px 80px -25px rgba(15,23,42,0.5);
}
.gx-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.gx-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.gx-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(230,199,47,0.15);
    border: 1px solid rgba(230,199,47,0.35);
    color: #fde047;
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 24px;
}
.gx-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900; line-height: 1.1;
    margin: 0 0 18px; letter-spacing: -0.025em;
}
.gx-hero-title em { color: #fde047; font-style: normal; background: linear-gradient(120deg, #fde047, #fbbf24); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gx-hero-sub { font-size: clamp(15px, 2vw, 19px); color: #cbd5e1; margin: 0 auto 32px; line-height: 1.55; max-width: 620px; }
.gx-hero-meta {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 32px; font-size: 14px; color: #94a3b8;
}
.gx-hero-meta span { display: flex; align-items: center; gap: 6px; }
.gx-hero-meta strong { color: #fff; font-weight: 700; }
.gx-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #E6C72F 0%, #d4ad17 100%);
    color: #0f172a; font-weight: 800; font-size: 17px;
    padding: 18px 36px; border-radius: 999px;
    border: 0; cursor: pointer; text-decoration: none;
    box-shadow: 0 14px 32px -8px rgba(230,199,47,0.55), inset 0 -3px 0 rgba(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(.16,1.05,.32,1);
    font-family: inherit;
}
.gx-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -8px rgba(230,199,47,0.7); color: #0f172a; }
.gx-cta-primary svg, .gx-cta-primary .gx-cta-arrow { transition: transform 0.2s ease; }
.gx-cta-primary:hover .gx-cta-arrow { transform: translateX(4px); }
.gx-hero-trust {
    margin-top: 18px; font-size: 13px; color: #94a3b8;
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.gx-hero-trust span { display: flex; align-items: center; gap: 6px; }

/* SOCIAL PROOF BAR */
.gx-social {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
    padding: 28px 32px; margin-bottom: 32px;
    display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: center;
}
.gx-social-stat { text-align: center; border-right: 1px solid #f1f5f9; padding-right: 24px; }
.gx-social-stat-num { font-size: 38px; font-weight: 900; color: #0f172a; line-height: 1; letter-spacing: -0.02em; }
.gx-social-stat-num span { color: #E6C72F; }
.gx-social-stat-label { font-size: 12px; color: #64748b; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.gx-testimonial { font-style: italic; color: #334155; line-height: 1.55; }
.gx-testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 6px; letter-spacing: 0.1em; }
.gx-testimonial-author { font-style: normal; font-size: 13px; color: #64748b; margin-top: 8px; font-weight: 500; }

/* WHAT YOU GET */
.gx-value { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 36px 32px; margin-bottom: 32px; }
.gx-value-title { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #E6C72F; margin: 0 0 8px; }
.gx-value-h2 { text-align: center; font-size: 28px; font-weight: 800; margin: 0 0 28px; color: #0f172a; letter-spacing: -0.01em; }
.gx-value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.gx-value-card {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
    padding: 20px; transition: all 0.2s ease;
}
.gx-value-card:hover { background: #fff; border-color: #E6C72F; transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(0,0,0,0.1); }
.gx-value-card-icon { font-size: 28px; margin-bottom: 8px; }
.gx-value-card-h { font-size: 15px; font-weight: 700; color: #0f172a; margin: 0 0 4px; }
.gx-value-card-p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.45; }

/* INTERACTIVE STAGE TEASER */
.gx-stages-tease { background: linear-gradient(180deg, #fafafa 0%, #fff 100%); border: 1px solid #e5e7eb; border-radius: 20px; padding: 40px 32px; margin-bottom: 32px; text-align: center; }
.gx-stages-q { font-size: 24px; font-weight: 800; color: #0f172a; margin: 0 0 8px; letter-spacing: -0.01em; }
.gx-stages-p { color: #64748b; margin: 0 0 24px; font-size: 14px; }
.gx-stages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; max-width: 900px; margin: 0 auto 24px; }
.gx-stage-pill {
    background: #fff; border: 2px solid #e5e7eb; border-radius: 14px;
    padding: 16px 12px; cursor: pointer;
    transition: all 0.25s ease; text-align: center;
}
.gx-stage-pill:hover { transform: translateY(-3px); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.15); }
.gx-stage-pill.is-selected { transform: translateY(-3px); }
.gx-stage-pill-emoji { font-size: 28px; line-height: 1; margin-bottom: 6px; }
.gx-stage-pill-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #94a3b8; margin-bottom: 4px; }
.gx-stage-pill-name { font-size: 13px; font-weight: 700; color: #0f172a; line-height: 1.2; }
.gx-stage-pill[data-stage="1"]:hover, .gx-stage-pill[data-stage="1"].is-selected { border-color: #EF4444; background: #fef2f2; }
.gx-stage-pill[data-stage="2"]:hover, .gx-stage-pill[data-stage="2"].is-selected { border-color: #F97316; background: #fff7ed; }
.gx-stage-pill[data-stage="3"]:hover, .gx-stage-pill[data-stage="3"].is-selected { border-color: #EAB308; background: #fefce8; }
.gx-stage-pill[data-stage="4"]:hover, .gx-stage-pill[data-stage="4"].is-selected { border-color: #84CC16; background: #f7fee7; }
.gx-stage-pill[data-stage="5"]:hover, .gx-stage-pill[data-stage="5"].is-selected { border-color: #22C55E; background: #f0fdf4; }
.gx-stage-pill[data-stage="6"]:hover, .gx-stage-pill[data-stage="6"].is-selected { border-color: #06B6D4; background: #ecfeff; }
.gx-stage-pill[data-stage="7"]:hover, .gx-stage-pill[data-stage="7"].is-selected { border-color: #8B5CF6; background: #faf5ff; }
.gx-stages-after { font-size: 14px; color: #475569; margin: 0; }
.gx-stages-after strong { color: #0f172a; }

/* COST OF CHAOS (loss aversion) */
.gx-loss { background: linear-gradient(135deg, #fef2f2 0%, #fff 70%); border: 1px solid #fecaca; border-radius: 20px; padding: 36px 32px; margin-bottom: 32px; }
.gx-loss-title { font-size: 22px; font-weight: 800; color: #991b1b; margin: 0 0 10px; letter-spacing: -0.01em; }
.gx-loss-sub { color: #7f1d1d; line-height: 1.55; margin: 0 0 16px; }
.gx-loss-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gx-loss-item { background: #fff; padding: 16px; border-radius: 12px; border: 1px solid #fecaca; }
.gx-loss-item-num { font-size: 26px; font-weight: 900; color: #dc2626; line-height: 1; }
.gx-loss-item-l { font-size: 13px; color: #7f1d1d; margin-top: 6px; }

/* FAQ */
.gx-faq { background: #fff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 32px; margin-bottom: 32px; }
.gx-faq h2 { text-align: center; font-size: 22px; font-weight: 800; margin: 0 0 24px; }
.gx-faq details {
    border-bottom: 1px solid #f1f5f9; padding: 14px 0;
    cursor: pointer;
}
.gx-faq details:last-of-type { border-bottom: 0; }
.gx-faq summary { font-weight: 700; color: #0f172a; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.gx-faq summary::-webkit-details-marker { display: none; }
.gx-faq summary::after { content: '+'; font-size: 22px; font-weight: 400; color: #94a3b8; transition: transform 0.2s; }
.gx-faq details[open] summary::after { transform: rotate(45deg); color: #E6C72F; }
.gx-faq details > p { margin: 10px 0 0; color: #475569; font-size: 14px; line-height: 1.6; }

/* FINAL CTA */
.gx-final { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; border-radius: 24px; padding: 48px 32px; margin-bottom: 32px; text-align: center; }
.gx-final h2 { font-size: 28px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.01em; }
.gx-final p { color: #cbd5e1; max-width: 540px; margin: 0 auto 24px; }

/* STICKY MOBILE CTA */
.gx-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
    border-top: 1px solid #e5e7eb; padding: 12px 16px;
    box-shadow: 0 -10px 24px rgba(0,0,0,0.08);
    transform: translateY(100%); transition: transform 0.3s ease;
    display: none;
}
.gx-sticky-cta.is-visible { transform: translateY(0); }
.gx-sticky-cta .gx-cta-primary { width: 100%; justify-content: center; }
@media (max-width: 768px) {
    .gx-sticky-cta { display: block; }
    .gx-social { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
    .gx-social-stat { border-right: 0; border-bottom: 1px solid #f1f5f9; padding: 0 0 16px; }
    .gx-hero { padding: 44px 22px 36px; border-radius: 20px; }
}

/* ==========================================================================
   v2.8 — Hero con video (A/B variant B)
   ========================================================================== */
.gx-hero-video {
    margin: 24px auto 28px;
    max-width: 580px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}
.gx-hero-video video { display:block; width: 100%; height: auto; }
.gx-hero-video-iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.gx-hero-video-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gx-hero.has-video .gx-hero-meta { margin-top: 8px; }

/* ==========================================================================
   v2.8 — Testimonios reales (grid de 5 cards, como garoce.com)
   ========================================================================== */
.gx-social-v2 {
    background: #f1f5f9;
    border-radius: 24px;
    padding: 48px 32px;
    margin-bottom: 32px;
}
.gx-social-headline { text-align: center; margin-bottom: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.gx-eyebrow-line {
    display: block; width: 60px; height: 4px;
    background: #E6C72F; margin: 0 auto 14px; border-radius: 2px;
}
.gx-eyebrow-label { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #1f2937; margin-bottom: 12px; }
.gx-social-h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: #0f172a; margin: 0 0 12px; line-height: 1.15; letter-spacing: -0.02em; }
.gx-social-sub { color: #475569; font-size: 16px; line-height: 1.55; margin: 0; }

.gx-stats-strip {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    background: #fff; border-radius: 16px; padding: 18px 24px;
    max-width: 720px; margin: 0 auto 36px;
    border: 1px solid #e2e8f0;
}
.gx-stats-item { text-align: center; padding: 0 16px; flex: 1 1 auto; }
.gx-stats-item strong { display: block; font-size: 28px; font-weight: 900; color: #0f172a; line-height: 1; letter-spacing: -0.02em; }
.gx-stats-item span { display: block; font-size: 12px; color: #64748b; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.gx-stars { color: #f59e0b; font-size: 16px !important; letter-spacing: 0.05em !important; text-transform: none !important; }

.gx-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gx-testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 24px;
    text-align: center;
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gx-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.12); }
.gx-testimonial-quote-mark {
    position: absolute; top: 16px; left: 22px;
    font-size: 64px; line-height: 1;
    font-family: Georgia, serif;
    color: #E6C72F;
    opacity: 0.85;
}
.gx-testimonial-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #475569 0%, #1f2937 100%);
    color: #fff; font-weight: 800; font-size: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    margin: 12px auto 18px;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 0 0 2px #E6C72F;
}
.gx-testimonial-text {
    font-size: 15px; line-height: 1.6; color: #334155;
    margin: 0 0 14px;
    font-style: italic;
}
.gx-testimonial-stars-row { color: #f59e0b; font-size: 13px; letter-spacing: 0.1em; margin-bottom: 12px; }
.gx-testimonial-meta {
    border-top: 1px solid #f1f5f9; padding-top: 12px;
}
.gx-testimonial-meta strong { display: block; font-size: 15px; font-weight: 800; color: #0f172a; }
.gx-testimonial-meta span { display: block; font-size: 13px; color: #64748b; margin-top: 2px; }

/* ==========================================================================
   v2.8 — PDF Mockup en value preview
   ========================================================================== */
.gx-value-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}
.gx-value-grid-compact { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
.gx-value-grid-compact .gx-value-card { padding: 16px; }
.gx-value-grid-compact .gx-value-card-icon { font-size: 22px; }
.gx-value-grid-compact .gx-value-card-h { font-size: 14px; }
.gx-value-grid-compact .gx-value-card-p { font-size: 12px; }

.gx-pdf-mock-wrap {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}
.gx-pdf-mock {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 8.5 / 11;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
    animation: gxPdfFloat 6s ease-in-out infinite;
}
.gx-pdf-mock:hover { transform: rotate(0deg) scale(1.04); }
@keyframes gxPdfFloat { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-8px); } }

.gx-pdf-mock-shadow {
    position: absolute; inset: 8px -8px -16px 8px;
    background: rgba(0,0,0,0.08);
    border-radius: 8px;
    filter: blur(20px);
    z-index: 0;
}
.gx-pdf-mock-page {
    position: relative; z-index: 1;
    width: 100%; height: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 30px 60px -20px rgba(15,23,42,0.4),
                0 1px 3px rgba(0,0,0,0.1),
                0 0 0 1px rgba(0,0,0,0.04);
    padding: 22px 22px 14px;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.gx-pdf-mock-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 2px solid #E6C72F;
    padding-bottom: 10px; margin-bottom: 14px;
}
.gx-pdf-mock-logo { font-size: 14px; font-weight: 900; letter-spacing: 0.05em; color: #0f172a; }
.gx-pdf-mock-meta { font-size: 8px; font-weight: 700; letter-spacing: 0.15em; color: #64748b; text-transform: uppercase; }

.gx-pdf-mock-stage-block { background: #fafafa; border-radius: 8px; padding: 12px; margin-bottom: 14px; }
.gx-pdf-mock-eyebrow { font-size: 8px; font-weight: 700; letter-spacing: 0.15em; color: #84CC16; text-transform: uppercase; margin-bottom: 6px; }
.gx-pdf-mock-stage { display: flex; gap: 12px; align-items: center; }
.gx-pdf-mock-stage-num {
    font-size: 36px; font-weight: 900; color: #84CC16; line-height: 1; letter-spacing: -0.04em;
}
.gx-pdf-mock-stage-name { font-size: 13px; font-weight: 800; color: #0f172a; }
.gx-pdf-mock-score { font-size: 10px; color: #64748b; margin-top: 2px; }
.gx-pdf-mock-bar { background: #e5e7eb; height: 5px; border-radius: 999px; overflow: hidden; margin-top: 10px; }
.gx-pdf-mock-bar-fill { height: 100%; background: linear-gradient(90deg, #EF4444 0%, #84CC16 100%); border-radius: 999px; }

.gx-pdf-mock-section { margin-bottom: 14px; }
.gx-pdf-mock-section-title { font-size: 9px; font-weight: 800; letter-spacing: 0.1em; color: #475569; margin-bottom: 8px; }
.gx-pdf-mock-line, .gx-pdf-mock-step .gx-pdf-mock-line {
    height: 6px; background: #f1f5f9; border-radius: 3px; margin-bottom: 5px;
}
.gx-pdf-mock-line-md { width: 80%; }
.gx-pdf-mock-line-sm { width: 60%; }
.gx-pdf-mock-step { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.gx-pdf-mock-step span {
    background: #E6C72F; color: #0f172a;
    width: 16px; height: 16px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 800; flex-shrink: 0;
}
.gx-pdf-mock-step .gx-pdf-mock-line { flex: 1; margin: 0; }
.gx-pdf-mock-footer { margin-top: auto; font-size: 8px; color: #94a3b8; text-align: center; padding-top: 8px; border-top: 1px solid #f1f5f9; }
.gx-pdf-mock-badge {
    position: absolute; top: -8px; right: -8px; z-index: 2;
    background: #0f172a; color: #fde047;
    font-size: 11px; font-weight: 700;
    padding: 6px 12px; border-radius: 999px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.3);
    transform: rotate(8deg);
}

@media (max-width: 768px) {
    .gx-value-row { grid-template-columns: 1fr; gap: 24px; }
    .gx-value-grid-compact { grid-template-columns: 1fr 1fr !important; }
    .gx-pdf-mock-wrap { padding: 0; }
    .gx-pdf-mock { max-width: 240px; }
}

/* ==========================================================================
   v2.8 — Bot conversacional en step-2 (avatar + bubble + progress track)
   ========================================================================== */
.gx-bot-head {
    display: flex; gap: 14px; align-items: flex-start;
    background: linear-gradient(135deg, #f8fafc 0%, #fef9c3 100%);
    border: 1px solid #fde68a;
    border-radius: 16px;
    padding: 16px 18px;
    margin: 0 0 16px;
}
.gx-bot-avatar {
    position: relative; flex: 0 0 auto;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(15,23,42,0.3);
}
.gx-bot-emoji { font-size: 22px; line-height: 1; }
.gx-bot-pulse {
    position: absolute; top: -2px; right: -2px;
    width: 12px; height: 12px;
    background: #22c55e; border-radius: 50%;
    border: 2px solid #fff;
    animation: gxBotPulse 2s infinite;
}
@keyframes gxBotPulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.gx-bot-bubble { flex: 1; padding-top: 2px; }
.gx-bot-name { font-size: 12px; font-weight: 800; color: #92400e; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.gx-bot-msg { font-size: 14.5px; line-height: 1.5; color: #1f2937; transition: opacity 0.3s ease; }

.gx-progress-track {
    height: 6px; background: #f1f5f9; border-radius: 999px;
    overflow: hidden; margin: 0 0 18px;
}
.gx-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E6C72F 0%, #d4ad17 100%);
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(.16,1.05,.32,1);
    box-shadow: 0 0 8px rgba(230,199,47,0.4);
}

/* ==========================================================================
   v2.9 — Fotos en testimonios + Logos trust bar + Exit popup + Reset CTA
   ========================================================================== */

/* Avatar con foto real (reemplaza iniciales si hay URL) */
.gx-testimonial-avatar-photo {
    background: #fff !important;
    padding: 0;
    overflow: hidden;
}
.gx-testimonial-avatar-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Logos bar */
.gx-logos-bar {
    margin: 28px 0 0;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}
.gx-logos-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
}
.gx-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 36px;
}
.gx-logos-grid img {
    max-height: 44px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}
.gx-logos-grid img:hover { opacity: 1; filter: grayscale(0); }
.gx-logo-text {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.gx-logo-text:hover { color: #475569; }

/* Reset / share actions en results */
.gx-rl-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}
.gx-rl-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #475569;
    border: 1.5px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}
.gx-rl-action-btn:hover {
    border-color: #E6C72F;
    color: #0f172a;
    background: #fffdf5;
    transform: translateY(-1px);
}

/* Exit-intent popup */
.gx-exit-overlay {
    position: fixed; inset: 0;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(8px);
    z-index: 99998;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.gx-exit-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}
.gx-exit-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(.16,1.05,.32,1);
}
.gx-exit-overlay[aria-hidden="false"] .gx-exit-modal { transform: scale(1); }
.gx-exit-close {
    position: absolute; top: 12px; right: 16px;
    background: transparent; border: 0;
    font-size: 28px; color: #94a3b8;
    cursor: pointer; line-height: 1;
    padding: 4px 10px; border-radius: 8px;
    transition: all 0.15s;
}
.gx-exit-close:hover { color: #0f172a; background: #f1f5f9; }
.gx-exit-icon { font-size: 48px; margin-bottom: 12px; line-height: 1; }
.gx-exit-title {
    font-size: 22px; font-weight: 800;
    color: #0f172a; margin: 0 0 10px;
    letter-spacing: -0.01em; line-height: 1.25;
}
.gx-exit-sub {
    color: #64748b; font-size: 14.5px; line-height: 1.55;
    margin: 0 0 22px;
}
.gx-exit-perks {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 24px;
}
.gx-exit-perk {
    background: #fef9c3;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #fde68a;
}
.gx-exit-modal .gx-cta-primary {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}
.gx-exit-dismiss {
    background: transparent; border: 0;
    color: #94a3b8; font-size: 13px;
    cursor: pointer; text-decoration: underline;
    font-family: inherit;
}
.gx-exit-dismiss:hover { color: #64748b; }

@media (max-width: 480px) {
    .gx-exit-modal { padding: 28px 22px 20px; }
    .gx-exit-title { font-size: 18px; }
    .gx-rl-action-btn { font-size: 12px; padding: 8px 14px; }
}

/* ==========================================================================
   v3.2 — Form simplificado (5 campos) + Language toggle ES/EN
   ========================================================================== */

/* Step 1 simplificado */
.gx-step1-simple {
    max-width: 540px;
    margin: 0 auto;
    padding: 24px 0;
}
.gx-step1-head { text-align: center; margin-bottom: 24px; }
.gx-step1-head h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.gx-step1-sub {
    color: #64748b;
    font-size: 13px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.gx-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.gx-step1-simple .garoce-form-group {
    margin-bottom: 14px;
}
.gx-step1-simple label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}
.gx-step1-simple input[type="text"],
.gx-step1-simple input[type="email"],
.gx-step1-simple input[type="tel"],
.gx-step1-simple select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.gx-step1-simple input:focus,
.gx-step1-simple select:focus {
    outline: 0;
    border-color: #E6C72F;
    box-shadow: 0 0 0 3px rgba(230,199,47,0.15);
}

.gx-optional-fields {
    margin: 18px 0 0;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.gx-optional-fields summary {
    cursor: pointer;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    list-style: none;
    user-select: none;
    transition: color 0.15s;
}
.gx-optional-fields summary::-webkit-details-marker { display: none; }
.gx-optional-fields summary:hover { color: #0f172a; }
.gx-optional-fields[open] summary { margin-bottom: 12px; color: #0f172a; }

.gx-step1-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.gx-step1-actions .gx-cta-primary {
    flex: 1;
    justify-content: center;
    min-width: 220px;
}
.gx-link-btn {
    background: transparent;
    border: 0;
    color: #64748b;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    padding: 10px 0;
    text-decoration: underline;
}
.gx-link-btn:hover { color: #0f172a; }

.gx-step1-trust {
    text-align: center;
    margin: 20px 0 0;
    color: #94a3b8;
    font-size: 12.5px;
    line-height: 1.5;
}
.gx-step1-trust span { margin-right: 6px; }

@media (max-width: 540px) {
    .gx-row-2 { grid-template-columns: 1fr; gap: 0; }
    .gx-step1-actions { flex-direction: column-reverse; }
    .gx-step1-actions .gx-cta-primary { width: 100%; }
}

/* Language toggle ES/EN */
.gx-lang-toggle {
    position: fixed;
    top: 16px; right: 16px;
    z-index: 9000;
    display: inline-flex;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 999px;
    padding: 3px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.gx-lang-btn {
    background: transparent;
    border: 0;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.05em;
    transition: all 0.15s ease;
}
.gx-lang-btn:hover { color: #0f172a; }
.gx-lang-btn.is-active {
    background: #0f172a;
    color: #E6C72F;
    box-shadow: 0 2px 6px rgba(15,23,42,0.2);
}
@media (max-width: 480px) {
    .gx-lang-toggle { top: 10px; right: 10px; }
    .gx-lang-btn { padding: 5px 10px; font-size: 11px; }
}

/* ==========================================================================
   v3.3 — Rediseño profesional de results (score + impact en %)
   ========================================================================== */

/* Score de madurez (gauge limpio) */
.garoce-rl-score {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.garoce-rl-score-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.garoce-rl-score-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: #64748b; margin-bottom: 16px;
}
.garoce-rl-score-bar {
    height: 14px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
}
.garoce-rl-score-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(.16,1.05,.32,1);
    box-shadow: 0 0 8px rgba(0,0,0,0.05) inset;
}
.garoce-rl-score-num { font-variant-numeric: tabular-nums; }
.garoce-rl-score-num strong {
    font-size: 56px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1;
}
.garoce-rl-score-num span {
    color: #94a3b8;
    font-size: 22px;
    font-weight: 600;
    margin-left: 4px;
}

/* Impact en porcentajes (3 cards limpios) */
.garoce-rl-impact {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.garoce-rl-impact-head { text-align: center; margin-bottom: 28px; }
.garoce-rl-impact-head h3 {
    font-size: 22px; font-weight: 800; color: #0f172a;
    margin: 0 0 6px; letter-spacing: -0.01em;
}
.garoce-rl-impact-head p {
    font-size: 13px; color: #64748b; margin: 0;
    font-style: italic;
}
.garoce-rl-impact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.garoce-rl-impact-card {
    text-align: center;
    padding: 22px 18px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: transform 0.2s ease;
}
.garoce-rl-impact-card:hover { transform: translateY(-3px); border-color: #cbd5e1; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.1); }
.garoce-rl-impact-icon { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.garoce-rl-impact-pct {
    font-size: 38px;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
}
.garoce-rl-impact-name {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.garoce-rl-impact-bar {
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}
.garoce-rl-impact-bar > div {
    height: 100%;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
    border-radius: 2px;
    max-width: 100%;
    transition: width 1s cubic-bezier(.16,1.05,.32,1);
}

@media (max-width: 640px) {
    .garoce-rl-impact-grid { grid-template-columns: 1fr; }
    .garoce-rl-score-num strong { font-size: 44px; }
    .garoce-rl-score { padding: 24px 20px; }
    .garoce-rl-impact { padding: 24px 20px; }
}

/* ==========================================================================
   v3.3 — Hero menos amarillo, más profesional (override de v2.3)
   ========================================================================== */
.garoce-rl-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    /* Quita la sombra dorada del radial — diseño más sobrio */
}
.garoce-rl-hero::before {
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.06) 0%, transparent 70%);
}

/* Costo del caos viejo: oculto (lo reemplazamos con .garoce-rl-impact) */
.garoce-rl-cost { display: none !important; }

/* Análisis: respeto al markdown convertido — tipografía limpia */
.garoce-rl-analysis-body h1,
.garoce-rl-analysis-body h2,
.garoce-rl-analysis-body h3 {
    color: #0f172a;
    font-weight: 800;
}
.garoce-rl-analysis-body h2 { font-size: 22px; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #e5e7eb; }
.garoce-rl-analysis-body h3 { font-size: 17px; margin: 22px 0 8px; color: #334155; }
.garoce-rl-analysis-body p { margin: 12px 0; line-height: 1.7; color: #334155; }
.garoce-rl-analysis-body ul,
.garoce-rl-analysis-body ol { padding-left: 22px; margin: 10px 0; }
.garoce-rl-analysis-body li { margin: 6px 0; line-height: 1.6; color: #334155; }
.garoce-rl-analysis-body strong { color: #0f172a; font-weight: 700; }
.garoce-rl-analysis-body em { color: #475569; }
.garoce-rl-analysis-body blockquote {
    margin: 16px 0;
    padding: 14px 18px;
    background: #fef9c3;
    border-left: 4px solid #E6C72F;
    border-radius: 8px;
    color: #713f12;
    font-style: italic;
}
.garoce-rl-analysis-body code {
    background: #f1f5f9; color: #0f172a;
    padding: 2px 6px; border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 13px;
}
.garoce-rl-analysis-body hr {
    border: 0; height: 1px; background: #e5e7eb;
    margin: 24px 0;
}
.garoce-rl-analysis-body a {
    color: #6366f1; text-decoration: underline;
}

/* ==========================================================================
   v3.3.3 — Print fallback: cards de productos siempre se ven al imprimir/PDF
   ========================================================================== */
@media print {
    /* Forzar layout block en print (CSS grid se rompe en algunos engines de print) */
    .garoce-rl-products-grid {
        display: block !important;
    }
    .garoce-rl-product {
        display: block !important;
        width: 47% !important;
        float: left !important;
        margin: 0 1.5% 16px !important;
        page-break-inside: avoid !important;
    }
    .garoce-rl-products-grid::after {
        content: ''; display: block; clear: both;
    }
    .garoce-rl-products,
    .garoce-rl-plan,
    .garoce-rl-trust { page-break-inside: avoid !important; }
    /* Forzar visibilidad de los CTAs al imprimir */
    .garoce-rl-cta, .gx-cta-primary {
        display: block !important;
        background: #0f172a !important;
        color: #fff !important;
        text-decoration: none !important;
        padding: 12px !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    .garoce-rl-cta-book { background: #DC2626 !important; }
    .garoce-rl-cta-saas { background: #6366f1 !important; }
    /* Mostrar URLs reales debajo de los CTAs (porque links no clickeables en print) */
    .garoce-rl-cta::after {
        content: " (" attr(href) ")" !important;
        display: block !important;
        font-size: 10px !important;
        font-weight: 400 !important;
        color: rgba(255,255,255,0.85) !important;
        margin-top: 4px !important;
        word-break: break-all;
    }
    /* Ocultar elementos de navegación en print */
    .gx-lang-toggle,
    .gx-sticky-cta,
    .gx-exit-overlay,
    .garoce-rl-action-btn { display: none !important; }
}

/* ==========================================================================
   v3.4 — Product cards rediseñadas (web: a la altura del PDF)
   ========================================================================== */

/* Section header más impactante */
.garoce-rl-products-header { text-align: center; margin-bottom: 36px; }
.garoce-rl-products-header .garoce-rl-eyebrow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
    color: #854d0e;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    border: 1px solid #fde68a;
    display: inline-block;
    margin-bottom: 12px;
}

/* CARDS reescritos: borde colorido por tipo + más jerarquía */
.garoce-rl-product {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 34px 30px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Color brand por tipo */
.garoce-rl-product[data-product="adios_caos"] {
    border-color: #fecaca;
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 35%);
}
.garoce-rl-product[data-product="hoshinup"] {
    border-color: #c7d2fe;
    background: linear-gradient(180deg, #eef2ff 0%, #ffffff 35%);
}

.garoce-rl-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.18);
}

/* Highlighted = recomendado para tu etapa */
.garoce-rl-product.is-highlighted {
    border-width: 3px;
    transform: translateY(-4px);
    box-shadow: 0 24px 56px -12px rgba(230,199,47,0.45);
}
.garoce-rl-product[data-product="adios_caos"].is-highlighted {
    border-color: #DC2626;
    box-shadow: 0 24px 56px -12px rgba(220,38,38,0.4);
}
.garoce-rl-product[data-product="hoshinup"].is-highlighted {
    border-color: #6366F1;
    box-shadow: 0 24px 56px -12px rgba(99,102,241,0.4);
}

/* Ribbon "Recomendado" — mejor diseño */
.garoce-rl-product-ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #E6C72F 100%);
    color: #0f172a;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px -4px rgba(230,199,47,0.6);
    white-space: nowrap;
    display: none;
}

/* Icon más prominente */
.garoce-rl-product-icon {
    font-size: 56px !important;
    line-height: 1;
    margin-bottom: 12px;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

/* Tag */
.garoce-rl-product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    margin-bottom: 14px;
    text-align: center;
    align-self: center;
}
.garoce-rl-product[data-product="adios_caos"] .garoce-rl-product-tag {
    background: #fee2e2;
    color: #991b1b;
}
.garoce-rl-product[data-product="hoshinup"] .garoce-rl-product-tag {
    background: #e0e7ff;
    color: #3730a3;
}

/* Title — más grande y centrado */
.garoce-rl-product-title {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin: 0 0 8px !important;
    letter-spacing: -0.025em !important;
    text-align: center;
    line-height: 1.1;
}

/* Sub */
.garoce-rl-product-sub {
    font-size: 14.5px !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    text-align: center;
    margin: 0 0 24px !important;
    min-height: 44px;
}

/* Price block — destacado con bordes */
.garoce-rl-product-price {
    text-align: center;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 14px;
    padding: 18px 14px !important;
    margin: 0 0 22px !important;
}
.garoce-rl-price {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
}
.garoce-rl-price-note {
    font-size: 12px !important;
    color: #64748b !important;
    margin-top: 6px !important;
    font-weight: 600;
}

/* Features list — con checkmarks dorados */
.garoce-rl-product-feats {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 22px !important;
    flex: 1;
}
.garoce-rl-product-feats li {
    position: relative;
    padding: 8px 0 8px 30px !important;
    font-size: 14.5px !important;
    color: #1e293b !important;
    line-height: 1.5 !important;
    border-bottom: 1px solid rgba(15,23,42,0.05);
}
.garoce-rl-product-feats li:last-child { border-bottom: 0; }
.garoce-rl-product-feats li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    width: 22px !important;
    height: 22px !important;
    background: #16a34a !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: 13px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

/* CTA — botón GIGANTE con sombra colorida */
.garoce-rl-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 18px 22px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    color: #fff !important;
    transition: all 0.25s ease !important;
    margin-bottom: 14px !important;
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.25) !important;
    border: 0 !important;
    text-transform: none;
    cursor: pointer;
}
.garoce-rl-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 18px 32px -10px rgba(0,0,0,0.35) !important;
    color: #fff !important;
}

.garoce-rl-cta-book {
    background: linear-gradient(135deg, #ef4444 0%, #DC2626 100%) !important;
}
.garoce-rl-cta-book:hover {
    background: linear-gradient(135deg, #DC2626 0%, #b91c1c 100%) !important;
    box-shadow: 0 18px 32px -8px rgba(220,38,38,0.55) !important;
}
.garoce-rl-cta-saas {
    background: linear-gradient(135deg, #818cf8 0%, #6366F1 100%) !important;
}
.garoce-rl-cta-saas:hover {
    background: linear-gradient(135deg, #6366F1 0%, #4f46e5 100%) !important;
    box-shadow: 0 18px 32px -8px rgba(99,102,241,0.55) !important;
}

/* Foot — más sutil */
.garoce-rl-product-foot {
    text-align: center !important;
    color: #94a3b8 !important;
    font-size: 12px !important;
    font-style: italic !important;
    margin-top: 4px;
}

/* Mobile: cards apiladas con menos padding */
@media (max-width: 768px) {
    .garoce-rl-product { padding: 28px 22px 22px; border-radius: 18px; }
    .garoce-rl-product-title { font-size: 26px !important; }
    .garoce-rl-product-icon { font-size: 44px !important; }
    .garoce-rl-price { font-size: 26px !important; }
    .garoce-rl-cta { padding: 15px 18px !important; font-size: 15px !important; }
}

/* ==========================================================================
   v3.4.2 — Imágenes de producto (web cards)
   ========================================================================== */
.garoce-rl-product-image-wrap {
    text-align: center;
    margin-bottom: 14px;
}
.garoce-rl-product-image {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 14px 28px -8px rgba(0,0,0,0.18);
    display: inline-block;
    background: #fff;
    object-fit: contain;
}

/* v3.4.2 — Print fix: forzar render de cards de productos en PDF */
@media print {
    .garoce-rl-product {
        display: block !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 18px !important;
        padding: 18px !important;
        page-break-inside: avoid !important;
        background: #fff !important;
        border: 2px solid #d1d5db !important;
        box-shadow: none !important;
    }
    .garoce-rl-products-grid { display: block !important; }
    .garoce-rl-products-grid::after { display: none !important; }
    .garoce-rl-product-image { max-height: 120px !important; }
    /* En print, mostrar solo el card recomendado en grande para reducir páginas */
    .garoce-rl-product:not(.is-highlighted) {
        page-break-before: avoid !important;
    }
}

/* ==========================================================================
   v3.4.3 — Bulletproof: cards SIEMPRE visibles + animación CSS keyframe
   ========================================================================== */
@keyframes gx-card-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.garoce-rl-product {
    /* Override cualquier inline opacity:0 stuck del GSAP */
    opacity: 1 !important;
    animation: gx-card-fade-in 0.6s cubic-bezier(.16,1.05,.32,1) backwards;
}
.garoce-rl-product:nth-child(1) { animation-delay: 0.5s; }
.garoce-rl-product:nth-child(2) { animation-delay: 0.65s; }

/* Si GSAP intentó animar y dejó transforms inline, neutralizarlos */
.garoce-rl-product[style*="opacity: 0"] {
    opacity: 1 !important;
    transform: none !important;
    animation: gx-card-fade-in 0.6s cubic-bezier(.16,1.05,.32,1) forwards;
}

/* ==========================================================
   v3.4.3 — Sales landing v2: pivot, badges, combo, testimonios, garantía, mega-CTA
   ========================================================== */

/* PIVOT: banner de transición entre análisis y productos */
.garoce-rl-pivot {
    margin: 60px auto 0;
    max-width: 980px;
    padding: 0 16px;
}
.garoce-rl-pivot-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.18);
}
.garoce-rl-pivot-icon {
    font-size: 56px;
    line-height: 1;
    flex-shrink: 0;
}
.garoce-rl-pivot-h {
    margin: 4px 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #78350f;
    line-height: 1.25;
}
.garoce-rl-pivot-sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #7c2d12;
}
@media (max-width: 700px) {
    .garoce-rl-pivot-inner { flex-direction: column; text-align: center; padding: 22px 18px; }
    .garoce-rl-pivot-h { font-size: 20px; }
}

/* BADGES en cards de producto */
.garoce-rl-product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 12px;
}
.garoce-rl-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: #f1f5f9;
    color: #334155;
}
.garoce-rl-badge-best { background: linear-gradient(90deg,#fbbf24,#f59e0b); color: #78350f; }
.garoce-rl-badge-stars { background: #fef3c7; color: #92400e; }
.garoce-rl-badge-new { background: linear-gradient(90deg,#a855f7,#7c3aed); color: #fff; }
.garoce-rl-badge-trial { background: #d1fae5; color: #065f46; }

/* COMBO tip */
.garoce-rl-combo {
    margin: 32px auto 0;
    max-width: 880px;
    display: flex;
    gap: 14px;
    align-items: center;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}
.garoce-rl-combo-ico { font-size: 28px; flex-shrink: 0; }
.garoce-rl-combo-text strong { display: block; color: #0f172a; margin-bottom: 2px; }

/* TESTIMONIALS */
.garoce-rl-testimonials {
    background: #f8fafc;
    padding: 60px 16px;
    margin: 60px 0 0;
}
.garoce-rl-testi-head {
    max-width: 1080px;
    margin: 0 auto 36px;
    text-align: center;
}
.garoce-rl-testi-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.garoce-rl-testi-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 22px;
    margin: 0;
    box-shadow: 0 4px 12px rgba(15,23,42,0.04);
    transition: transform .25s, box-shadow .25s;
}
.garoce-rl-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15,23,42,0.10);
}
.garoce-rl-testi-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.garoce-rl-testi-card blockquote {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
}
.garoce-rl-testi-card figcaption {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    font-size: 13px;
}
.garoce-rl-testi-card figcaption strong { display: block; color: #0f172a; }
.garoce-rl-testi-card figcaption span { color: #64748b; font-size: 12px; }
@media (max-width: 880px) {
    .garoce-rl-testi-grid { grid-template-columns: 1fr; }
}

/* GUARANTEE / risk reversal */
.garoce-rl-guarantee {
    max-width: 980px;
    margin: 48px auto 0;
    padding: 0 16px;
}
.garoce-rl-guarantee-inner {
    display: flex;
    gap: 22px;
    align-items: center;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 18px;
    padding: 24px 28px;
}
.garoce-rl-guarantee-seal {
    font-size: 64px;
    line-height: 1;
    flex-shrink: 0;
}
.garoce-rl-guarantee-text h3 {
    margin: 0 0 8px;
    color: #064e3b;
    font-size: 20px;
    font-weight: 800;
}
.garoce-rl-guarantee-text p {
    margin: 0;
    color: #065f46;
    font-size: 15px;
    line-height: 1.65;
}
@media (max-width: 700px) {
    .garoce-rl-guarantee-inner { flex-direction: column; text-align: center; padding: 22px 18px; }
}

/* MEGA CTA */
.garoce-rl-mega-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    color: #fff;
    padding: 70px 16px;
    margin: 60px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.garoce-rl-mega-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.25) 0%, transparent 50%);
    pointer-events: none;
}
.garoce-rl-mega-inner {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.garoce-rl-mega-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.garoce-rl-mega-h {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 32px;
    color: #fff;
}
.garoce-rl-mega-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.garoce-rl-mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    border: 2px solid transparent;
}
.garoce-rl-mega-btn-book {
    background: #fff;
    color: #0f172a;
}
.garoce-rl-mega-btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
    color: #0f172a;
}
.garoce-rl-mega-btn-saas {
    background: linear-gradient(90deg, #a855f7, #6366f1);
    color: #fff;
}
.garoce-rl-mega-btn-saas:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(168, 85, 247, 0.55);
    color: #fff;
}
.garoce-rl-mega-foot {
    margin: 0;
    font-size: 14px;
    opacity: 0.78;
}
@media (max-width: 700px) {
    .garoce-rl-mega-h { font-size: 24px; }
    .garoce-rl-mega-btn { width: 100%; justify-content: center; }
}

/* trust footer 4 columns */
@media (min-width: 880px) {
    .garoce-rl-trust .garoce-rl-trust-grid { grid-template-columns: repeat(4, 1fr); }
}
