/* Service hub + Übergabeprotokoll — brand-aligned UI */

.sh-tools,
.sh-uep {
  font-family: var(--font-b);
  color: var(--text-b);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Section headers use .sh-section-header from home.css */
.sh-tools-journey .sh-section-header,
.sh-tools-tips .sh-section-header,
.sh-uep-tips .sh-section-header {
  margin-bottom: 48px;
}

.sh-tools-journey .sh-section-header h2,
.sh-tools-tips .sh-section-header h2,
.sh-uep-tips .sh-section-header h2 {
  font-weight: 400;
}

/* ---- Service cards ---- */
.sh-tools-cards {
  padding: 56px 0;
  background: var(--cream);
}

.sh-tools-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  max-width: 1040px;
  margin-inline: auto;
}

.sh-tools-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-b);
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, .06);
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(27, 42, 74, .05);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sh-tools-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--accent);
  opacity: .7;
  transition: opacity .3s ease, height .3s ease;
}

.sh-tools-card:hover,
.sh-tools-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(193, 154, 54, .28);
  box-shadow: 0 18px 40px rgba(27, 42, 74, .09);
  outline: none;
}

.sh-tools-card:hover::before,
.sh-tools-card:focus-visible::before {
  opacity: 1;
  height: 3px;
}

.sh-tools-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 32px 24px 4px;
  background: transparent;
  border-bottom: 0;
}

.sh-tools-card__index {
  position: absolute;
  top: 18px;
  inset-inline-end: 20px;
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  line-height: 1;
  opacity: .8;
}

.sh-tools-card__icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform .3s ease;
}

.sh-tools-card:hover .sh-tools-card__icon,
.sh-tools-card:focus-visible .sh-tools-card__icon {
  transform: scale(1.04);
  background: transparent;
  border-color: transparent;
}

.sh-tools-card__icon-img {
  display: block;
  width: 96px !important;
  height: 96px !important;
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
  object-position: center;
  border: 0 !important;
  outline: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.sh-tools-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 12px 32px 8px;
  text-align: center;
  align-items: center;
}

.sh-tools-card__title {
  margin: 0;
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-h);
}

.sh-tools-card__text {
  margin: 0;
  max-width: 36ch;
  font-family: var(--font-b);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-b);
}

.sh-tools-card__cta.sh-btn {
  margin: 24px auto 32px;
  min-width: 220px;
  justify-content: center;
}

.sh-tools-card:hover .sh-tools-card__cta.sh-btn--primary,
.sh-tools-card:focus-visible .sh-tools-card__cta.sh-btn--primary {
  background: var(--primary-dk);
  color: var(--white);
}

[dir="rtl"] .sh-tools-card__cta svg {
  transform: scaleX(-1);
}

/* ---- Journey ---- */
.sh-tools-journey {
  padding: 64px 0 72px;
  background: var(--white);
  border-top: 1px solid rgba(27, 42, 74, .06);
}

.sh-tools-journey__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 12px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 980px;
  margin-inline: auto;
}

.sh-tools-journey__item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 8px;
}

.sh-tools-journey__item--arrow {
  padding-top: 18px;
  align-self: start;
}

.sh-tools-journey__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sh-tools-journey__icon-img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
  border: 0;
  background: transparent;
}

.sh-tools-journey__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 36px;
}

.sh-tools-journey__arrow-img {
  display: block;
  width: 88px;
  height: 36px;
  object-fit: contain;
}

[dir="rtl"] .sh-tools-journey__arrow-img {
  transform: scaleX(-1);
}

.sh-tools-journey__item strong {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-h);
}

.sh-tools-journey__item p {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-b);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-b);
}

/* ---- Tips ---- */
.sh-tools-tips {
  padding: 20px 0 72px;
  background: var(--white);
}

.sh-tools-tips__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 1280px;
}

.sh-tools-tips__item {
  display: grid;
  grid-template-rows: 72px auto calc(1.65em * 2);
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 12px;
  padding: 8px 14px 12px;
  min-width: 0;
  position: relative;
}

