/* SYNARIQ Cotizador guiado — paleta oficial */
.snq-cotizador {
  --azul-petroleo: #1A2E35;
  --verde-synariq: #0C6B41;
  --verde-suave: #E7F3EA;
  --lima-suave: #D6F599;
  --lima-suave-40: rgba(214, 245, 153, .4);
  --gris-grafito: #1E1E1E;
  --gris-texto: #4B5563;
  --gris-linea: #E3E7E4;
  --gris-fondo: #F6F8F6;
  --blanco: #FFFFFF;
  --f1: #1A2E35;
  --f2: #1D4A3C;
  --f3: #0C6B41;
  --f4: #6FAE5C;
  --f5: #AFD873;
  --radio: 16px;
  --radio-sm: 10px;
  --sombra: 0 1px 2px rgba(26, 46, 53, .06), 0 8px 24px rgba(26, 46, 53, .06);
  --sombra-fuerte: 0 12px 32px rgba(26, 46, 53, .14);
  --serif-mono: "JetBrains Mono", ui-monospace, monospace;
  --transicion: .35s cubic-bezier(.4, 0, .2, 1);
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  color: var(--gris-grafito);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.snq-cotizador-page .mil-content,
body.snq-cotizador-page .mil-main-transition {
  background: #F6F8F6 !important;
}

.snq-cotizador-wrap {
  background: #F6F8F6;
  overflow: visible;
}

.snq-cotizador h1,
.snq-cotizador h2,
.snq-cotizador h3,
.snq-cotizador h4 {
  font-family: Poppins, "Segoe UI", system-ui, sans-serif;
  margin: 0;
  color: var(--azul-petroleo);
  letter-spacing: -.01em;
}

.snq-cotizador p { margin: 0; }
.snq-cotizador button { font-family: inherit; }
.snq-cotizador :focus-visible {
  outline: 3px solid var(--verde-synariq);
  outline-offset: 2px;
  border-radius: 6px;
}

.snq-cotizador .mono {
  font-family: var(--serif-mono);
  font-variant-numeric: tabular-nums;
}

.snq-cotizador .crumbs {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gris-texto);
}

.snq-cotizador .crumbs a { color: inherit; text-decoration: none; }
.snq-cotizador .crumbs a:hover { color: var(--verde-synariq); }

.snq-cotizador .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.snq-cotizador .brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.snq-cotizador .wordmark {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--azul-petroleo);
}

.snq-cotizador .wordmark span { color: var(--verde-synariq); }

.snq-cotizador .tagline {
  font-size: 12px;
  color: var(--gris-texto);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-left: 1px solid var(--gris-linea);
  padding-left: 10px;
}

.snq-cotizador .reset-btn,
.snq-cotizador .pdf-btn {
  background: var(--azul-petroleo);
  border: 1px solid var(--azul-petroleo);
  color: var(--lima-suave);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  transition: background var(--transicion), border-color var(--transicion), color var(--transicion), transform var(--transicion);
}

.snq-cotizador .reset-btn:hover,
.snq-cotizador .pdf-btn:hover {
  background: var(--verde-synariq);
  border-color: var(--verde-synariq);
  color: #fff;
  transform: translateY(-1px);
}

.snq-cotizador .top-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.snq-cotizador .tracker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.snq-cotizador .tracker {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  padding-bottom: 4px;
}

.snq-cotizador .tracker-step {
  flex: 1 1 0;
  min-width: 88px;
  position: relative;
  text-align: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.snq-cotizador .tracker-step[disabled] {
  cursor: default;
  opacity: .7;
}

.snq-cotizador .tracker-step.is-clickable:hover .tracker-dot {
  transform: scale(1.08);
}

.snq-cotizador .tracker-line {
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--gris-linea);
  z-index: 0;
}

.snq-cotizador .tracker-step:first-child .tracker-line { display: none; }
.snq-cotizador .tracker-step.done .tracker-line,
.snq-cotizador .tracker-step.active .tracker-line { background: var(--verde-synariq); }

