/* Page skins, wayfinder, form assist — keep brand, vary the journey */

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 400;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 0.75rem; color: #fff; }

.rx-goto {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.rx-goto::-webkit-scrollbar { display: none; }
.rx-goto-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.55;
  white-space: nowrap;
  margin-right: 0.35rem;
}
.rx-goto a {
  flex: 0 0 auto;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}
.rx-goto a:hover { background: rgba(255,255,255,.16); color: #fff; }
.rx-goto a.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Form helpers */
.rx-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.rx-assist-label {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0.35rem 0 0.45rem;
  color: var(--ink);
}
.rx-assist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.rx-assist-chips button,
.rx-assist-chips a,
.rx-purpose button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
}
.rx-assist-chips button:hover,
.rx-assist-chips a:hover,
.rx-purpose button:hover,
.rx-assist-chips button.is-on,
.rx-purpose button.is-on {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--ink);
}
.rx-purpose {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}
.rx-field-block {
  padding: 1rem 1.05rem 0.3rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--paper-2) 55%, #fff);
}
.rx-field-block h3 {
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.rx-field-block p {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

/* Booking wizard essentials */
.bk-wizard-step { display: none; }
.bk-wizard-step.is-active { display: block; }
.bk-is-hidden { display: none !important; }
.bk-stepper {
  position: relative;
  max-width: 28rem;
  margin: 0 auto 1rem;
  padding-top: 0.2rem;
}
.bk-stepper-rail {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 1rem;
  height: 3px;
  background: var(--paper-2);
  border-radius: 99px;
  overflow: hidden;
}
.bk-stepper-rail-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.35s ease;
}
.bk-stepper-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
  z-index: 1;
}
.bk-stepper-step { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; flex: 1; }
.bk-stepper-marker {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 0.8rem;
}
.bk-stepper-check { display: none; }
.bk-stepper-step.is-active .bk-stepper-marker {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.bk-stepper-step.is-done .bk-stepper-marker {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.bk-stepper-step.is-done .bk-stepper-num { display: none; }
.bk-stepper-step.is-done .bk-stepper-check { display: flex; }
.bk-stepper-name { font-size: 0.75rem; font-weight: 700; }
.bk-stepper-hint { display: none; }
.bk-wizard-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.bk-wizard-actions-main { flex: 1; }
.bk-btn-next, .bk-submit {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.bk-btn-next:hover, .bk-submit:hover { background: var(--accent-dark); color: #fff; }
.bk-field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.bk-step-head { margin-bottom: 1rem; }
.bk-step-lead, .bk-hint, .bk-char-count { font-size: 0.84rem; color: var(--muted); }
.bk-step-foot {
  margin-top: 0.8rem;
  padding: 0.75rem 0.9rem;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.88rem;
}
.bk-required, .ct-req { color: var(--accent); }
.bk-trust-list { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; list-style: none; }
.bk-parking-note, .bk-alert {
  display: flex;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  background: var(--paper-2);
  margin-top: 0.8rem;
  font-size: 0.88rem;
}
.bk-checkbox-wrapper { display: flex; gap: 0.55rem; align-items: flex-start; }
.bk-contact-list { list-style: none; }
.bk-contact-list li { display: flex; gap: 0.6rem; margin-bottom: 0.7rem; }
.bk-hours { width: 100%; }
.bk-hours td { padding: 0.2rem 0; }
.bk-hero-steps { list-style: none; display: grid; gap: 0.45rem; }
.bk-hero-steps li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  opacity: 0.55;
}
.bk-hero-steps li.is-active, .bk-hero-steps li.is-done { opacity: 1; }
.bk-hero-steps li span {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 800;
}
.bk-hero-steps li.is-active span,
.bk-hero-steps li.is-done span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Buy sticky filters */
.skin-buy .mp-filters {
  position: sticky;
  top: calc(var(--header-h) + 0.4rem);
  z-index: 40;
  box-shadow: 0 10px 30px rgba(22, 50, 74, 0.08);
}
.mp-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.4rem;
  color: var(--ink);
}
.mp-how article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mp-how b {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  margin-bottom: 0.15rem;
}
.mp-how span { color: var(--muted); font-size: 0.88rem; }

.skin-sell .sell-wizard-layout,
.skin-sell .sell-wizard-layout--simple {
  display: block;
  max-width: none;
}
.skin-sell .sell-wizard-aside { display: none; }
.sell-step-tip, .sell-form-trust { font-size: 0.84rem; color: var(--muted); margin-top: 0.8rem; }

/* Services directory */
.svc-filter { margin-bottom: 1.2rem; max-width: 28rem; }
.fw-sidebar { position: sticky; top: calc(var(--header-h) + 0.8rem); }

/* About timeline */
.about-timeline { list-style: none; }
.about-timeline li {
  padding: 0 0 1.4rem 1.2rem;
  border-left: 3px solid var(--accent);
  position: relative;
}
.about-timeline li::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -0.45rem;
  top: 0.25rem;
}

/* Contact: form-first */
.ct-main { padding: 2rem 0 4rem; }
.fw-pricing-box { max-width: none; }

/* Unlock IMEI card */
.unlock-imei-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
}
.unlock-imei-card code {
  display: inline-block;
  background: var(--paper-2);
  color: var(--accent);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-weight: 800;
}

/* Keep form/wizard helpers. Colour comes from dashboard tokens in main.css. */
.fw-sidebar { position: sticky; top: calc(var(--header-h) + 0.8rem); }

@media (max-width: 900px) {
  :root { --header-h: 5.4rem; }
  .bk-field-row-2, .mp-how { grid-template-columns: 1fr; }
  .fw-sidebar { position: static; }
}