.sh-tools-tips__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: 2px;
  background-color: var(--accent);
  opacity: .55;
  border-radius: 99px;
}

.sh-tools-tips__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}

.sh-tools-tips__icon-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.sh-tools-tips__item strong {
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-h);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sh-tools-tips__item p {
  margin: 0;
  width: 100%;
  max-width: 36ch;
  height: calc(1.65em * 2);
  font-family: var(--font-b);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-b);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ---- Übergabeprotokoll wizard ---- */
.sh-uep {
  background: var(--cream);
}

.sh-uep-hero {
  background: var(--white);
}

.sh-uep-hero .sh-service-hero__title {
  max-width: 20ch;
}

.sh-uep-body {
  position: relative;
  padding: 56px 0 64px;
  background: var(--cream);
  scroll-margin-top: calc(var(--sh-header-offset, 88px) + 8px);
}

.sh-uep-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 44px 48px;
  background: var(--white);
  border: 1px solid rgba(27, 42, 74, .07);
  border-radius: 0;
  box-shadow: 0 14px 42px rgba(27, 42, 74, .07);
  scroll-margin-top: calc(var(--sh-header-offset, 88px) + 64px);
}

/* Tips after the wizard — soft bridge into the footer */
.sh-uep-tips {
  padding: 56px 0 88px;
  border-top: 1px solid var(--border);
}

.sh-uep-progress {
  margin-bottom: 36px;
}

.sh-uep-progress__pill {
  display: inline-block;
  margin: 0 0 18px;
  padding: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.sh-uep-progress__steps {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 520px;
}

.sh-uep-progress__node {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 42, 74, .16);
  background: var(--white);
  color: var(--text-m);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.sh-uep-progress__node span {
  display: block;
}

.sh-uep-progress__node.is-active,
.sh-uep-progress__node.is-done {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.sh-uep-progress__seg {
  flex: 1 1 auto;
  height: 2px;
  margin-inline: 6px;
  background: rgba(27, 42, 74, .12);
  border-radius: 99px;
  transition: background-color .25s ease;
}

.sh-uep-progress__seg.is-done {
  background: var(--accent);
}

.sh-uep-stage {
  position: relative;
}

.sh-uep-panel {
  animation: sh-uep-in .18s ease;
}

.sh-uep-panel[hidden] {
  display: none !important;
}

@keyframes sh-uep-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sh-uep-panel__title {
  margin: 0 0 22px;
  font-family: var(--font-h);
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-h);
}

.sh-uep-panel__title--sub {
  margin-top: 8px;
  font-size: clamp(1.2rem, 2vw, 1.35rem);
}

.sh-uep-panel__hint {
  margin: -10px 0 22px;
  font-family: var(--font-b);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-b);
}

/* Property type cards */
.sh-uep-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

/* button[type] beats single-class selectors (Hello Elementor reset) */
.sh-uep-shell button.sh-uep-type__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 92px;
  padding: 18px 22px;
  border: 1.5px solid rgba(27, 42, 74, .12);
  border-radius: 0;
  background: var(--white);
  color: var(--text-h);
  cursor: pointer;
  font: inherit;
  text-align: start;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow: none;
}

.sh-uep-shell button.sh-uep-type__card:hover,
.sh-uep-shell button.sh-uep-type__card:focus,
.sh-uep-shell button.sh-uep-type__card:focus-visible {
  border-color: rgba(193, 154, 54, .45);
  background: var(--white);
  color: var(--text-h);
  outline: none;
  box-shadow: none;
}

.sh-uep-shell button.sh-uep-type__card[aria-pressed="true"],
.sh-uep-shell button.sh-uep-type__card[aria-pressed="true"]:hover,
.sh-uep-shell button.sh-uep-type__card[aria-pressed="true"]:focus {
  background: rgba(246, 241, 232, .85);
  border-color: var(--accent);
  color: var(--text-h);
  box-shadow: inset 0 0 0 1px rgba(193, 154, 54, .2);
}