.snq-cotizador .tracker-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blanco);
  border: 2px solid var(--gris-linea);
  color: var(--gris-texto);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  transition: all var(--transicion);
}

.snq-cotizador .tracker-step.active .tracker-dot {
  border-color: var(--verde-synariq);
  background: var(--verde-synariq);
  color: var(--blanco);
  box-shadow: 0 0 0 5px var(--lima-suave-40);
}

.snq-cotizador .tracker-step.done .tracker-dot {
  border-color: var(--verde-synariq);
  background: var(--lima-suave);
  color: var(--azul-petroleo);
}

.snq-cotizador .tracker-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gris-texto);
  line-height: 1.3;
}

.snq-cotizador .tracker-step.active .tracker-label { color: var(--azul-petroleo); }

.snq-cotizador .step-panel { display: none; }
.snq-cotizador .step-panel.active {
  display: block;
  animation: snqCotFade .35s ease both;
}

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

.snq-cotizador .panel-head { max-width: 680px; margin-bottom: 28px; }
.snq-cotizador .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--verde-synariq);
  margin-bottom: 10px;
}
.snq-cotizador .panel-head h2 { font-size: 28px; margin-bottom: 10px; }
.snq-cotizador .panel-head h2 span { color: var(--verde-synariq); }
.snq-cotizador .panel-head .lead { color: var(--gris-texto); font-size: 15.5px; }

.snq-cotizador .welcome-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.snq-cotizador .hero-card {
  background: var(--azul-petroleo);
  color: var(--blanco);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.snq-cotizador .hero-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lima-suave) 0%, transparent 70%);
  opacity: .35;
}

.snq-cotizador .hero-card .kicker {
  color: var(--lima-suave);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.snq-cotizador .hero-card h1 {
  color: var(--blanco);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 440px;
}

.snq-cotizador .hero-card p,
.snq-cotizador .hero-lead {
  color: #C9D6D2;
  max-width: 480px;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.6;
}

.snq-cotizador .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.snq-cotizador .hero-pills li {
  background: rgba(214, 245, 153, .14);
  color: var(--lima-suave);
  border: 1px solid rgba(214, 245, 153, .28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.snq-cotizador .hero-cta {
  background: var(--lima-suave);
  color: var(--azul-petroleo);
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  transition: transform var(--transicion), box-shadow var(--transicion);
}

.snq-cotizador .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 245, 153, .3);
}

.snq-cotizador .info-col { display: flex; flex-direction: column; gap: 14px; }

.snq-cotizador .info-mini-card {
  background: var(--blanco);
  border: 1px solid var(--gris-linea);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--sombra);
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: transform var(--transicion), box-shadow var(--transicion), border-color var(--transicion);
}

.snq-cotizador .info-mini-card[data-cot-start] {
  cursor: pointer;
}

.snq-cotizador .info-mini-card[data-cot-start]:hover,
.snq-cotizador .info-mini-card.is-static:hover {
  transform: translateY(-3px);
  border-color: var(--verde-synariq);
  box-shadow: var(--sombra-fuerte);
}

.snq-cotizador .info-mini-card .num {
  font-family: var(--serif-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--verde-synariq);
  background: var(--verde-suave);
  border-radius: 8px;
  padding: 4px 8px;
  flex-shrink: 0;
}

.snq-cotizador .info-mini-card h4 { font-size: 14.5px; margin-bottom: 4px; }
.snq-cotizador .info-mini-card p { font-size: 13.5px; color: var(--gris-texto); }

.snq-cotizador .card {
  background: var(--blanco);
  border: 1px solid var(--gris-linea);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}

.snq-cotizador .dimension-block { margin-bottom: 34px; }
.snq-cotizador .dimension-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px 18px;
  background: var(--azul-petroleo);
  border-radius: 16px;
  box-shadow: var(--sombra-fuerte);
}
.snq-cotizador .dimension-title .chip {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-mono);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(214, 245, 153, .18);
}
.snq-cotizador .dimension-title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
}
.snq-cotizador .dimension-title .dim-kicker,
.snq-cotizador .dimension-title .sub {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lima-suave);
  margin-bottom: 4px;
}

