/* ==========================================================================
   Módulo: Cotizador Online Interactivo (p/cotizador)
   Estilo Apple Minimalista / Obsidian Gold / Modo Claro y Oscuro
   ========================================================================== */

.cotizador-page {
    padding-top: 3rem;
    padding-bottom: 5rem;
    position: relative;
}

/* ── Encabezado Hero ── */
.cotizador-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    padding-top: 1.5rem;
}

.cotizador-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(201, 168, 76, 0.12);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.3);
    margin-bottom: 1.25rem;
}

.cotizador-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.theme--dark .cotizador-title {
    color: #ffffff;
}

.theme--light .cotizador-title {
    color: #0f172a;
}

.cotizador-subtitle {
    font-size: 1.12rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 660px;
}

.theme--dark .cotizador-subtitle {
    color: #a1a1a6;
}

.theme--light .cotizador-subtitle {
    color: #475569;
}

/* ── Badge Sincronización API ── */
.api-sync-badge-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.api-sync-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #22c55e;
}

.sync-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    position: relative;
    display: inline-block;
}

.sync-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    animation: syncPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    opacity: 0.75;
}

@keyframes syncPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ── Selector de Presets / Plantillas ── */
.cotizador-presets-wrapper {
    max-width: 1060px;
    margin: 0 auto 2.75rem auto;
}

.cotizador-presets-label {
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cotizador-presets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.preset-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme--light .preset-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

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

.theme--dark .preset-btn:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.theme--light .preset-btn:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.preset-btn.active {
    border-color: #c9a84c !important;
    background: rgba(201, 168, 76, 0.1) !important;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.preset-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

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

.preset-info strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.theme--dark .preset-info strong {
    color: #ffffff;
}

.theme--light .preset-info strong {
    color: #0f172a;
}

.preset-info small {
    font-size: 0.78rem;
    color: #8e8e93;
    margin-top: 2px;
}

/* ── Grid Principal de Cotización ── */
.cotizador-main-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    max-width: 1160px;
    margin: 0 auto;
    align-items: start;
}

/* Tarjetas de Configuración */
.cotizador-card {
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 24px;
    transition: border-color 0.25s ease;
}

.theme--dark .cotizador-card {
    background: rgba(20, 20, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.theme--light .cotizador-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.cotizador-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.75rem;
}

.cotizador-step-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e5c97b 0%, #c9a84c 100%);
    color: #0a0a0f;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.cotizador-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 4px 0;
}

.theme--dark .cotizador-card-title {
    color: #ffffff;
}

.theme--light .cotizador-card-title {
    color: #0f172a;
}

.cotizador-card-desc {
    font-size: 0.9rem;
    margin: 0;
}

.theme--dark .cotizador-card-desc {
    color: #a1a1a6;
}

.theme--light .cotizador-card-desc {
    color: #64748b;
}

/* ── Control de Cajas Registradoras ── */
.cajas-control-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cajas-visual-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
}

.theme--dark .cajas-visual-display {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme--light .cajas-visual-display {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.cajas-counter-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cajas-btn-step {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.theme--dark .cajas-btn-step {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.theme--dark .cajas-btn-step:hover:not(:disabled) {
    background: #c9a84c;
    color: #0a0a0f;
}

.theme--light .cajas-btn-step {
    background: #e2e8f0;
    color: #0f172a;
}

.theme--light .cajas-btn-step:hover:not(:disabled) {
    background: #c9a84c;
    color: #ffffff;
}

.cajas-btn-step:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cajas-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.cajas-current-number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: #c9a84c;
}

.cajas-label-unit {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.theme--dark .cajas-label-unit {
    color: #a1a1a6;
}

.theme--light .cajas-label-unit {
    color: #64748b;
}

.cajas-price-hint {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme--dark .cajas-price-hint {
    color: #cbd5e1;
}

.theme--light .cajas-price-hint {
    color: #334155;
}

.hint-badge {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* Range Slider */
.cajas-slider-container {
    padding: 0 4px;
}

.cajas-range-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    appearance: none;
    outline: none;
    cursor: pointer;
    background: #334155;
}

.theme--light .cajas-range-slider {
    background: #e2e8f0;
}

.cajas-range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c9a84c;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease;
}

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

.cajas-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #8e8e93;
}

.cajas-benefit-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
}

.theme--dark .cajas-benefit-note {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.18);
    color: #e2e8f0;
}

.theme--light .cajas-benefit-note {
    background: #fefce8;
    border: 1px solid #fef08a;
    color: #713f12;
}

.cajas-benefit-note svg {
    color: #c9a84c;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Lista de Módulos ── */
.modulos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modulo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.theme--light .modulo-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.modulo-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.modulo-item.active {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.05);
}

.theme--light .modulo-item.active {
    border-color: #c9a84c;
    background: #fffdf5;
}

.modulo-item-locked {
    cursor: default;
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.07);
}