.sh-uep-type__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(27, 42, 74, .06);
  color: var(--primary);
  flex-shrink: 0;
}

.sh-uep-type__icon svg {
  display: block;
}

.sh-uep-type__name {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-h);
}

.sh-uep-type__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 42, 74, .22);
  background: var(--white);
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s ease, background-color .2s ease;
}

.sh-uep-type__card[aria-pressed="true"] .sh-uep-type__radio {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--white);
}

.sh-uep-handover {
  margin-top: 4px;
}

.sh-uep-shell .sh-uep-handover button.sh-uep-type__card {
  grid-template-columns: 1fr auto;
  min-height: 72px;
}

/* Feature mini-cards */
.sh-uep-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.sh-uep-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1.5px solid rgba(27, 42, 74, .12);
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
  user-select: none;
}

.sh-uep-feature:hover {
  border-color: rgba(193, 154, 54, .4);
}

.sh-uep-feature:has(.sh-uep-feature__input:checked) {
  background: rgba(246, 241, 232, .9);
  border-color: var(--accent);
}

.sh-uep-feature__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.sh-uep-feature__box {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid rgba(27, 42, 74, .22);
  background: var(--white);
  color: transparent;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.sh-uep-feature__box svg {
  display: block;
  opacity: 0;
  transition: opacity .15s ease;
}

.sh-uep-feature:has(.sh-uep-feature__input:checked) .sh-uep-feature__box {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.sh-uep-feature:has(.sh-uep-feature__input:checked) .sh-uep-feature__box svg {
  opacity: 1;
}

.sh-uep-feature__text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-h);
  line-height: 1.3;
}

.sh-uep-feature[hidden] {
  display: none !important;
}

/* Room counters */
.sh-uep-rooms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.sh-uep-room {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1.5px solid rgba(27, 42, 74, .12);
  background: var(--white);
  transition: border-color .2s ease, background-color .2s ease;
}

.sh-uep-room:hover {
  border-color: rgba(193, 154, 54, .4);
}

.sh-uep-room__label {
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-h);
  line-height: 1.3;
}

.sh-uep-room__stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sh-uep-shell button.sh-uep-room__btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1.5px solid rgba(27, 42, 74, .18);
  border-radius: 0;
  background: var(--cream);
  color: var(--primary);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.sh-uep-shell button.sh-uep-room__btn:hover,
.sh-uep-shell button.sh-uep-room__btn:focus,
.sh-uep-shell button.sh-uep-room__btn:focus-visible {
  border-color: var(--accent);
  background: rgba(193, 154, 54, .12);
  color: var(--primary);
  outline: none;
  box-shadow: none;
}

.sh-uep-shell button.sh-uep-room__btn:disabled,
.sh-uep-shell button.sh-uep-room__btn:disabled:hover {
  opacity: .4;
  cursor: not-allowed;
  border-color: rgba(27, 42, 74, .12);
  background: var(--cream);
  color: var(--text-m);
  transform: none;
}

.sh-uep-room__value {
  min-width: 1.6ch;
  text-align: center;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sh-uep-step4 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 40px 48px;
  align-items: stretch;
  margin-bottom: 8px;
}

.sh-uep-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 560px;
  margin: 0;
  min-width: 0;
}

.sh-uep-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(165deg, rgba(246, 241, 232, .9) 0%, rgba(255, 255, 255, .55) 100%);
  border: 1px solid rgba(27, 42, 74, .07);
  min-height: 100%;
}

.sh-uep-aside__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin-bottom: 22px;
  color: var(--primary);
}

.sh-uep-aside__ring {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(193, 154, 54, .28);
  border-radius: 50%;
  animation: sh-uep-aside-spin 18s linear infinite;
}

.sh-uep-aside__ring--soft {
  inset: 0;
  border-color: rgba(27, 42, 74, .08);
  border-style: dashed;
  animation-duration: 28s;
  animation-direction: reverse;
}