.snq-cotizador .question {
  margin-bottom: 16px;
  padding: 18px 20px 20px;
  border: 1px solid var(--gris-linea);
  border-radius: 16px;
  background: var(--blanco);
  box-shadow: var(--sombra);
}

.snq-cotizador .question p.qtext {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--azul-petroleo);
  margin-bottom: 16px;
  line-height: 1.4;
  padding: 12px 14px;
  background: #eef6f0;
  border-radius: 12px;
}
.snq-cotizador .q-index {
  flex-shrink: 0;
  font-family: var(--serif-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--verde-synariq);
  background: #fff;
  border: 1px solid #cfe9d6;
  border-radius: 8px;
  padding: 4px 7px;
  margin-top: 1px;
}

.snq-cotizador .options { display: grid; gap: 10px; }

.snq-cotizador .option-btn {
  text-align: left;
  border: 1.5px solid var(--gris-linea);
  background: var(--blanco);
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--azul-petroleo);
  transition: all var(--transicion);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.snq-cotizador .opt-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gris-linea);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-mono);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--verde-synariq);
  background: #f7faf8;
}

.snq-cotizador .opt-label { flex: 1; font-weight: 600; }
.snq-cotizador .opt-switch {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: #dce3df;
  position: relative;
  flex-shrink: 0;
  transition: background var(--transicion);
}
.snq-cotizador .opt-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(26, 46, 53, .2);
  transition: transform var(--transicion);
}

.snq-cotizador .option-btn:hover {
  border-color: var(--verde-synariq);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 46, 53, .08);
}
.snq-cotizador .option-btn.selected {
  border-color: var(--verde-synariq);
  background: linear-gradient(180deg, #f4fbe8 0%, var(--verde-suave) 100%);
  color: var(--azul-petroleo);
  box-shadow: 0 0 0 3px rgba(12, 107, 65, .12), 0 10px 22px rgba(12, 107, 65, .12);
}
.snq-cotizador .option-btn.selected .opt-letter {
  background: var(--verde-synariq);
  color: #fff;
  border-color: var(--verde-synariq);
}
.snq-cotizador .option-btn.selected .opt-switch { background: var(--verde-synariq); }
.snq-cotizador .option-btn.selected .opt-switch::after { transform: translateX(18px); }

.snq-cotizador .step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
  flex-wrap: wrap;
}