.modulo-item-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    padding-right: 16px;
}

.modulo-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.theme--light .modulo-icon-box {
    background: #e2e8f0;
    color: #475569;
}

.modulo-icon-box.gold {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
}

.modulo-icon-box.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.modulo-icon-box.purple {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.modulo-icon-box.orange {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.modulo-icon-box.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.modulo-icon-box.pink {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.modulo-icon-box.cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.modulo-icon-box.ai {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: #a855f7;
}

.modulo-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modulo-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.modulo-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.theme--dark .modulo-title {
    color: #ffffff;
}

.theme--light .modulo-title {
    color: #0f172a;
}

.modulo-status-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
    text-transform: uppercase;
}

.badge-tag-hot {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    text-transform: uppercase;
}

.badge-tag-nomina {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    text-transform: uppercase;
}

.badge-tag-contab {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    text-transform: uppercase;
}

.badge-tag-vert {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    text-transform: uppercase;
}

.badge-tag-ai {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: #a855f7;
    text-transform: uppercase;
}

.modulo-features-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.feature-chip {
    font-size: 0.74rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.theme--dark .feature-chip {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme--light .feature-chip {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.modulo-desc {
    font-size: 0.84rem;
    line-height: 1.45;
    margin: 0;
}

.theme--dark .modulo-desc {
    color: #a1a1a6;
}

.theme--light .modulo-desc {
    color: #64748b;
}

.modulo-item-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.modulo-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #c9a84c;
    text-align: right;
}

.modulo-price small {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    color: #8e8e93;
}

.modulo-lock-icon {
    color: #c9a84c;
    display: flex;
    align-items: center;
}

/* Custom Switch */
.custom-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 34px;
}

.theme--light .switch-slider {
    background-color: #cbd5e1;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.custom-switch input:checked + .switch-slider {
    background-color: #c9a84c;
}

.custom-switch input:checked + .switch-slider:before {
    transform: translateX(22px);
}

/* ── Modalidad de Pago (Switch Mensual / Anual) ── */
.billing-switch-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.billing-cycle-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.theme--light .billing-cycle-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.billing-cycle-btn:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.billing-cycle-btn.active {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.08);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.theme--light .billing-cycle-btn.active {
    background: #fffdf5;
}

.billing-cycle-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e5c97b 0%, #c9a84c 100%);
    color: #0a0a0f;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.billing-cycle-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.theme--dark .billing-cycle-title {
    color: #ffffff;
}

.theme--light .billing-cycle-title {
    color: #0f172a;
}

.billing-cycle-sub {
    font-size: 0.82rem;
    color: #8e8e93;
}

/* ── Panel de Resumen (Sticky Right) ── */
.cotizador-summary-panel {
    position: sticky;
    top: 96px;
}

.cotizador-summary-card {
    border-radius: 28px;
    padding: 2.25rem 2rem;
    transition: all 0.3s ease;
}

.theme--dark .cotizador-summary-card {
    background: rgba(24, 24, 30, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.3);
    backdrop-filter: blur(28px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.theme--light .cotizador-summary-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.summary-card-header {
    text-align: center;
}

.summary-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 6px;
}

.summary-title {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.theme--dark .summary-title {
    color: #ffffff;
}

.theme--light .summary-title {
    color: #0f172a;
}

.summary-subtitle {
    font-size: 0.82rem;
    color: #8e8e93;
    margin: 0;
}

.summary-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0;
}

.theme--light .summary-divider {
    background: #f1f5f9;
}

/* Desglose de Líneas */
.summary-line-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
}

.summary-line-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-line-item .item-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme--dark .summary-line-item .item-name {
    color: #cbd5e1;
}

.theme--light .summary-line-item .item-name {
    color: #334155;
}

.summary-line-item .item-val {
    font-weight: 600;
    color: #c9a84c;
}

/* Filas de Cálculo */
.summary-calc-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
}

.summary-calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.theme--dark .summary-calc-row .calc-label {
    color: #8e8e93;
}

.theme--light .summary-calc-row .calc-label {
    color: #64748b;
}

.summary-calc-row .calc-value {
    font-weight: 600;
}

.discount-row {
    color: #22c55e !important;
}

.discount-row .calc-label,
.discount-row .calc-value {
    color: #22c55e !important;
    font-weight: 600;
}

/* Total Box */
.summary-total-box {
    margin: 1.5rem 0;
    padding: 1.25rem 1rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.theme--light .summary-total-box {
    background: #fffdf5;
    border: 1px solid #fef08a;
}

.total-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8e8e93;
    margin-bottom: 4px;
}

.total-amount-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.total-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c9a84c;
}