.sh-uep-aside__house {
  position: relative;
  z-index: 1;
  animation: sh-uep-aside-float 5.5s ease-in-out infinite;
}

.sh-uep-aside__stroke {
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
  animation: sh-uep-aside-draw 7s ease-in-out infinite;
}

.sh-uep-aside__stroke--gold {
  animation-delay: .35s;
}

.sh-uep-aside__draft {
  animation: sh-uep-aside-breathe 4.5s ease-in-out infinite;
}

.sh-uep-aside__dot {
  animation: sh-uep-aside-pulse 3.2s ease-in-out infinite;
}

.sh-uep-aside__eyebrow {
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}

.sh-uep-aside__title {
  margin: 0 0 8px;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-h);
  line-height: 1.3;
}

.sh-uep-aside__text {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-b);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-b);
}

@keyframes sh-uep-aside-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes sh-uep-aside-spin {
  to { transform: rotate(360deg); }
}

@keyframes sh-uep-aside-draw {
  0%, 100% { stroke-dashoffset: 0; opacity: 1; }
  45% { stroke-dashoffset: 36; opacity: .85; }
  55% { stroke-dashoffset: 36; opacity: .85; }
}

@keyframes sh-uep-aside-breathe {
  0%, 100% { opacity: .28; }
  50% { opacity: .55; }
}

@keyframes sh-uep-aside-pulse {
  0%, 100% { opacity: .45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .sh-uep-aside__ring,
  .sh-uep-aside__house,
  .sh-uep-aside__stroke,
  .sh-uep-aside__draft,
  .sh-uep-aside__dot {
    animation: none !important;
  }
}

.sh-uep-field {
  margin-bottom: 0;
  max-width: none;
}

.sh-uep-field--notes {
  grid-column: auto;
}

.sh-uep-field label,
.sh-uep-fieldset legend {
  display: block;
  margin-bottom: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-h);
}

.sh-uep-optional {
  margin-inline-start: 6px;
  font-weight: 500;
  color: var(--text-m);
}

.sh-uep-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid rgba(27, 42, 74, .14);
  border-radius: 0;
  background: #fff;
  color: var(--text-h);
  font: inherit;
  font-size: .95rem;
}

.sh-uep-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193, 154, 54, .14);
}

.sh-uep-input--area {
  resize: vertical;
  min-height: 128px;
  max-width: none;
}

.sh-uep-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  min-width: 0;
}

.sh-uep-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sh-uep-choice__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid rgba(27, 42, 74, .12);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-h);
  transition: border-color .2s ease, background-color .2s ease;
}

.sh-uep-choice__option:hover {
  border-color: rgba(193, 154, 54, .4);
}

.sh-uep-choice__option:has(input:checked) {
  background: rgba(246, 241, 232, .9);
  border-color: var(--accent);
  color: var(--text-h);
}

.sh-uep-choice__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sh-uep-choice__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 42, 74, .22);
  background: var(--white);
  flex-shrink: 0;
}

.sh-uep-choice__option:has(input:checked) .sh-uep-choice__radio {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--white);
}

/* Wizard buttons — beat Hello Elementor [type=button] pink reset */
.sh-uep-shell button.sh-uep-btn,
.sh-uep-shell a.sh-uep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-b);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .26s ease, color .26s ease, box-shadow .26s ease, transform .26s ease, border-color .26s ease;
  white-space: nowrap;
  box-shadow: none;
  text-decoration: none;
}

.sh-uep-shell button.sh-uep-btn--primary,
.sh-uep-shell a.sh-uep-btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.sh-uep-shell button.sh-uep-btn--primary:hover,
.sh-uep-shell button.sh-uep-btn--primary:focus,
.sh-uep-shell button.sh-uep-btn--primary:focus-visible,
.sh-uep-shell a.sh-uep-btn--primary:hover,
.sh-uep-shell a.sh-uep-btn--primary:focus,
.sh-uep-shell a.sh-uep-btn--primary:focus-visible {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 42, 74, .18);
  outline: none;
}