.snq-cotizador .btn {
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform var(--transicion), box-shadow var(--transicion), opacity var(--transicion);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.snq-cotizador .btn-primary { background: var(--verde-synariq); color: #fff; }
.snq-cotizador .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(12, 107, 65, .25);
}
.snq-cotizador .btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.snq-cotizador .btn-ghost {
  background: none;
  color: var(--gris-texto);
  border: 1px solid var(--gris-linea);
}
.snq-cotizador .btn-ghost:hover {
  border-color: var(--azul-petroleo);
  color: var(--azul-petroleo);
}
.snq-cotizador .progress-hint { font-size: 12.5px; color: var(--gris-texto); }

.snq-cotizador .dim-summary { display: grid; gap: 14px; margin-bottom: 34px; }
.snq-cotizador .dim-card {
  padding: 16px 18px;
  border: 1px solid var(--gris-linea);
  border-radius: 14px;
  background: var(--blanco);
}
.snq-cotizador .dim-card h4 {
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.snq-cotizador .dim-bar {
  height: 8px;
  border-radius: 99px;
  background: var(--gris-linea);
  overflow: hidden;
  margin-bottom: 8px;
}
.snq-cotizador .dim-bar-fill { height: 100%; border-radius: 99px; background: var(--verde-synariq); }
.snq-cotizador .dim-verdict { font-size: 12.5px; color: var(--gris-texto); }

.snq-cotizador .timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.snq-cotizador .tl-node {
  position: relative;
  border-radius: 16px;
  padding: 16px 16px 18px;
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  opacity: .78;
  transition: transform var(--transicion), box-shadow var(--transicion), opacity var(--transicion), border-color var(--transicion);
}
.snq-cotizador .tl-node.is-on,
.snq-cotizador .tl-node.recommended.is-on {
  opacity: 1;
  transform: translateY(-6px);
  border-color: var(--lima-suave);
  box-shadow: 0 0 0 3px rgba(214, 245, 153, .45), var(--sombra-fuerte);
}
.snq-cotizador .tl-node:hover { opacity: 1; transform: translateY(-4px); }
.snq-cotizador .tl-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  min-height: 24px;
}
.snq-cotizador .tl-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--lima-suave);
  color: var(--azul-petroleo);
  font-size: 11px;
  font-weight: 800;
  font-style: normal;
  flex-shrink: 0;
}
.snq-cotizador .tl-hint {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  opacity: .9;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.snq-cotizador .tl-node .tl-fase {
  font-family: var(--serif-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .95;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}
.snq-cotizador .tl-node h4 { color: #fff; font-size: 15px; margin-bottom: 10px; line-height: 1.25; }
.snq-cotizador .tl-node .tl-desc { font-size: 12.5px; opacity: .92; flex: 1; line-height: 1.45; }
.snq-cotizador .tl-node .tl-badge {
  background: var(--lima-suave);
  color: var(--azul-petroleo);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.snq-cotizador .tl-node.recommended:not(.is-on) {
  opacity: .88;
}
.snq-cotizador .tl-node.is-light {
  color: var(--azul-petroleo);
}
.snq-cotizador .tl-node.is-light h4 { color: var(--azul-petroleo); }
.snq-cotizador .tl-node.is-light .tl-desc {
  color: #1A2E35;
  opacity: .88;
}
.snq-cotizador .tl-node.is-light .tl-hint {
  color: #1A2E35;
  border-top-color: rgba(26, 46, 53, .2);
}
.snq-cotizador .tl-node.is-light .tl-check {
  background: var(--azul-petroleo);
  color: var(--lima-suave);
}
.snq-cotizador .tl-node.is-light .tl-badge {
  background: var(--azul-petroleo);
  color: var(--lima-suave);
}
.snq-cotizador .tl-node.is-light.is-on {
  border-color: var(--azul-petroleo);
  box-shadow: 0 0 0 3px rgba(26, 46, 53, .18), var(--sombra-fuerte);
}

.snq-cotizador .recommend-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A2E35 0%, #0C6B41 100%);
  color: #fff;
  border: 0;
  border-radius: 18px;
  padding: 22px 26px 22px 26px;
  margin-bottom: 28px;
  box-shadow: var(--sombra-fuerte);
}
.snq-cotizador .recommend-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,245,153,.35) 0%, transparent 70%);
  pointer-events: none;
}
.snq-cotizador .recommend-banner .rec-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lima-suave);
  margin-bottom: 8px;
}
.snq-cotizador .recommend-banner h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.snq-cotizador .recommend-banner p {
  font-size: 14.5px;
  color: #D5E4DF;
  max-width: 720px;
  position: relative;
  z-index: 1;
  line-height: 1.55;
}

.snq-cotizador .phase-toggle-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.snq-cotizador .phase-toggle {
  border: 1.5px solid var(--gris-linea);
  background: var(--blanco);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gris-texto);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.snq-cotizador .phase-toggle input { accent-color: var(--verde-synariq); }
.snq-cotizador .phase-toggle.on {
  border-color: var(--verde-synariq);
  background: var(--verde-suave);
  color: var(--azul-petroleo);
}
.snq-cotizador .phase-toggle .tag-rec {
  font-size: 9.5px;
  background: var(--lima-suave);
  color: var(--azul-petroleo);
  padding: 1px 6px;
  border-radius: 99px;
  font-weight: 700;
}