.total-number {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #c9a84c;
}

.total-period {
    font-size: 0.88rem;
    font-weight: 600;
    color: #8e8e93;
}

.total-billing-note {
    font-size: 0.78rem;
    color: #8e8e93;
    margin-top: 6px;
}

/* Caja de Ahorro */
.summary-savings-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.theme--light .summary-savings-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.savings-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.savings-content strong {
    display: block;
    font-size: 0.88rem;
    color: #22c55e;
    margin-bottom: 2px;
}

.savings-content p {
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.4;
}

.theme--dark .savings-content p {
    color: #cbd5e1;
}

.theme--light .savings-content p {
    color: #475569;
}

/* Acciones CTA */
.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cotizador-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, #e5c97b 0%, #c9a84c 100%);
    color: #0a0a0f !important;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    transition: all 0.25s ease;
}

.cotizador-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

.cotizador-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 24px;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: rgba(37, 211, 102, 0.12);
    color: #25d366 !important;
    border: 1px solid rgba(37, 211, 102, 0.3);
    transition: all 0.2s ease;
}

.cotizador-btn-whatsapp:hover {
    background: #25d366;
    color: #ffffff !important;
}

/* Badges de Confianza */
.summary-trust-badges {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-trust-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #8e8e93;
}

.summary-trust-badges svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* ── Tabla de Transparencia de Costos ── */
.cotizador-transparency-section {
    margin-top: 6rem;
    padding: 0 1rem;
}

.transparency-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.transparency-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.12);
    color: #c9a84c;
    margin-bottom: 1rem;
}

.transparency-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
}

.theme--dark .transparency-title {
    color: #ffffff;
}

.theme--light .transparency-title {
    color: #0f172a;
}

.transparency-subtitle {
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0;
}

.theme--dark .transparency-subtitle {
    color: #a1a1a6;
}

.theme--light .transparency-subtitle {
    color: #64748b;
}