.sh-uep-shell button.sh-uep-btn--ghost,
.sh-uep-shell a.sh-uep-btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.sh-uep-shell button.sh-uep-btn--ghost:hover,
.sh-uep-shell button.sh-uep-btn--ghost:focus,
.sh-uep-shell button.sh-uep-btn--ghost:focus-visible,
.sh-uep-shell a.sh-uep-btn--ghost:hover,
.sh-uep-shell a.sh-uep-btn--ghost:focus,
.sh-uep-shell a.sh-uep-btn--ghost:focus-visible {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 6px 20px rgba(27, 42, 74, .14);
}

.sh-uep-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sh-uep-actions--start {
  justify-content: flex-start;
}

.sh-uep-actions--split {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.sh-uep-actions--stack {
  display: grid;
  grid-template-columns: minmax(260px, 320px);
  justify-content: center;
  justify-items: stretch;
  width: 100%;
  margin-inline: auto;
}

.sh-uep-result .sh-uep-actions--stack .sh-uep-btn {
  width: 100%;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  justify-content: center;
}

.sh-uep-error {
  margin: 10px 0 0;
  font-size: .86rem;
  color: #8a2f3a;
}

.sh-uep-error[hidden] {
  display: none !important;
}

.sh-uep-result {
  text-align: center;
  padding-block: 12px;
}

.sh-uep-result__icon {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-dk);
}

.sh-uep-result .sh-uep-panel__hint {
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 28px;
}

/* Haus — quiet professional notice (not “coming soon”) */
.sh-uep-soon {
  max-width: 640px;
  padding-block: 8px 4px;
}

.sh-uep-soon__eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}

.sh-uep-soon .sh-uep-panel__title {
  margin-bottom: 16px;
}

.sh-uep-soon__text,
.sh-uep-soon__suggest {
  margin: 0 0 14px;
  font-family: var(--font-b);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-b);
  max-width: 52ch;
}

.sh-uep-soon__suggest {
  margin-bottom: 28px;
  color: var(--text-m);
}

.sh-uep-soon__actions {
  margin-top: 8px;
  max-width: 640px;
}

.sh-uep-shell a.sh-uep-btn {
  text-decoration: none;
}

[dir="rtl"] .sh-uep-btn svg {
  transform: scaleX(-1);
}

@media (max-width: 960px) {
  .sh-tools-tips__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .sh-tools-tips__item:not(:last-child)::after {
    display: none;
  }

  .sh-uep-shell {
    padding: 36px 28px;
  }

  .sh-uep-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-uep-rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-uep-step4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sh-uep-aside {
    padding: 24px 20px;
  }

  .sh-uep-aside__visual {
    width: 140px;
    height: 140px;
    margin-bottom: 16px;
  }

  .sh-uep-aside__house {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 860px) {
  .sh-tools-cards__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .sh-tools-journey__list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sh-tools-journey__item--arrow,
  .sh-tools-journey__item[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .sh-tools-tips__list {
    grid-template-columns: 1fr;
  }

  .sh-tools-card__body {
    padding: 8px 22px 4px;
  }

  .sh-tools-card__cta.sh-btn {
    margin: 18px 22px 24px;
    min-width: 0;
    width: calc(100% - 44px);
  }

  .sh-uep-shell {
    padding: 28px 22px;
  }

  .sh-uep-type {
    grid-template-columns: 1fr;
  }

  .sh-uep-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-uep-rooms {
    grid-template-columns: 1fr;
  }

  .sh-uep-choice {
    grid-template-columns: 1fr;
  }

  .sh-uep-actions--split {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .sh-uep-actions--split .sh-uep-shell button.sh-uep-btn,
  .sh-uep-shell .sh-uep-actions--split button.sh-uep-btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .sh-uep-features {
    grid-template-columns: 1fr;
  }

  .sh-uep-progress__steps {
    max-width: 100%;
  }
}