.snq-cotizador .builder-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.snq-cotizador .unit-block { margin-bottom: 32px; }
.snq-cotizador .unit-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--azul-petroleo) 0%, #0C6B41 100%);
  border: 0;
  border-radius: 16px;
  box-shadow: var(--sombra-fuerte);
}
.snq-cotizador .unit-head .swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lima-suave);
  box-shadow: 0 0 0 6px rgba(214, 245, 153, .22);
  flex-shrink: 0;
}
.snq-cotizador .unit-head-text { min-width: 0; }
.snq-cotizador .unit-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lima-suave);
  margin-bottom: 4px;
}
.snq-cotizador .unit-head h3 {
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
}
.snq-cotizador .line-block { margin-bottom: 22px; }
.snq-cotizador .line-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px 16px;
  background: #eef6f0;
  border: 1px solid #cfe9d6;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.snq-cotizador .line-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--azul-petroleo);
  line-height: 1.3;
}
.snq-cotizador .line-count {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--verde-synariq);
  background: #fff;
  border: 1px solid #cfe9d6;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.snq-cotizador .service-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  border: 1.5px solid var(--gris-linea);
  border-radius: 16px;
  margin-bottom: 10px;
  background: var(--blanco);
  transition: all var(--transicion);
  cursor: pointer;
  position: relative;
}
.snq-cotizador .service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: transparent;
  transition: background var(--transicion);
}
.snq-cotizador .service-row:hover {
  border-color: var(--verde-synariq);
  box-shadow: 0 12px 28px rgba(26, 46, 53, .1);
  transform: translateY(-2px);
}
.snq-cotizador .service-row.checked {
  border-color: var(--verde-synariq);
  background: linear-gradient(180deg, #f7fcec 0%, var(--verde-suave) 100%);
  box-shadow: 0 0 0 3px rgba(12, 107, 65, .12), 0 10px 22px rgba(12, 107, 65, .1);
}
.snq-cotizador .service-row.checked::before { background: var(--lima-suave); }
.snq-cotizador .s-check {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.snq-cotizador .s-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.snq-cotizador .s-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #c5d0cb;
  background: #fff;
  display: grid;
  place-items: center;
  transition: all var(--transicion);
}
.snq-cotizador .s-toggle::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2.4px solid #fff;
  border-bottom: 2.4px solid #fff;
  transform: rotate(-45deg) scale(0);
  margin-top: -2px;
  transition: transform .2s cubic-bezier(.4, 0, .2, 1);
}
.snq-cotizador .service-row.checked .s-toggle {
  background: var(--verde-synariq);
  border-color: var(--verde-synariq);
  box-shadow: 0 0 0 4px rgba(12, 107, 65, .16);
}
.snq-cotizador .service-row.checked .s-toggle::after {
  transform: rotate(-45deg) scale(1);
}
.snq-cotizador .s-body { flex: 1; min-width: 0; }
.snq-cotizador .s-name { font-weight: 700; font-size: 14.5px; color: var(--azul-petroleo); }
.snq-cotizador .s-meta {
  font-size: 12.5px;
  color: #2f463d;
  margin-top: 4px;
  font-weight: 600;
}
.snq-cotizador .s-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  width: auto;
  border-radius: 10px;
  border: 1px solid var(--gris-linea);
  background: #fff;
  color: var(--azul-petroleo);
  cursor: pointer;
  flex-shrink: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: border-color var(--transicion), background var(--transicion), color var(--transicion), transform var(--transicion);
}
.snq-cotizador .s-info svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.snq-cotizador .s-info:hover {
  border-color: var(--verde-synariq);
  background: var(--verde-suave);
  color: var(--verde-synariq);
  transform: translateY(-1px);
}