.transparency-table-wrapper {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.theme--light .transparency-table-wrapper {
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.transparency-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.transparency-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.theme--dark .transparency-table th {
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme--light .transparency-table th {
    background: #f8fafc;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
}

.transparency-table th.col-highlight {
    color: #c9a84c !important;
}

.transparency-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.theme--dark .transparency-table td {
    color: #a1a1a6;
}

.theme--light .transparency-table td {
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.transparency-table td strong {
    color: inherit;
}

.theme--dark .transparency-table td strong {
    color: #ffffff;
}

.theme--light .transparency-table td strong {
    color: #0f172a;
}

.transparency-table td.col-highlight {
    background: rgba(201, 168, 76, 0.04);
    font-weight: 600;
}

.badge-included {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* ── Sección de Preguntas Frecuentes ── */
.cotizador-faq-section {
    margin-top: 6rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.cotizador-faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem 0;
}

.theme--dark .faq-section-title {
    color: #ffffff;
}

.theme--light .faq-section-title {
    color: #0f172a;
}

.faq-section-subtitle {
    font-size: 1rem;
    color: #8e8e93;
    margin: 0;
}

.cotizador-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.theme--dark .faq-accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.theme--light .faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.faq-accordion-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    list-style: none;
    user-select: none;
}

.theme--dark .faq-accordion-summary {
    color: #ffffff;
}

.theme--light .faq-accordion-summary {
    color: #0f172a;
}

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

.faq-chevron {
    transition: transform 0.25s ease;
    color: #8e8e93;
    flex-shrink: 0;
}

.faq-accordion-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: #c9a84c;
}

.faq-accordion-content {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.theme--dark .faq-accordion-content {
    color: #a1a1a6;
}

.theme--light .faq-accordion-content {
    color: #475569;
}

.faq-accordion-content p {
    margin: 0;
}

/* ── Banner Empresarial Inferior ── */
.cotizador-enterprise-banner {
    margin-top: 6rem;
    border-radius: 28px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(35, 30, 20, 0.9) 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.theme--light .cotizador-enterprise-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.banner-text {
    max-width: 600px;
}

.banner-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.banner-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    background: #c9a84c;
    color: #0a0a0f !important;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    background: #e5c97b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* ── Responsividad ── */
@media (max-width: 992px) {
    .cotizador-main-grid {
        grid-template-columns: 1fr;
    }
    
    .cotizador-summary-panel {
        position: static;
        order: 2;
    }

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

@media (max-width: 640px) {
    .cotizador-title {
        font-size: 2rem;
    }

    .cotizador-card {
        padding: 1.5rem 1.25rem;
    }

    .cotizador-presets-grid {
        grid-template-columns: 1fr;
    }

    .billing-switch-wrapper {
        grid-template-columns: 1fr;
    }

    .modulo-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .modulo-item-right {
        width: 100%;
        justify-content: space-between;
    }

    .banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .banner-btn {
        width: 100%;
        justify-content: center;
    }

    /* Transformación de tabla de transparencia a Tarjetas en móvil */
    .transparency-table-wrapper {
        overflow-x: visible !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .transparency-table,
    .transparency-table tbody {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .transparency-table thead {
        display: none !important;
    }
    .transparency-table tr {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        border-radius: 20px !important;
        padding: 18px 16px !important;
        transition: transform 0.2s ease !important;
    }
    .theme--dark .transparency-table tr {
        background: rgba(24, 24, 30, 0.85) !important;
        border: 1px solid rgba(201, 168, 76, 0.2) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    }
    .theme--light .transparency-table tr {
        background: #ffffff !important;
        border: 1px solid rgba(201, 168, 76, 0.25) !important;
        box-shadow: 0 10px 25px rgba(201, 168, 76, 0.06) !important;
    }
    .transparency-table td {
        padding: 0 !important;
        border: none !important;
        width: 100% !important;
        text-align: left !important;
    }
    .transparency-table td:first-child {
        font-size: 1.12rem !important;
        font-weight: 800 !important;
        margin-bottom: 12px !important;
        padding-bottom: 10px !important;
    }
    .theme--dark .transparency-table td:first-child {
        color: #e5c97b !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .theme--light .transparency-table td:first-child {
        color: #b45309 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    .transparency-table td.col-highlight {
        border-radius: 14px !important;
        padding: 12px 14px !important;
        margin-bottom: 10px !important;
        font-size: 0.95rem !important;
    }
    .theme--dark .transparency-table td.col-highlight {
        background: linear-gradient(135deg, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.04) 100%) !important;
        border: 1px solid rgba(201, 168, 76, 0.35) !important;
        color: #ffffff !important;
    }
    .theme--light .transparency-table td.col-highlight {
        background: linear-gradient(135deg, rgba(254, 243, 199, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
        border: 1px solid rgba(201, 168, 76, 0.3) !important;
        color: #78350f !important;
    }
    .transparency-table td.col-highlight::before {
        content: "★ JELODA SOFTWARE (RECOMENDADO):";
        display: block;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
        color: #c9a84c;
    }
    .theme--light .transparency-table td.col-highlight::before {
        color: #b45309;
    }
    .transparency-table td:nth-of-type(3) {
        border-radius: 12px !important;
        padding: 10px 12px !important;
        font-size: 0.88rem !important;
    }
    .theme--dark .transparency-table td:nth-of-type(3) {
        background: rgba(255, 255, 255, 0.02) !important;
        color: rgba(255, 255, 255, 0.65) !important;
        border: 1px solid rgba(255, 255, 255, 0.04) !important;
    }
    .theme--light .transparency-table td:nth-of-type(3) {
        background: rgba(0, 0, 0, 0.02) !important;
        color: rgba(0, 0, 0, 0.65) !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
    }
    .transparency-table td:nth-of-type(3)::before {
        content: "Otros Software (Siigo, Alegra, etc.):";
        display: block;
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.75;
        margin-bottom: 4px;
    }
}
