/* ========================
   OUTSOURCING EXPLORER
   ======================== */
.explorer {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 32px rgba(10,36,99,.10);
  overflow: hidden;
}

.explorer__progress {
  height: 4px;
  background: var(--light);
}

.explorer__progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width .4s ease;
}

.explorer__step {
  display: none;
  padding: 40px;
}

.explorer__step.active { display: block; }

.explorer__step h4 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--navy);
  margin-bottom: 8px;
}

.explorer__step-hint {
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 28px;
}

.explorer__options--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.explorer__options--row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.explorer__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 2px solid rgba(10,36,99,.12);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.explorer__options--row .explorer__option {
  flex: 1;
  min-width: 90px;
  flex-direction: row;
  justify-content: center;
  padding: 14px 20px;
}

.explorer__option i { color: var(--gold); flex-shrink: 0; }
.explorer__option small { font-size: 12px; font-weight: 400; color: var(--text-sec); }

.explorer__option:hover,
.explorer__option:focus-visible {
  border-color: var(--gold);
  background: rgba(252,209,22,.06);
  transform: translateY(-2px);
  outline: none;
}

.explorer__option.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.explorer__option.selected i { color: var(--gold); }
.explorer__option.selected small { color: rgba(255,255,255,.65); }

.explorer__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
}

.explorer__result { padding: 40px; display: flex; gap: 32px; align-items: flex-start; }
.explorer__result[hidden] { display: none; }

.explorer__result-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.explorer__result-num {
  font-family: var(--font-accent);
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}

.explorer__result-label {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.3;
  margin-top: 4px;
}

.explorer__result-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.explorer__result-body > p { color: var(--text-sec); margin-bottom: 16px; font-size: 15px; }

.explorer__result-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.explorer__result-features li {
  font-size: 14px;
  color: var(--text-pri);
  padding: 5px 0 5px 22px;
  position: relative;
}

.explorer__result-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.explorer__result-costs {
  background: var(--light);
  border-radius: 10px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.explorer__cost-item { text-align: center; }

.explorer__cost-label {
  display: block;
  font-size: 11px;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.explorer__cost-val {
  font-family: var(--font-accent);
  font-size: 20px;
  display: block;
}

.explorer__cost-val--corp { color: var(--navy); }
.explorer__cost-val--inhouse { color: var(--text-sec); text-decoration: line-through; opacity: .7; }
.explorer__cost-val--saving { color: var(--green); }
.explorer__cost-item--saving .explorer__cost-label { color: var(--green); }

.explorer__region-note {
  font-size: 12px;
  color: var(--text-sec);
  margin-bottom: 20px;
}

.explorer__result-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.explorer__restart {
  background: none;
  border: none;
  color: var(--text-sec);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font-body);
}

.explorer__restart:hover { color: var(--navy); }

/* ========================
   IMAGE SLOTS
   ======================== */
.img-slot {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(252,209,22,.25);
}

.img-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(252,209,22,.03) 20px,
    rgba(252,209,22,.03) 40px
  );
  pointer-events: none;
}

.img-slot svg {
  color: var(--gold);
  opacity: .5;
  position: relative;
  z-index: 1;
}

.img-slot__label {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  position: relative;
  z-index: 1;
}

.img-slot--portrait { aspect-ratio: 4/5; }
.img-slot--tall     { aspect-ratio: 3/4; }
.img-slot--square   { aspect-ratio: 1/1; }
.img-slot--wide     { aspect-ratio: 21/9; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 640px) {
  .explorer__step,
  .explorer__nav,
  .explorer__result  { padding: 24px; }

  .explorer__result  { flex-direction: column; align-items: center; text-align: center; }

  .explorer__result-features li { text-align: left; }

  .explorer__result-costs { grid-template-columns: 1fr; gap: 12px; }

  .explorer__options--grid { grid-template-columns: 1fr 1fr; }

  .explorer__result-ctas { flex-direction: column; }
}