.snq-cotizador .sidebar {
  position: sticky;
  top: 88px;
  background: var(--azul-petroleo);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--sombra-fuerte);
}
.snq-cotizador .sidebar h3 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.snq-cotizador .sidebar .sub { font-size: 12px; color: #9FB4AE; margin-bottom: 18px; }
.snq-cotizador .cart-empty { font-size: 13px; color: #B7C6C1; padding: 20px 0; text-align: center; }
.snq-cotizador .cart-list { max-height: 260px; overflow-y: auto; margin-bottom: 16px; }
.snq-cotizador .cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.snq-cotizador .cart-item .ci-name { color: #E4ECE8; }
.snq-cotizador .ci-remove {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.snq-cotizador .ci-remove:hover { background: rgba(255,255,255,.18); }
.snq-cotizador .cart-totals { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 14px; }
.snq-cotizador .cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.snq-cotizador .cart-total-row .label { font-size: 12.5px; color: #B7C6C1; }
.snq-cotizador .cart-total-row .value {
  font-family: var(--serif-mono);
  font-weight: 600;
  font-size: 17px;
  color: var(--lima-suave);
}
.snq-cotizador .cart-total-row.recurring .value { font-size: 14px; color: #E4ECE8; }
.snq-cotizador .sidebar-cta {
  width: 100%;
  margin-top: 16px;
  background: var(--lima-suave);
  color: var(--azul-petroleo);
  border: none;
  padding: 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.snq-cotizador .sidebar-cta:hover:not(:disabled) { transform: translateY(-2px); }
.snq-cotizador .sidebar-cta:disabled { opacity: .35; cursor: not-allowed; }

.snq-cotizador .contact-card {
  background: var(--blanco);
  border: 1px solid var(--gris-linea);
  border-radius: 22px;
  padding: 0;
  box-shadow: var(--sombra-fuerte);
  margin-top: 28px;
  overflow: hidden;
}
.snq-cotizador .contact-card-head {
  position: relative;
  overflow: hidden;
  margin: 0;
  max-width: none;
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, #1A2E35 0%, #0C6B41 100%);
  color: #fff;
}
.snq-cotizador .contact-card-head::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,245,153,.35) 0%, transparent 70%);
  pointer-events: none;
}
.snq-cotizador .contact-card-head .eyebrow {
  color: var(--lima-suave);
  margin-bottom: 8px;
}
.snq-cotizador .contact-card-head h3 {
  font-size: 26px;
  margin: 0 0 8px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.snq-cotizador .contact-card-head p {
  color: #D5E4DF;
  font-size: 14.5px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.snq-cotizador .contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.snq-cotizador .contact-pills li {
  background: rgba(214, 245, 153, .14);
  color: var(--lima-suave);
  border: 1px solid rgba(214, 245, 153, .28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}
.snq-cotizador .contact-card-body {
  padding: 24px 28px 22px;
  background: linear-gradient(180deg, #f6faf7 0%, #fff 80px);
}
.snq-cotizador .contact-section { margin-bottom: 22px; }
.snq-cotizador .contact-section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--verde-synariq);
  background: var(--verde-suave);
  border: 1px solid #cfe9d6;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.snq-cotizador .client-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}
.snq-cotizador .field { display: flex; flex-direction: column; gap: 6px; }
.snq-cotizador .field.full { grid-column: 1 / -1; }
.snq-cotizador .field label { font-size: 12.5px; font-weight: 700; color: var(--azul-petroleo); }
.snq-cotizador .field input,
.snq-cotizador .field textarea,
.snq-cotizador .field select {
  border: 1.5px solid #d5e0da;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--gris-grafito);
  background: #fff;
  text-transform: none;
  letter-spacing: 0;
  height: auto;
  box-shadow: 0 1px 2px rgba(26, 46, 53, .04);
  transition: border-color var(--transicion), background var(--transicion), box-shadow var(--transicion);
}
.snq-cotizador .field textarea {
  min-height: 130px;
  resize: vertical;
}
.snq-cotizador .field input::placeholder,
.snq-cotizador .field textarea::placeholder,
.snq-cotizador .field input::-webkit-input-placeholder,
.snq-cotizador .field textarea::-webkit-input-placeholder,
.snq-cotizador .field input::-moz-placeholder,
.snq-cotizador .field textarea::-moz-placeholder {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #8a9590 !important;
}
.snq-cotizador .field input:focus,
.snq-cotizador .field textarea:focus,
.snq-cotizador .field select:focus {
  border-color: var(--verde-synariq);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(12, 107, 65, .12);
}
.snq-cotizador .field input.is-invalid,
.snq-cotizador .field textarea.is-invalid {
  border-color: #c45b45;
  background: #fff6f4;
}
.snq-cotizador .field-error {
  font-size: 12px;
  color: #b3452c;
  font-weight: 600;
}

.snq-cotizador .envio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.snq-cotizador .envio-opt {
  border: 1.5px solid #d5e0da;
  border-radius: 16px;
  padding: 16px 14px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  min-width: 0;
  justify-content: flex-start;
  transition: all var(--transicion);
  box-shadow: 0 1px 2px rgba(26, 46, 53, .04);
}
.snq-cotizador .envio-opt input { position: absolute; opacity: 0; pointer-events: none; }
.snq-cotizador .envio-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef6f0;
  color: var(--verde-synariq);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.snq-cotizador .envio-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.snq-cotizador .envio-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.snq-cotizador .envio-copy strong {
  font-size: 14.5px;
  color: var(--azul-petroleo);
}
.snq-cotizador .envio-copy small {
  font-size: 12px;
  font-weight: 500;
  color: #3d534a;
}
.snq-cotizador .envio-opt:hover {
  border-color: var(--verde-synariq);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 46, 53, .08);
}
.snq-cotizador .envio-opt:has(input:checked) {
  border-color: var(--verde-synariq);
  background: linear-gradient(180deg, #f7fcec 0%, var(--verde-suave) 100%);
  color: var(--azul-petroleo);
  box-shadow: 0 0 0 3px rgba(12, 107, 65, .12);
}
.snq-cotizador .envio-opt:has(input:checked) .envio-ico {
  background: var(--lima-suave);
  color: var(--azul-petroleo);
}

.snq-cotizador .contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 18px;
  background: var(--azul-petroleo);
  border-radius: 16px;
}
.snq-cotizador .contact-foot-hint {
  color: #D5E4DF;
  font-size: 13px;
  max-width: 340px;
  margin: 0;
  line-height: 1.45;
}
.snq-cotizador .contact-footer .final-actions { margin-top: 0; }
.snq-cotizador .contact-footer .btn-ghost {
  color: #E4ECE8;
  border-color: rgba(255,255,255,.22);
}
.snq-cotizador .contact-footer .btn-ghost:hover {
  border-color: var(--lima-suave);
  color: var(--lima-suave);
}
.snq-cotizador .contact-footer .btn-primary {
  background: var(--lima-suave);
  color: var(--azul-petroleo);
}
.snq-cotizador .contact-footer .btn-primary:hover:not(:disabled) {
  box-shadow: 0 10px 20px rgba(214, 245, 153, .28);
}

.snq-cotizador .summary-phase {
  margin-bottom: 22px;
  border: 1px solid var(--gris-linea);
  border-radius: 14px;
  overflow: hidden;
}
.snq-cotizador .summary-phase-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  color: #fff;
}
.snq-cotizador .summary-phase-head h4 { color: #fff; font-size: 14.5px; }
.snq-cotizador .summary-phase-head .ph-sub { font-size: 12px; opacity: .85; margin-top: 2px; }
.snq-cotizador .summary-phase-head .ph-total {
  font-family: var(--serif-mono);
  font-weight: 700;
  font-size: 16px;
}
.snq-cotizador .summary-rows { padding: 6px 20px; background: #fff; }
.snq-cotizador .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--gris-linea);
  font-size: 13.5px;
  transition: background .2s ease;
}
.snq-cotizador .summary-row:hover { background: #f7faf8; }
.snq-cotizador .summary-row:last-child { border-bottom: none; }
.snq-cotizador .sr-name { font-weight: 650; color: var(--azul-petroleo); }
.snq-cotizador .sr-unit { font-size: 12.5px; color: #2f463d; margin-top: 4px; font-weight: 600; }
.snq-cotizador .sr-price {
  font-family: var(--serif-mono);
  font-weight: 600;
  color: var(--azul-petroleo);
  white-space: nowrap;
}

.snq-cotizador .grand-total {
  background: var(--azul-petroleo);
  color: #fff;
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.snq-cotizador .gt-label { font-size: 13px; color: #B7C6C1; margin-bottom: 4px; }
.snq-cotizador .gt-value {
  font-family: var(--serif-mono);
  font-weight: 700;
  font-size: 30px;
  color: var(--lima-suave);
}
.snq-cotizador .gt-rec { font-size: 12.5px; color: #E4ECE8; margin-top: 6px; }
.snq-cotizador .disclaimer { font-size: 12px; color: var(--gris-texto); margin-top: 18px; line-height: 1.6; }
.snq-cotizador .final-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

.snq-cotizador .success-box {
  background: var(--verde-suave);
  border: 1px solid #cfe9d6;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.snq-cotizador .success-box h3 { margin-bottom: 8px; }
.snq-cotizador .success-box p { color: var(--gris-texto); }

.snq-cotizador .form-error {
  background: #fde8e4;
  color: #8a2f1d;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}

.snq-cot-reset-dialog {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.snq-cot-reset-dialog[hidden] { display: none !important; }
.snq-cot-reset-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 53, .55);
  backdrop-filter: blur(4px);
}
.snq-cot-reset-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px 22px;
  box-shadow: 0 24px 60px rgba(26, 46, 53, .28);
}
.snq-cot-reset-panel h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--azul-petroleo, #1A2E35);
}
.snq-cot-reset-panel p {
  color: var(--gris-texto, #4B5563);
  font-size: 14.5px;
  margin: 0 0 22px;
  line-height: 1.55;
}
.snq-cot-reset-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .snq-cotizador .options { grid-template-columns: repeat(3, 1fr); }
  .snq-cotizador .dim-summary { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1200px) {
  .snq-cotizador-wrap { padding-top: 100px; }
}

@media (max-width: 960px) {
  .snq-cotizador .builder-grid { grid-template-columns: 1fr; }
  .snq-cotizador .sidebar { position: static; }
}

@media (max-width: 860px) {
  .snq-cotizador .welcome-grid,
  .snq-cotizador .timeline { grid-template-columns: 1fr; }
  .snq-cotizador .tl-node { min-height: 0; }
  .snq-cotizador .tracker-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--gris-linea);
    border-radius: 16px;
    padding: 14px 12px 12px;
    box-shadow: var(--sombra);
  }
  .snq-cotizador .tracker {
    overflow: visible;
    width: 100%;
    padding-bottom: 0;
  }
  .snq-cotizador .tracker-step { min-width: 0; }
  .snq-cotizador .tracker-dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .snq-cotizador .tracker-line { top: 13px; }
  .snq-cotizador .tracker-label { font-size: 10.5px; }
  .snq-cotizador .reset-btn {
    width: 100%;
    padding: 12px 16px;
  }
}

@media (max-width: 760px) {
  .snq-cotizador { padding: 18px 16px 64px; }
  .snq-cotizador .hero-card h1 { font-size: 26px; }
  .snq-cotizador .panel-head h2 { font-size: 22px; }
  .snq-cotizador .client-form { grid-template-columns: 1fr; }
  .snq-cotizador .contact-card-head,
  .snq-cotizador .contact-card-body { padding: 20px 16px 16px; }
  .snq-cotizador .envio-row { grid-template-columns: 1fr; }
  .snq-cotizador .envio-opt { flex-direction: row; align-items: center; }
  .snq-cotizador .contact-footer { padding: 14px; }
  .snq-cotizador .s-info span { display: none; }
  .snq-cotizador .s-info { width: 36px; padding: 0; }
  .snq-cotizador .unit-head { padding: 14px 14px; }
  .snq-cotizador .unit-head h3 { font-size: 16px; }
}
